Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 636 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 636 Bytes

Radio Transmitter

The radio transmitter devices supported by the project include KT0803.

Documentation

Usage

Hardware Required

  • KT0803
  • Male/Female Jumper Wires
I2cConnectionSettings settings = new I2cConnectionSettings(1, Kt0803.DefaultI2cAddress);
I2cDevice device = I2cDevice.Create(settings);

// The radio is running on FM 106.6MHz
using (Kt0803 radio = new Kt0803(device, 106.6, Region.China))
{
    // Connect Raspberry Pi or other sound sources to the 3.5mm earphone jack of the module
}