nanoFramework.Iot.Device.Aw88298 1.0.7

Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Aw88298 --version 1.0.7
                    
NuGet\Install-Package nanoFramework.Iot.Device.Aw88298 -Version 1.0.7
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Aw88298" Version="1.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.Iot.Device.Aw88298" Version="1.0.7" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.Iot.Device.Aw88298" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.Iot.Device.Aw88298 --version 1.0.7
                    
#r "nuget: nanoFramework.Iot.Device.Aw88298, 1.0.7"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package nanoFramework.Iot.Device.Aw88298@1.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=nanoFramework.Iot.Device.Aw88298&version=1.0.7
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.Iot.Device.Aw88298&version=1.0.7
                    
Install as a Cake Tool

AW88298 - I2S Class-D smart audio amplifier (speaker output)

The Awinic AW88298 is a 16-bit I2S Class-D smart audio amplifier with an integrated boost converter and DSP. It drives a speaker directly from an I2S PCM stream and is used, for example, on the M5Stack CoreS3 to drive the built-in 1W speaker.

This binding covers the I2C control plane only. It configures the amplifier (reset, power/enable, output volume, mute and boost). The PCM audio samples are streamed over I2S using System.Device.I2s and are not handled by this binding.

The register sequences are ported from the Espressif esp_codec_dev component and should be validated should be validated on hardware other than the CoreS3. The AW88298 uses 16-bit registers. The default I2C address is 0x36.

Documentation

Audio path on the M5Stack CoreS3

Signal Pin Purpose
I2C SCL GPIO11 Codec register control clock
I2C SDA GPIO12 Codec register control data
I2S MCLK GPIO0 Master clock
I2S BCLK GPIO34 Bit clock
I2S WS / LRCLK GPIO33 Word select / left-right clock
I2S DOUT GPIO13 Playback samples out of the ESP32 to the AW88298

On the CoreS3 the internal bus and the speaker power are gated by the on-board AXP2101 PMIC and AW9523 IO expander (pin 2). The sample powers these up over I2C before configuring the amplifier; for a fuller implementation use the Iot.Device.Axp2101 / Iot.Device.Aw9523x bindings or the M5Stack CoreS3 board package.

Usage

using Iot.Device.Aw88298;
using nanoFramework.Hardware.Esp32;
using System.Device.I2c;
using System.Device.I2s;

// Setup the M5Stack CoreS3 internal I2C bus (SDA = GPIO12, SCL = GPIO11).
Configuration.SetPinFunction(12, DeviceFunction.I2C1_DATA);
Configuration.SetPinFunction(11, DeviceFunction.I2C1_CLOCK);

I2cConnectionSettings settings = new I2cConnectionSettings(1, Aw88298.DefaultI2cAddress);
I2cDevice i2cDevice = new I2cDevice(settings);

Aw88298 amplifier = new Aw88298(i2cDevice);

// Setup the ESP32 I2S transmitter (MCLK = GPIO0, BCLK = GPIO34, WS = GPIO33, DOUT = GPIO13).
Configuration.SetPinFunction(34, DeviceFunction.I2S1_BCK);
Configuration.SetPinFunction(33, DeviceFunction.I2S1_WS);
Configuration.SetPinFunction(13, DeviceFunction.I2S1_DATA_OUT);
Configuration.SetPinFunction(0, DeviceFunction.I2S1_MCK);

I2sDevice i2s = new I2sDevice(new I2sConnectionSettings(1)
{
    Mode = I2sMode.Master | I2sMode.Tx,
    CommunicationFormat = I2sCommunicationFormat.I2S,
    ChannelFormat = I2sChannelFormat.RightLeft,
    BitsPerSample = I2sBitsPerSample.Bit16,
    SampleRate = 16_000,
    BufferSize = 40_000,
});

// Start the clocks, then configure the amplifier.
// Initialize takes the I2S sample rate so the amplifier's I2S control register matches the stream.
i2s.Write(new byte[512]);
amplifier.Initialize(16_000);
amplifier.Volume = 100;
amplifier.Muted = false;
amplifier.Start();

// Write interleaved stereo 16-bit PCM to i2s.Write(...) to play audio.
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.7 92 7/13/2026
1.0.1 103 7/8/2026