Skip to content

Bump xunit.runner.visualstudio from 2.5.3 to 2.5.5 in /src/devices/Mcp25xxx/tests #2235

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

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
2 changes: 1 addition & 1 deletion eng/Versions.external.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions src/devices/Display/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<img src="https://cdn-shop.adafruit.com/970x728/1268-00.jpg" width ="250px" title="Adafruit 1.2 inch 4-Digit 7-Segment Display w/I2C Backpack - Green" />
<img src="https://cdn-shop.adafruit.com/970x728/1268-00.jpg" width ="250px" title="Adafruit 1.2 inch 4-Digit 7-Segment Display w/I2C Backpack - Green" alt="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).

Expand Down Expand Up @@ -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

<img src="https://shop.pimoroni.com/cdn/shop/products/Four_letter_pHAT_5_of_5_1a005b45-151c-4938-8610-8ec758b4182d_1500x1500.JPG?v=1539263861" width ="250px" title="Pimoroni Four-Letter Phat" />
<img src="https://shop.pimoroni.com/cdn/shop/products/Four_letter_pHAT_5_of_5_1a005b45-151c-4938-8610-8ec758b4182d_1500x1500.JPG?v=1539263861" width ="250px" title="Pimoroni Four-Letter Phat" alt="A picture of a four-letter display" />

Checkout a [sample](samples/Large4Digit14SegmentDisplay/Program.cs).

Expand Down
6 changes: 3 additions & 3 deletions src/devices/Is31fl3730/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<img src="https://cdn.shopify.com/s/files/1/0174/1800/products/Microdot_pHAT_1_of_7_768x768.JPG" width="250px" title="Micro Dot pHat" />
<img src="https://cdn.shopify.com/s/files/1/0174/1800/products/Microdot_pHAT_1_of_7_768x768.JPG" width="250px" title="Micro Dot pHat" alt="A picture of a LED matrix" />

The following code demonstrates how to control the Micro Dot pHAT.

Expand Down Expand Up @@ -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.

<img src="https://cdn.shopify.com/s/files/1/0174/1800/products/Microdotbreakout_6of6_768x768.jpg?" width="250px" title="LED Dot Matrix Breakout" />
<img src="https://cdn.shopify.com/s/files/1/0174/1800/products/Microdotbreakout_6of6_768x768.jpg?" width="250px" title="LED Dot Matrix Breakout" alt="A picture of a LED Dot Matrix display" />

The following code demonstrates how to control the LED Dot Matrix Breakout.

Expand All @@ -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.

<img src="https://user-images.githubusercontent.com/2608468/208778976-7a18932e-a83f-4d6e-b655-3585903393d4.png" width="250px" title="Three LED Dot Matrix Breakouts" />
<img src="https://user-images.githubusercontent.com/2608468/208778976-7a18932e-a83f-4d6e-b655-3585903393d4.png" width="250px" title="Three LED Dot Matrix Breakouts" alt="A picture of several breakout boards with Dot Matrix displays" />

```csharp
using I2cDevice firstI2c = I2cDevice.Create(new I2cConnectionSettings(busId: 1, 0x61));
Expand Down