Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TM1650 LED controller support #1855

Merged
merged 10 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/Iot.Device.Bindings/CompatibilitySuppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,41 @@
<Right>lib/net6.0/Iot.Device.Bindings.dll</Right>
<IsBaselineSuppression>true</IsBaselineSuppression>
</Suppression>
<Suppression>
<DiagnosticId>CP0001</DiagnosticId>
<Target>T:Iot.Device.Tm1637.Character</Target>
<Left>lib/net6.0/Iot.Device.Bindings.dll</Left>
<Right>lib/net6.0/Iot.Device.Bindings.dll</Right>
<IsBaselineSuppression>true</IsBaselineSuppression>
</Suppression>
<Suppression>
<DiagnosticId>CP0001</DiagnosticId>
<Target>T:Iot.Device.Tm1637.Tm1637</Target>
<Left>lib/net6.0/Iot.Device.Bindings.dll</Left>
<Right>lib/net6.0/Iot.Device.Bindings.dll</Right>
<IsBaselineSuppression>true</IsBaselineSuppression>
</Suppression>
<Suppression>
<DiagnosticId>CP0001</DiagnosticId>
<Target>T:Iot.Device.Pn532.AsTarget.TargetBaudRateInialized</Target>
<Left>lib/netstandard2.0/Iot.Device.Bindings.dll</Left>
<Right>lib/netstandard2.0/Iot.Device.Bindings.dll</Right>
<IsBaselineSuppression>true</IsBaselineSuppression>
</Suppression>
<Suppression>
<DiagnosticId>CP0001</DiagnosticId>
<Target>T:Iot.Device.Tm1637.Character</Target>
<Left>lib/netstandard2.0/Iot.Device.Bindings.dll</Left>
<Right>lib/netstandard2.0/Iot.Device.Bindings.dll</Right>
<IsBaselineSuppression>true</IsBaselineSuppression>
</Suppression>
<Suppression>
<DiagnosticId>CP0001</DiagnosticId>
<Target>T:Iot.Device.Tm1637.Tm1637</Target>
<Left>lib/netstandard2.0/Iot.Device.Bindings.dll</Left>
<Right>lib/netstandard2.0/Iot.Device.Bindings.dll</Right>
<IsBaselineSuppression>true</IsBaselineSuppression>
</Suppression>
<Suppression>
<DiagnosticId>CP0002</DiagnosticId>
<Target>F:Iot.Device.Axp192.BatteryStatus.Overwinered</Target>
Expand Down
1 change: 0 additions & 1 deletion src/devices/Device-Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@
* [TCA954X - TCA954X Low-Voltage Multi-Channel I2C Switch with Reset](Tca954x/README.md)
* [TCS3472x Sensors](Tcs3472x/README.md)
* [TLC1543 - 10-bit ADC with 11 input channels](Tlc1543/README.md)
* [TM1637 - Segment Display](Tm1637/README.md)
* [TSL256x - Illuminance sensor](Tsl256x/README.md)
* [VL53L0X - distance sensor](Vl53L0X/README.md)
* [VL53L1X - distance sensor](Vl53L1X/README.md)
Expand Down
1 change: 1 addition & 0 deletions src/devices/Mhz19b/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ The MH-Z19B gas module provides a serial communication interface (UART) which ca
|GND |6 (GND) |7 (GND) |
|UART |8 (TXD0) |2 (RXD) |
|UART |10 (RXD0) |3 (TXD) |

Table: MH-Z19B to RPi 3 connection

The binding supports the connection through an UART interface (e.g. ```/dev/serial0```) or (serial port) stream.
Expand Down
1 change: 0 additions & 1 deletion src/devices/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ Our vision: the majority of .NET bindings are written completely in .NET languag
* [SkiaSharp graphics library adapter](SkiaSharpAdapter/README.md)
* [Solomon Systech Ssd1351 - CMOS OLED](Ssd1351/README.md)
* [Solomon Systech SSD13xx OLED display family](Ssd13xx/README.md)
* [TM1637 - Segment Display](Tm1637/README.md)
* [Ws28xx / SK6812 LED drivers](Ws28xx/README.md)

### GPIO Expanders
Expand Down
22 changes: 0 additions & 22 deletions src/devices/Tm1637/DataCommand.cs

This file was deleted.

18 changes: 0 additions & 18 deletions src/devices/Tm1637/DisplayCommand.cs

This file was deleted.

103 changes: 0 additions & 103 deletions src/devices/Tm1637/README.md

This file was deleted.

Loading
Loading