Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
Characteristic | Locus |
---|---|
Inheritance | object > Tea5767 |
Implements | II2cPeripheral |
Inherited Members | object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() |
Namespace | Meadow.Foundation.Audio.Radio |
Assembly | Tea5767.dll |
Syntax
public class Tea5767 : II2cPeripheral
Constructors
Tea5767(II2cBus, byte)
Create a new TEA5767 object using the default parameters
Declaration
public Tea5767(II2cBus i2cBus, byte address = 96)
Parameters
Type | Name | Description |
---|---|---|
II2cBus | i2cBus | I2Cbus connected to the radio |
byte | address | Address of the bus on the I2C display. |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
Fields
i2cComms
I2C Communication bus used to communicate with the peripheral
Declaration
protected readonly II2cCommunications i2cComms
Field Value
Type | Description |
---|---|
II2cCommunications |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
Properties
DefaultI2cAddress
The default I2C address for the peripheral
Declaration
public byte DefaultI2cAddress { get; }
Property Value
Type | Description |
---|---|
byte |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
IsMuted
Is the audio muted
Declaration
public bool IsMuted { get; set; }
Property Value
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
Methods
EnableStandby(bool)
Enable standby mode
Declaration
public void EnableStandby(bool enable)
Parameters
Type | Name | Description |
---|---|---|
bool | enable |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
EnableStereo(bool)
Enable stereo if set to mono
Declaration
public void EnableStereo(bool enable)
Parameters
Type | Name | Description |
---|---|---|
bool | enable |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
GetFrequency()
Get the current radio frequency
Declaration
public Frequency GetFrequency()
Returns
Type | Description |
---|---|
Frequency |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
GetSignalLevel()
Get Signal Level
Declaration
public byte GetSignalLevel()
Returns
Type | Description |
---|---|
byte | level as a byte (0-255) |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
IsReady()
Is the radio ready for operation
Declaration
public bool IsReady()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
IsSearchDown()
Is search mode down
Declaration
public bool IsSearchDown()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
IsSearchUp()
Is search mode up
Declaration
public bool IsSearchUp()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
IsStandby()
Is the radio in standby mode
Declaration
public bool IsStandby()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
IsStereo()
Is the current station stereo
Declaration
public bool IsStereo()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
Mute()
Mute audio if not muted
Declaration
public void Mute()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
MuteLeft()
Mute the left channel
Declaration
public void MuteLeft()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
MuteRight()
Mute the right channel
Declaration
public void MuteRight()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SearchFromBeginningMuted()
Start searching for station from lowest frequency (87Mhz)
Declaration
public bool SearchFromBeginningMuted()
Returns
Type | Description |
---|---|
bool | true if station found |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SearchFromEndMuted()
Start searching for station from highest frequency (108Mhz)
Declaration
public bool SearchFromEndMuted()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SearchNext()
Search to next station
Declaration
public bool SearchNext()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SearchNextSilent()
Search to next station and mute while seeking
Declaration
public bool SearchNextSilent()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SelectFrequency(Frequency)
Select radio frequency
Declaration
public void SelectFrequency(Frequency frequency)
Parameters
Type | Name | Description |
---|---|---|
Frequency | frequency | the frequency |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SetHighCutControlOff()
Disable high cut control
Declaration
public void SetHighCutControlOff()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SetHighCutControlOn()
Enable high cut control
Declaration
public void SetHighCutControlOn()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SetSoftMuteOff()
Turn soft mute off if enabled
Declaration
public void SetSoftMuteOff()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SetSoftMuteOn()
Enable soft mute
Declaration
public void SetSoftMuteOn()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SetStereoNoiseCancellingOff()
Disable stereo noise canceling
Declaration
public void SetStereoNoiseCancellingOff()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
SetStereoNoiseCancellingOn()
Enable stereo noise canceling
Declaration
public void SetStereoNoiseCancellingOn()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
StartSearchFromBeginning()
Start searching for station from lowest frequency (87Mhz)
Declaration
public bool StartSearchFromBeginning()
Returns
Type | Description |
---|---|
bool | true if station found |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
StartSearchFromEnd()
Start searching for station from highest frequency (108Mhz)
Declaration
public bool StartSearchFromEnd()
Returns
Type | Description |
---|---|
bool |
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
UnmuteLeft()
Unmute the left channel
Declaration
public void UnmuteLeft()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram:
UnmuteRight()
Unmute the right channel
Declaration
public void UnmuteRight()
Remarks
Tea5767 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The TEA5767 FM module is based on the TEA5767GH which is a single-chip, electronically tuned, FM stereo radio for low-voltage applications with fully integrated Intermediate Frequency (IF) selectivity and demodulation.
The TEA5767 is controlled via I2C. It comes with two 1/4" jacks, one for connection to a headphone/speaker and one to connect an antenna (often sold with the module).
Purchasing
You can get a TEA5767 module (with antenna included) from the following supplier(s):
Code Example
Tea5767 radio;
public override Task Initialize()
{
Resolver.Log.Info("Initializing...");
radio = new Tea5767(Device.CreateI2cBus());
return Task.CompletedTask;
}
public async override Task Run()
{
//scan through available stations
for (int i = 0; i < 8; i++)
{
await Task.Delay(1000);
radio.SearchNextSilent();
Resolver.Log.Info($"Current frequency: {radio.GetFrequency()}");
}
//set a known station
radio.SelectFrequency(new Frequency(94.5, Frequency.UnitType.Megahertz));
}
Sample project(s) available on GitHub
Wiring Example
To wire a TEA5767 to your Meadow board, connect the following:
TEA5767 | Meadow Pin |
---|---|
GND | GND |
SCL | D08 (SCL) |
SDA | D07 (SDA) |
VCC | 3V3 |
It should look like the following diagram: