nanoFramework.Iot.Device.Max7219 1.2.570

前缀已保留
dotnet add package nanoFramework.Iot.Device.Max7219 --version 1.2.570                
NuGet\Install-Package nanoFramework.Iot.Device.Max7219 -Version 1.2.570                
此命令旨在在 Visual Studio 的包管理器控制台中使用,因为它使用 NuGet 模块的 Install-Package 版本。
<PackageReference Include="nanoFramework.Iot.Device.Max7219" Version="1.2.570" />                
对于支持 PackageReference 的项目,请将此 XML 节点复制到项目文件中以引用包。
paket add nanoFramework.Iot.Device.Max7219 --version 1.2.570                
#r "nuget: nanoFramework.Iot.Device.Max7219, 1.2.570"                
#r 指令可用于 F# Interactive 和 Polyglot Notebooks。将此复制到交互工具或脚本的源代码中,以引用包。
// Install nanoFramework.Iot.Device.Max7219 as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.Max7219&version=1.2.570

// Install nanoFramework.Iot.Device.Max7219 as a Cake Tool
#tool nuget:?package=nanoFramework.Iot.Device.Max7219&version=1.2.570                

Max7219 (LED 矩阵驱动程序)

您可以在您的项目中使用 Max7219.cs 来驱动一个基于 Max7219 的点阵模块。写入一个 8x8 点阵模块演示了这个类的具体示例。

下面的 Fritzing 图表说明了一种连接 Max7219 的方法,使用了类似 ESP32 的 MCU。

ESP32 Breadboard diagram

用法

重要: 在创建 SpiDevice 之前,请确保您已正确设置 SPI 引脚,尤其是对于 ESP32,请确保您已安装 nanoFramework.Hardware.ESP32 nuget

//////////////////////////////////////////////////////////////////////
// when connecting to an ESP32 device, need to configure the SPI GPIOs
// used for the bus
Configuration.SetPinFunction(21, DeviceFunction.SPI1_MOSI);
Configuration.SetPinFunction(22, DeviceFunction.SPI1_MISO);
Configuration.SetPinFunction(23, DeviceFunction.SPI1_CLOCK);
// Make sure as well you are using the right chip select

对于 STM32 等其他设备,请确保您正在使用您想要使用的 SPI 总线预先设置的引脚。芯片选择也可以预先设置。

您可以使用 .NET Core 来驱动基于 MAX7219 的点阵模块。

这些模块可以级联以获得更大的矩阵。

通过 SPI 访问 MAX7219

MCU 支持 SPI。

// Note: the ChipSelect pin should be adjusted to your device, here 42
var connectionSettings = new SpiConnectionSettings(1, 42)
{
    ClockFrequency = 10_000_000,
    Mode = SpiMode.Mode0
};
var spi = SpiDevice.Create(connectionSettings);
var devices = new Max7219(spi, cascadedDevices: 4);

以下引脚布局

  • MAX7219 VCC 连接到 MCU 5V
  • MAX7219 GND 连接到 MCU GND
  • MAX7219 DIN 连接到 MCU MOSI
  • MAX7219 CS 连接到 MCU 芯片选择
  • MAX7219 CLK 连接到 MCU SPI 时钟

向矩阵写入

向设备缓冲区写入一个笑脸。

var smiley = new byte[] { 
    0b00111100, 
    0b01000010, 
    0b10100101, 
    0b10000001, 
    0b10100101, 
    0b10011001, 
    0b01000010, 
    0b00111100 
    };
devices.Init();
devices.Rotation = RotationType.Half;
for (var i = 0; i < devices.CascadedDevices; i++)
{
    for (var digit = 0; digit < 8; digit++)
    {
        devices[new DeviceIdDigit( deviceId: i, digit: digit )] = smiley[digit];
    }

    devices.Flush();
}

在每个迭代中使用不同的旋转将笑脸刷到设备上。

foreach (RotationType rotation in Enum.GetValues(typeof(RotationType)))
{
    devices.Rotation = rotation;
    devices.Flush();
    Thread.Sleep(1000);
}

在每个迭代中使用不同的字体将“Hello World from MAX7219!”写入矩阵。

devices.Init();
devices.Rotation = RotationType.Left;
var writer = new MatrixGraphics(devices, Fonts.CP437);
foreach (var font in new[]{Fonts.CP437, Fonts.LCD, Fonts.Sinclair, Fonts.Tiny, Fonts.CyrillicUkrainian}) {
    writer.Font = font;
    writer.ShowMessage("Hello World from MAX7219!", alwaysScroll: true);
}
产品 兼容的和额外的计算目标框架版本。
.NET 框架 net 兼容。
兼容的目标框架
包含的目标框架(在包中)
了解更多关于目标框架.NET 标准的信息。

NuGet 包

此包未被任何 NuGet 包使用。

GitHub 仓库

此包未被任何流行的 GitHub 仓库使用。

版本 下载 最后更新
1.2.570 76 6/14/2024
1.2.560 76 5/29/2024
1.2.548 85 5/15/2024
1.2.490 122 2/23/2024
1.2.436 248 11/10/2023
1.2.329 166 5/26/2023
1.2.313 134 5/12/2023
1.2.297 139 5/3/2023
1.2.208 323 1/3/2023
1.2.203 297 12/28/2022
1.2.153 348 11/5/2022
1.2.141 352 10/25/2022
1.2.128 357 10/22/2022
1.2.122 411 10/12/2022
1.2.114 374 10/8/2022
1.2.95 420 9/22/2022
1.2.87 466 9/15/2022
1.2.73 404 9/8/2022
1.2.7 430 7/15/2022
1.2.5 429 7/13/2022
1.1.141.41205 419 7/6/2022
1.1.113.2032 430 6/23/2022
1.1.58.10097 412 5/23/2022
1.1.27 435 4/26/2022
1.1.20 419 4/21/2022
1.1.1 428 4/14/2022
1.0.300 425 3/31/2022
1.0.277-preview.125 113 3/25/2022
1.0.277-preview.115 99 3/21/2022
1.0.277-preview.111 105 3/18/2022
1.0.277-preview.110 105 3/18/2022
1.0.277-preview.106 119 3/15/2022
1.0.277-preview.105 107 3/15/2022
1.0.277-preview.98 115 3/8/2022
1.0.277-preview.89 111 2/27/2022
1.0.277-preview.87 103 2/26/2022
1.0.277-preview.85 116 2/25/2022
1.0.277-preview.77 108 2/18/2022
1.0.277-preview.75 106 2/16/2022
1.0.277-preview.73 113 2/12/2022
1.0.277-preview.70 117 2/10/2022
1.0.277-preview.65 114 2/9/2022
1.0.277-preview.60 124 2/4/2022
1.0.277-preview.53 122 1/31/2022
1.0.277-preview.41 121 1/28/2022
1.0.277-preview.32 128 1/27/2022
1.0.277-preview.30 126 1/27/2022
1.0.277-preview.17 126 1/24/2022
1.0.277-preview.13 121 1/21/2022
1.0.277-preview.1 126 1/11/2022
1.0.272 443 1/10/2022
1.0.259 286 12/9/2021
1.0.258 289 12/7/2021
1.0.236 199 11/3/2021
1.0.221 152 10/19/2021
1.0.219 159 10/19/2021
1.0.218 187 10/18/2021
1.0.157 161 9/4/2021
1.0.155 154 8/31/2021
1.0.153 162 8/14/2021
1.0.151 179 8/6/2021
1.0.148 163 7/22/2021
1.0.104 247 5/29/2021
1.0.97 174 5/28/2021
1.0.63 168 5/26/2021
1.0.44 198 5/24/2021