From c4befb89112483749e6704c40a1eaf8346de00a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 03:42:34 +0000 Subject: [PATCH 1/2] Bump xunit.runner.visualstudio in /src/devices/Mcp25xxx/tests Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.3 to 2.5.5. - [Release notes](https://github.com/xunit/visualstudio.xunit/releases) - [Commits](https://github.com/xunit/visualstudio.xunit/compare/2.5.3...2.5.5) --- updated-dependencies: - dependency-name: xunit.runner.visualstudio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- eng/Versions.external.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.external.props b/eng/Versions.external.props index 2792c2fd38..827e011060 100644 --- a/eng/Versions.external.props +++ b/eng/Versions.external.props @@ -8,7 +8,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 7d9d530ad5bb8db1b7f8f83cd0761adaa9215b7d Mon Sep 17 00:00:00 2001 From: Patrick Grawehr Date: Thu, 14 Dec 2023 13:13:42 +0100 Subject: [PATCH 2/2] Attempt to fix markdown errors --- src/devices/Display/README.md | 4 ++-- src/devices/Is31fl3730/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/devices/Display/README.md b/src/devices/Display/README.md index 38848c0ba4..ef399da8cd 100644 --- a/src/devices/Display/README.md +++ b/src/devices/Display/README.md @@ -8,7 +8,7 @@ This binding and samples are based on [adafruit/Adafruit_CircuitPython_HT16K33]( These [bright crisp displays](https://www.adafruit.com/product/1270) are good for showing numeric output. Besides the four 7-segments there is a top right dot (perhaps useful as a degrees symbol) and two sets of colon-dots (good for time-based projects). They come in several colors. - +A picture of a breakout board with a 7-Segment Display You can write the following code to control them or checkout a [larger sample](samples/Large4Digit7SegmentDisplay/Program.cs). @@ -40,7 +40,7 @@ display.Flush(); This [display](https://shop.pimoroni.com/products/four-letter-phat?variant=39256047178) is good for showing alpha-numeric output, and its additional segments provide a wider range of characters - +A picture of a four-letter display Checkout a [sample](samples/Large4Digit14SegmentDisplay/Program.cs). diff --git a/src/devices/Is31fl3730/README.md b/src/devices/Is31fl3730/README.md index 5ed7fb0f98..893fc61926 100644 --- a/src/devices/Is31fl3730/README.md +++ b/src/devices/Is31fl3730/README.md @@ -10,7 +10,7 @@ It is demonstrated in [samples/Program.cs](samples/Program.cs). The [Micro Dot pHat](https://shop.pimoroni.com/products/microdot-phat) is an unashamedly old school LED matrix display board, made up of six LED matrices each 5x7 pixels (for an effective display area of 30x7) plus a decimal point, using the beautiful little Lite-On LTP-305 matrices. - +A picture of a LED matrix The following code demonstrates how to control the Micro Dot pHAT. @@ -38,7 +38,7 @@ matrix.Fill(0); The [LED Dot Matrix Breakout](https://shop.pimoroni.com/products/led-dot-matrix-breakout) is perfect for readouts that involve two numbers or letters - like countdown timers, percentage readouts, or country codes. - +A picture of a LED Dot Matrix display The following code demonstrates how to control the LED Dot Matrix Breakout. @@ -62,7 +62,7 @@ matrix.Fill(0); The [LED Dot Matrix Breakout](https://shop.pimoroni.com/products/led-dot-matrix-breakout) includes two matrices and supports using up to three of the breakouts together giving you six matrices to drive. It's straightforward to tie them all together into a single logical matrix. You can do with that with the [`DotMatrix`](DotMatrix.cs) class, as demonstrated in the following sample. Alternatively, you can use [`MicroDotPhat30x7`](MicroDotPhat30x7.cs) class if you have three breakouts and follow the same ordering of I2C addresses. - +A picture of several breakout boards with Dot Matrix displays ```csharp using I2cDevice firstI2c = I2cDevice.Create(new I2cConnectionSettings(busId: 1, 0x61));