Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Characteristic | Locus |
---|---|
Inheritance | object > Max7219 |
Implements | ISpiPeripheral IDisposable IGraphicsDisplay IPixelBuffer |
Inherited Members | object.Equals(object) object.Equals(object, object) object.GetHashCode() object.GetType() object.MemberwiseClone() object.ReferenceEquals(object, object) object.ToString() |
Namespace | Meadow.Foundation.Displays |
Assembly | Max7219.dll |
Syntax
public class Max7219 : ISpiPeripheral, IDisposable, IGraphicsDisplay, IPixelBuffer
Constructors
Max7219(ISpiBus, IDigitalOutputPort, int, Max7219Mode)
Create a new Max7219 object
Declaration
public Max7219(ISpiBus spiBus, IDigitalOutputPort chipSelectPort, int deviceCount = 1, Max7219.Max7219Mode maxMode = Max7219Mode.Display)
Parameters
Type | Name | Description |
---|---|---|
ISpiBus | spiBus | SPI bus |
IDigitalOutputPort | chipSelectPort | Chip select port |
int | deviceCount | Number of cascaded devices |
Max7219.Max7219Mode | maxMode | Display mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Max7219(ISpiBus, IDigitalOutputPort, int, int, Max7219Mode)
Create a new Max7219 object
Declaration
public Max7219(ISpiBus spiBus, IDigitalOutputPort chipSelectPort, int deviceRows, int deviceColumns, Max7219.Max7219Mode maxMode = Max7219Mode.Display)
Parameters
Type | Name | Description |
---|---|---|
ISpiBus | spiBus | SPI bus |
IDigitalOutputPort | chipSelectPort | Chip select port |
int | deviceRows | Number of devices cascaded vertically |
int | deviceColumns | Number of devices cascaded horizontally |
Max7219.Max7219Mode | maxMode | Display mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Max7219(ISpiBus, IPin, int, Max7219Mode)
Create a new Max7219 object
Declaration
public Max7219(ISpiBus spiBus, IPin chipSelectPin, int deviceCount = 1, Max7219.Max7219Mode maxMode = Max7219Mode.Display)
Parameters
Type | Name | Description |
---|---|---|
ISpiBus | spiBus | SPI bus |
IPin | chipSelectPin | Chip select pin |
int | deviceCount | Number of cascaded devices |
Max7219.Max7219Mode | maxMode | Display mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Max7219(ISpiBus, IPin, int, int, Max7219Mode)
Create a new Max7219 object
Declaration
public Max7219(ISpiBus spiBus, IPin chipSelectPin, int deviceRows = 1, int deviceColumns = 1, Max7219.Max7219Mode maxMode = Max7219Mode.Display)
Parameters
Type | Name | Description |
---|---|---|
ISpiBus | spiBus | SPI bus |
IPin | chipSelectPin | Chip select pin |
int | deviceRows | Number of devices cascaded vertically |
int | deviceColumns | Number of devices cascaded horizontally |
Max7219.Max7219Mode | maxMode | Display mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Fields
DigitsPerDevice
Number of digits per Module
Declaration
public const int DigitsPerDevice = 8
Field Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
spiComms
SPI Communication bus used to communicate with the peripheral
Declaration
protected ISpiCommunications spiComms
Field Value
Type | Description |
---|---|
ISpiCommunications |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Properties
BitDepth
The bit depth of the display
Declaration
public int BitDepth { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Buffer
The backing buffer for the pixel buffer (not implemented)
Declaration
public byte[] Buffer { get; }
Property Value
Type | Description |
---|---|
byte[] |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
ByteCount
The total bytes used for the display buffer
Declaration
public int ByteCount { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
ColorMode
Color mode of display - 1bpp
Declaration
public ColorMode ColorMode { get; }
Property Value
Type | Description |
---|---|
ColorMode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DefaultSpiBusMode
The default SPI bus mode for the device
Declaration
public SpiClockConfiguration.Mode DefaultSpiBusMode { get; }
Property Value
Type | Description |
---|---|
SpiClockConfiguration.Mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DefaultSpiBusSpeed
The default SPI bus speed for the device
Declaration
public Frequency DefaultSpiBusSpeed { get; }
Property Value
Type | Description |
---|---|
Frequency |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DeviceCount
Number of cascaded devices
Declaration
public int DeviceCount { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DigitColumns
Number of columns when representing digits
Declaration
public int DigitColumns { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DigitRows
Number of rows when representing digits
Declaration
public int DigitRows { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Height
Height of array of displays in pixels
Declaration
public int Height { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
IsDisposed
Is the object disposed
Declaration
public bool IsDisposed { get; }
Property Value
Type | Description |
---|---|
bool |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Length
Gets the total number of digits (cascaded devices * num digits)
Declaration
public int Length { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
PixelBuffer
The offscreen buffer used for the display
Declaration
public IPixelBuffer PixelBuffer { get; }
Property Value
Type | Description |
---|---|
IPixelBuffer |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SpiBusMode
The SPI bus mode for the device
Declaration
public SpiClockConfiguration.Mode SpiBusMode { get; set; }
Property Value
Type | Description |
---|---|
SpiClockConfiguration.Mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SpiBusSpeed
The SPI bus speed for the device
Declaration
public Frequency SpiBusSpeed { get; set; }
Property Value
Type | Description |
---|---|
Frequency |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SupportedColorModes
The Color mode supported by the display
Declaration
public ColorMode SupportedColorModes { get; }
Property Value
Type | Description |
---|---|
ColorMode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Width
Width of array of displays in pixels
Declaration
public int Width { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Methods
Clear()
Clear the display buffer
Declaration
public void Clear()
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Clear(bool)
Clears the buffer from the given start to end and flushes
Declaration
public void Clear(bool updateDisplay = false)
Parameters
Type | Name | Description |
---|---|---|
bool | updateDisplay |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Clear(int, int)
Clears the buffer from the given start to end (exclusive) and flushes
Declaration
public void Clear(int start, int end)
Parameters
Type | Name | Description |
---|---|---|
int | start | |
int | end |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Dispose(bool)
Dispose of the object
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | Is disposing |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DrawPixel(int, int, Color)
Draw pixel at location
Declaration
public void DrawPixel(int x, int y, Color color)
Parameters
Type | Name | Description |
---|---|---|
int | x | x position |
int | y | y position |
Color | color | color of pixel - converted to on/off |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
DrawPixel(int, int, bool)
Draw pixel at location
Declaration
public void DrawPixel(int x, int y, bool enabled)
Parameters
Type | Name | Description |
---|---|---|
int | x | x position in pixels |
int | y | y position in pixels |
bool | enabled | True = turn on pixel, false = turn off pixel |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Fill(Color)
Fill the display with a normalized color to on/off
Declaration
public void Fill(Color color)
Parameters
Type | Name | Description |
---|---|---|
Color | color | The color to fill |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Fill(Color, bool)
Fill with color
Declaration
public void Fill(Color fillColor, bool updateDisplay = false)
Parameters
Type | Name | Description |
---|---|---|
Color | fillColor | color - converted to on/off |
bool | updateDisplay | should refresh display |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Fill(int, int, int, int, Color)
Fill region with color
Declaration
public void Fill(int x, int y, int width, int height, Color fillColor)
Parameters
Type | Name | Description |
---|---|---|
int | x | x position |
int | y | y position |
int | width | width of region |
int | height | height of region |
Color | fillColor | color - converted to on/off |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
GetCharacter(int, int)
Get the stored character
Declaration
public Max7219.CharacterType GetCharacter(int digit, int deviceId = 0)
Parameters
Type | Name | Description |
---|---|---|
int | digit | the digit index of the character |
int | deviceId | the cascaded device id |
Returns
Type | Description |
---|---|
Max7219.CharacterType |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
GetDigit(int, int)
Get the number at a specific position
Declaration
public int GetDigit(int digit, int deviceId = 0)
Parameters
Type | Name | Description |
---|---|---|
int | digit | the digit index |
int | deviceId | the cascaded device id |
Returns
Type | Description |
---|---|
int |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
GetPixel(int, int)
Get the Color of the pixel at a location (not implemented)
Declaration
public Color GetPixel(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
int | x | The x position in pixels |
int | y | The y position in pixels |
Returns
Type | Description |
---|---|
Color | The pixel color |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Exceptions
Type | Condition |
---|---|
NotImplementedException |
InvertPixel(int, int)
Invert pixel at location (toggle on/off)
Declaration
public void InvertPixel(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
int | x | x position in pixels |
int | y | y position in pixels |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SetBrightness(int)
Sets the brightness of all cascaded devices to the same intensity level.
Declaration
public void SetBrightness(int intensity)
Parameters
Type | Name | Description |
---|---|---|
int | intensity | intensity level ranging from 0..15. |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SetBrightness(int, int)
Sets the brightness for a specific device
Declaration
public void SetBrightness(int intensity, int deviceId)
Parameters
Type | Name | Description |
---|---|---|
int | intensity | intensity level ranging from 0..15. |
int | deviceId | index of cascaded device. |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SetCharacter(CharacterType, int, bool, int)
Set a single character
Declaration
public void SetCharacter(Max7219.CharacterType character, int digit, bool showDecimal = false, int deviceId = 0)
Parameters
Type | Name | Description |
---|---|---|
Max7219.CharacterType | character | the character to display |
int | digit | the digit index starting from the left |
bool | showDecimal | show the decimal with the character |
int | deviceId | the cascaded device id |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SetDigit(byte, int, int)
Set a number at a specific position
Declaration
public void SetDigit(byte value, int digit, int deviceId = 0)
Parameters
Type | Name | Description |
---|---|---|
byte | value | the value to display |
int | digit | the digit index |
int | deviceId | the cascaded device id |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SetMode(Max7219Mode)
Set the display mode of the Max7219
Declaration
public void SetMode(Max7219.Max7219Mode maxMode)
Parameters
Type | Name | Description |
---|---|---|
Max7219.Max7219Mode | maxMode | the mode |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
SetNumber(int, int)
Set number to display (left aligned)
Declaration
public void SetNumber(int value, int deviceId = 0)
Parameters
Type | Name | Description |
---|---|---|
int | value | the number to display |
int | deviceId | the cascaded device id |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Exceptions
Type | Condition |
---|---|
ArgumentOutOfRangeException |
SetPixel(int, int, Color)
Set a pixel at a specific location
Declaration
public void SetPixel(int x, int y, Color color)
Parameters
Type | Name | Description |
---|---|---|
int | x | The x position in pixels |
int | y | The y position in pixels |
Color | color | The pixel color normalized to on/off |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Show()
Writes all the Values to the devices.
Declaration
public void Show()
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
Show(int, int, int, int)
Partial screen update
Declaration
public void Show(int left, int top, int right, int bottom)
Parameters
Type | Name | Description |
---|---|---|
int | left | |
int | top | |
int | right | |
int | bottom |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
TestDisplay(TimeSpan)
Helper test method - will turn all leds on then off
Declaration
public void TestDisplay(TimeSpan time)
Parameters
Type | Name | Description |
---|---|---|
TimeSpan | time | time to show leds |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
WriteBuffer(byte[,])
Writes a two dimensional buffer containing all the values to the devices.
Declaration
public void WriteBuffer(byte[,] buffer)
Parameters
Type | Name | Description |
---|---|---|
byte[,] | buffer |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following:
WriteBuffer(int, int, IPixelBuffer)
Draw buffer at location
Declaration
public void WriteBuffer(int x, int y, IPixelBuffer displayBuffer)
Parameters
Type | Name | Description |
---|---|---|
int | x | x position in pixels |
int | y | y position in pixels |
IPixelBuffer | displayBuffer | buffer to draw |
Remarks
Max7219 | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
The MAX7219 is an LED display driver capable of driving 64 outputs. As well, the MAX7219 contains an 2-wire data bus allowing multiple MAX7219 chip to be connected together and controlled by a single I2C interface.
Although the MAX7219 can be used as a general purpose IO expander, it almost exclusively used to drive either 2-dimensional LED arrays (commonly 8x8) or an array of multi-segment displays (commonly 8 7-segment displays). The MAX7219 contains specific logic to display pre-configured characters when driving 7 segment displays, specifically: 0-9, E, H, L, P and -.
As it's most commonly used to as a display controller, you'll find it in the Meadow.Foundation.Displays namespace.
Code Example
Max7219 display;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
display = new Max7219(Device.CreateSpiBus(), Device.Pins.D01, 1, Max7219.Max7219Mode.Character);
return base.Initialize();
}
void TestCharacterMode()
{
display.SetMode(Max7219.Max7219Mode.Character);
//show every supported character
for (int i = 0; i < (int)Max7219.CharacterType.Count; i++)
{
for (int digit = 0; digit < 8; digit++)
{
display.SetCharacter((Max7219.CharacterType)i, digit, i % 2 == 0);
}
display.Show();
}
}
void TestDigitalMode()
{
Resolver.Log.Info("Digital test");
display.SetMode(Max7219.Max7219Mode.Digital);
//control individual LEDs - for 8x8 matrix configurations - use the Meadow graphics library
for (byte i = 0; i < 64; i++)
{
for (int d = 0; d < 8; d++)
{
display.SetDigit(i, d);
}
display.Show();
}
}
public override Task Run()
{
while (true)
{
TestDigitalMode();
TestCharacterMode();
}
}
Sample project(s) available on GitHub
Wiring Example
To wire a Max7219 to your Meadow board, connect the following: