Skip to content

Commit 90d3e4f

Browse files
Fix samples that rely on deprecated namespaces (#209)
1 parent f18145e commit 90d3e4f

File tree

104 files changed

+276
-461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+276
-461
lines changed

samples/ADC/ADC.nfproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
<HintPath>packages\nanoFramework.CoreLibrary.1.12.0\lib\mscorlib.dll</HintPath>
3030
<Private>True</Private>
3131
</Reference>
32-
<Reference Include="Windows.Devices.Adc, Version=1.5.3.2, Culture=neutral, PublicKeyToken=c07d481e9758c731">
33-
<HintPath>packages\nanoFramework.Windows.Devices.Adc.1.5.3\lib\Windows.Devices.Adc.dll</HintPath>
32+
<Reference Include="System.Device.Adc, Version=1.0.2.4, Culture=neutral, PublicKeyToken=c07d481e9758c731">
33+
<HintPath>packages\nanoFramework.System.Device.Adc.1.0.2\lib\System.Device.Adc.dll</HintPath>
3434
<Private>True</Private>
3535
</Reference>
3636
</ItemGroup>

samples/ADC/Program.cs

+2-5
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,16 @@
66
using System;
77
using System.Diagnostics;
88
using System.Threading;
9-
using Windows.Devices.Adc;
9+
using System.Device.Adc;
1010

1111
namespace TestAdc
1212
{
1313
public class Program
1414
{
1515
public static void Main()
1616
{
17-
string devs = AdcController.GetDeviceSelector();
1817

19-
Debug.WriteLine("devs=" + devs);
20-
21-
AdcController adc1 = AdcController.GetDefault();
18+
AdcController adc1 = new AdcController();
2219

2320
int max1 = adc1.MaxValue;
2421
int min1 = adc1.MinValue;

samples/ADC/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="nanoFramework.CoreLibrary" version="1.12.0" targetFramework="netnanoframework10" />
4-
<package id="nanoFramework.Windows.Devices.Adc" version="1.5.3" targetFramework="netnanoframework10" />
4+
<package id="nanoFramework.System.Device.Adc" version="1.0.2" targetFramework="netnanoframework10" />
55
</packages>

samples/Blinky/Blinky.sln

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30503.244
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.1.32414.318
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "Blinky", "Blinky\Blinky.nfproj", "{29BACBB9-C5B6-4BEF-AEEF-9AFE39B678D9}"
76
EndProject

samples/CAN/Can.TestApp/Can.TestApp.nfproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
<HintPath>..\packages\nanoFramework.Runtime.Events.1.10.0\lib\nanoFramework.Runtime.Events.dll</HintPath>
3838
<Private>True</Private>
3939
</Reference>
40-
<Reference Include="Windows.Devices.Gpio, Version=1.5.5.4, Culture=neutral, PublicKeyToken=c07d481e9758c731">
41-
<HintPath>..\packages\nanoFramework.Windows.Devices.Gpio.1.5.5\lib\Windows.Devices.Gpio.dll</HintPath>
40+
<Reference Include="System.Device.Gpio">
41+
<HintPath>..\packages\nanoFramework.System.Device.Gpio.1.0.1\lib\System.Device.Gpio.dll</HintPath>
4242
<Private>True</Private>
4343
</Reference>
4444
</ItemGroup>

samples/CAN/Can.TestApp/Program.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System;
33
using System.Diagnostics;
44
using System.Threading;
5-
using Windows.Devices.Gpio;
5+
using System.Device.Gpio;
66

77
namespace Can.TestApp
88
{
@@ -15,12 +15,11 @@ public class Program
1515
public static void Main()
1616
{
1717
// PJ5 is LD2 in STM32F769I_DISCO
18-
//_led = GpioController.GetDefault().OpenPin(PinNumber('J', 5));
18+
//_led = new GpioController().OpenPin(PinNumber('J', 5), PinMode.Output);
1919
// PG14 is LEDLD4 in F429I_DISCO
20-
//_led = GpioController.GetDefault().OpenPin(PinNumber('G', 14));
20+
//_led = new GpioController().OpenPin(PinNumber('G', 14), PinMode.Output);
2121
// PD13 is LED3 in DISCOVERY4
22-
_led = GpioController.GetDefault().OpenPin(PinNumber('D', 13));
23-
_led.SetDriveMode(GpioPinDriveMode.Output);
22+
_led = new GpioController().OpenPin(PinNumber('D', 13), PinMode.Output);
2423

2524
// set settings for CAN controller
2625
CanSettings canSettings = new CanSettings(6, 8, 1, 0);
@@ -74,7 +73,7 @@ private static void CanController_DataReceived(object sender, CanMessageReceived
7473
static void BlinkLED()
7574
{
7675
// blink led for each message received
77-
_led.Write(GpioPinValue.High);
76+
_led.Write(PinValue.High);
7877
Thread.Sleep(500);
7978
_led.Toggle();
8079
}

samples/CAN/Can.TestApp/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<package id="nanoFramework.CoreLibrary" version="1.12.0" targetFramework="netnanoframework10" />
44
<package id="nanoFramework.Devices.Can" version="1.2.4" targetFramework="netnanoframework10" />
55
<package id="nanoFramework.Runtime.Events" version="1.10.0" targetFramework="netnanoframework10" />
6-
<package id="nanoFramework.Windows.Devices.Gpio" version="1.5.5" targetFramework="netnanoframework10" />
6+
<package id="nanoFramework.System.Device.Gpio" version="1.0.1" targetFramework="netnanoframework10" />
77
</packages>

samples/Collections/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This sample is coded to use the STM32F769IDiscovery target board, but can be eas
1111

1212
### Reference
1313

14-
- [Windows.Devices.SerialCommunication](http://docs.nanoframework.net/api/nanoFramework.System.Collection.Hashtable.html)
14+
- [System.Collections.Hastable](http://docs.nanoframework.net/api/nanoFramework.System.Collection.Hashtable.html).
1515

1616
## Build the sample
1717

samples/DebugGC.Test/DebugGC.Test.sln

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27004.2010
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.1.32414.318
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "DebugGC.Test", "DebugGC.Test.nfproj", "{AAC17F43-C085-4A4F-B546-14F777549E1B}"
76
EndProject

samples/GCStressTest/GCStressTest.nfproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
<HintPath>packages\nanoFramework.System.Text.1.1.3\lib\nanoFramework.System.Text.dll</HintPath>
3838
<Private>True</Private>
3939
</Reference>
40-
<Reference Include="Windows.Devices.Gpio, Version=1.5.5.4, Culture=neutral, PublicKeyToken=c07d481e9758c731">
41-
<HintPath>packages\nanoFramework.Windows.Devices.Gpio.1.5.5\lib\Windows.Devices.Gpio.dll</HintPath>
40+
<Reference Include="System.Device.Gpio, Version=1.0.4.3, Culture=neutral, PublicKeyToken=c07d481e9758c731">
41+
<HintPath>packages\nanoFramework.System.Device.Gpio.1.0.4\lib\System.Device.Gpio.dll</HintPath>
4242
<Private>True</Private>
4343
</Reference>
4444
</ItemGroup>

samples/GCStressTest/GCStressTest.sln

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27703.2000
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.1.32414.318
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "GCStressTest", "GCStressTest.nfproj", "{1072F384-864D-4E51-B478-153E1E3E9CAE}"
76
EndProject

samples/GCStressTest/Program.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System;
77
using System.Diagnostics;
88
using System.Threading;
9-
using Windows.Devices.Gpio;
9+
using System.Device.Gpio;
1010

1111
namespace GCStressTest
1212
{
@@ -53,8 +53,7 @@ public static void Main()
5353
int period4 = _randomizer.Next(1000 * 3);
5454
int period5 = _randomizer.Next(1000 * 3);
5555

56-
_led = GpioController.GetDefault().OpenPin(PinNumber('G', 14));
57-
_led.SetDriveMode(GpioPinDriveMode.Output);
56+
_led = new GpioController().OpenPin(PinNumber('G', 14), PinMode.Output);
5857

5958
// quick timers
6059

samples/GCStressTest/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<package id="nanoFramework.CoreLibrary" version="1.12.0" targetFramework="netnanoframework10" />
44
<package id="nanoFramework.Runtime.Events" version="1.10.0" targetFramework="netnanoframework10" />
55
<package id="nanoFramework.System.Text" version="1.1.3" targetFramework="netnanoframework10" />
6-
<package id="nanoFramework.Windows.Devices.Gpio" version="1.5.5" targetFramework="netnanoframework10" />
6+
<package id="nanoFramework.System.Device.Gpio" version="1.0.4" targetFramework="netnanoframework10" />
77
</packages>

samples/Gpio/Gpio+Events/Gpio+Events.nfproj

+6-11
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,15 @@
2222
<Compile Include="Properties\AssemblyInfo.cs" />
2323
</ItemGroup>
2424
<ItemGroup>
25-
<Reference Include="mscorlib, Version=1.9.0.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
26-
<HintPath>packages\nanoFramework.CoreLibrary.1.9.0-preview.5\lib\mscorlib.dll</HintPath>
27-
<Private>True</Private>
28-
<SpecificVersion>True</SpecificVersion>
25+
<Reference Include="mscorlib">
26+
<HintPath>packages\nanoFramework.CoreLibrary.1.12.0\lib\mscorlib.dll</HintPath>
2927
</Reference>
30-
<Reference Include="nanoFramework.Runtime.Events, Version=1.8.2.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
31-
<HintPath>packages\nanoFramework.Runtime.Events.1.8.2-preview.5\lib\nanoFramework.Runtime.Events.dll</HintPath>
32-
<Private>True</Private>
33-
<SpecificVersion>True</SpecificVersion>
28+
<Reference Include="nanoFramework.Runtime.Events">
29+
<HintPath>packages\nanoFramework.Runtime.Events.1.10.0\lib\nanoFramework.Runtime.Events.dll</HintPath>
3430
</Reference>
35-
<Reference Include="System.Device.Gpio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
36-
<HintPath>packages\nanoFramework.System.Device.Gpio.1.0.0-preview.6\lib\System.Device.Gpio.dll</HintPath>
31+
<Reference Include="System.Device.Gpio, Version=1.0.4.3, Culture=neutral, PublicKeyToken=c07d481e9758c731">
32+
<HintPath>packages\nanoFramework.System.Device.Gpio.1.0.4\lib\System.Device.Gpio.dll</HintPath>
3733
<Private>True</Private>
38-
<SpecificVersion>True</SpecificVersion>
3934
</Reference>
4035
</ItemGroup>
4136
<ItemGroup>

samples/Gpio/Gpio+Events/Gpio+Events.sln

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2020
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.1.32414.318
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "Gpio+Events", "Gpio+Events.nfproj", "{DC6154FA-5E71-4B7D-ACB8-F5B657287FC0}"
76
EndProject

samples/Gpio/Gpio+Events/Program.cs

+11-19
Original file line numberDiff line numberDiff line change
@@ -27,41 +27,35 @@ public static void Main()
2727

2828
// F4-Discovery -> LD4 LED is @ PD12
2929
// F429I-Discovery -> LD3 is @ PG13
30-
//_greenLED = gpioController.OpenPin(PinNumber('G', 13));
30+
//_greenLED = gpioController.OpenPin(PinNumber('G', 13), PinMode.Output));
3131
// F769I-DISCO -> LED2_GREEN is @ PJ5
32-
//_greenLED = gpioController.OpenPin(PinNumber('J', 5));
32+
//_greenLED = gpioController.OpenPin(PinNumber('J', 5), PinMode.Output));
3333
// F746ZG-NUCLEO -> Off board LED is @ PC10
3434
// TI CC13x2 Launchpad: DIO_07 it's the green LED
35-
_greenLED = gpioController.OpenPin(7);
36-
37-
_greenLED.SetDriveMode(PinMode.Output);
35+
_greenLED = gpioController.OpenPin(7, PinMode.Output);
3836

3937
///////////////////
4038
// setup red LED //
4139
///////////////////
42-
40+
4341
// F4-Discovery -> LD5 is @ PD14
4442
// F429I-Discovery -> LD4 is @ PG14
45-
//_redLED = gpioController.OpenPin(PinNumber('G', 14));
43+
//_redLED = gpioController.OpenPin(PinNumber('G', 14), PinMode.Output));
4644
// F769I-DISCO -> LED2_RED is @ PJ13
47-
//_redLED = gpioController.OpenPin(PinNumber('J', 13));
45+
//_redLED = gpioController.OpenPin(PinNumber('J', 13), PinMode.Output));
4846
// TI CC13x2 Launchpad: DIO_06 it's the red LED
49-
_redLED = gpioController.OpenPin(6);
50-
51-
_redLED.SetDriveMode(PinMode.Output);
47+
_redLED = gpioController.OpenPin(6, PinMode.Output);
5248

5349
///////////////////////
5450
// setup user button //
5551
///////////////////////
5652

5753
// F4-Discovery -> USER_BUTTON is @ PA0 (input only)
5854
// F769I-DISCO -> USER_BUTTON is @ PA0 (input only)
59-
//_userButton = gpioController.OpenPin(PinNumber('A', 0));
60-
//_userButton.SetDriveMode(PinMode.Input);
55+
//_userButton = gpioController.OpenPin(PinNumber('A', 0), PinMode.Output));
6156

6257
// TI CC13x2 Launchpad: DIO_15 it's BTN-1 (input requiring pull-up)
63-
_userButton = gpioController.OpenPin(15);
64-
_userButton.SetDriveMode(PinMode.InputPullUp);
58+
_userButton = gpioController.OpenPin(15, PinMode.Input);
6559

6660
_userButton.ValueChanged += UserButton_ValueChanged;
6761

@@ -70,12 +64,10 @@ public static void Main()
7064
//////////////////////
7165

7266
// F769I-DISCO -> using PA7 (input only)
73-
//_exposedPad = gpioController.OpenPin(PinNumber('A', 7));
74-
//_exposedPad.SetDriveMode(PinMode.InputPullUp);
67+
//_exposedPad = gpioController.OpenPin(PinNumber('A', 7), PinMode.Output));
7568

7669
// TI CC13x2 Launchpad: DIO_14 it's BTN-2 (input requiring pull-up)
77-
_exposedPad = gpioController.OpenPin(14);
78-
_exposedPad.SetDriveMode(PinMode.InputPullUp);
70+
_exposedPad = gpioController.OpenPin(14, PinMode.Input);
7971

8072
// add a debounce timeout
8173
_exposedPad.DebounceTimeout = new TimeSpan(0, 0, 0, 0, 100);
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="nanoFramework.CoreLibrary" version="1.9.0-preview.5" targetFramework="netnanoframework10" />
4-
<package id="nanoFramework.Runtime.Events" version="1.8.2-preview.5" targetFramework="netnanoframework10" />
5-
<package id="nanoFramework.System.Device.Gpio" version="1.0.0-preview.6" targetFramework="netnanoframework10" />
3+
<package id="nanoFramework.CoreLibrary" version="1.12.0" targetFramework="netnanoframework10" />
4+
<package id="nanoFramework.Runtime.Events" version="1.10.0" targetFramework="netnanoframework10" />
5+
<package id="nanoFramework.System.Device.Gpio" version="1.0.4" targetFramework="netnanoframework10" />
66
</packages>

samples/Gpio/Gpio+EventsIoTStyle/Gpio+Events(IoT).nfproj

+2-5
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,14 @@
2525
<Reference Include="mscorlib, Version=1.9.1.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
2626
<HintPath>packages\nanoFramework.CoreLibrary.1.9.1-preview.6\lib\mscorlib.dll</HintPath>
2727
<Private>True</Private>
28-
<SpecificVersion>True</SpecificVersion>
2928
</Reference>
3029
<Reference Include="nanoFramework.Runtime.Events, Version=1.8.2.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
3130
<HintPath>packages\nanoFramework.Runtime.Events.1.8.2-preview.10\lib\nanoFramework.Runtime.Events.dll</HintPath>
3231
<Private>True</Private>
33-
<SpecificVersion>True</SpecificVersion>
3432
</Reference>
35-
<Reference Include="System.Device.Gpio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c07d481e9758c731">
36-
<HintPath>packages\nanoFramework.System.Device.Gpio.1.0.0-preview.8\lib\System.Device.Gpio.dll</HintPath>
33+
<Reference Include="System.Device.Gpio, Version=1.0.4.3, Culture=neutral, PublicKeyToken=c07d481e9758c731">
34+
<HintPath>packages\nanoFramework.System.Device.Gpio.1.0.4\lib\System.Device.Gpio.dll</HintPath>
3735
<Private>True</Private>
38-
<SpecificVersion>True</SpecificVersion>
3936
</Reference>
4037
</ItemGroup>
4138
<ItemGroup>

samples/Gpio/Gpio+EventsIoTStyle/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<packages>
33
<package id="nanoFramework.CoreLibrary" version="1.9.1-preview.6" targetFramework="netnanoframework10" />
44
<package id="nanoFramework.Runtime.Events" version="1.8.2-preview.10" targetFramework="netnanoframework10" />
5-
<package id="nanoFramework.System.Device.Gpio" version="1.0.0-preview.8" targetFramework="netnanoframework10" />
5+
<package id="nanoFramework.System.Device.Gpio" version="1.0.1" targetFramework="netnanoframework10" />
66
</packages>

samples/Graphics/Primitives/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public static void Main()
2929
// Adjust as well the size of your screen and the position of the screen on the driver
3030
DisplayControl.Initialize(new SpiConfiguration(1, chipSelect, dataCommand, reset, backLightPin), new ScreenConfiguration(0, 0, 320, 240));
3131
// Depending on you ESP32, you may also have to use either PWM either GPIO to set the backlight pin mode on
32-
// GpioController.OpenPin(backLightPin, PinMode.Output);
33-
// GpioController.Write(backLightPin, PinValue.High);
32+
// new GpioController().OpenPin(backLightPin, PinMode.Output);
33+
// GpioController().Write(backLightPin, PinValue.High);
3434
#elif STM32F769I_DISCO // This is an example (working) button map, work the actual pins out for your need!
3535
//WARNING: Invalid pin mappings will never be returned, and may need you to reflash the device!
3636
DisplayControl.Initialize(new SpiConfiguration(), new ScreenConfiguration());

samples/Graphics/Screens/m5stack-screen/Program.cs

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Diagnostics;
66
using System.Threading;
7-
using Windows.Devices.Pwm;
7+
using System.Device.Pwm;
88

99
namespace m5stack.screen
1010
{
@@ -57,12 +57,6 @@ It was popularised in the 1960s with the release of Letraset sheets containing
5757
DisplayControl.Initialize(new SpiConfiguration(1, chipSelect, dataCommand, reset, backLightPin), new ScreenConfiguration(0, 0, screenWidth, screenHeight), screenBufferSize);
5858
Debug.WriteLine("Screen initialized");
5959

60-
PwmController pwm = PwmController.GetDefault();
61-
pwm.SetDesiredFrequency(44100);
62-
PwmPin pwmPin = pwm.OpenPin(backLightPin);
63-
pwmPin.SetActiveDutyCyclePercentage(0.1);
64-
pwmPin.Start();
65-
6660
Font DisplayFont = Resource.GetFont(Resource.FontResources.segoeuiregular12);
6761
Bitmap charBitmap = new Bitmap(DisplayFont.MaxWidth + 1, DisplayFont.Height);
6862

samples/Graphics/Screens/m5stack-screen/m5stack.screen.nfproj

+2-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
</ItemGroup>
2929
<ItemGroup>
3030
<None Include="packages.config" />
31-
<None Include="README.md" />
3231
<None Include="Resources\segoeuiregular12.tinyfnt" />
3332
</ItemGroup>
3433
<ItemGroup>
@@ -37,9 +36,6 @@
3736
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
3837
</EmbeddedResource>
3938
</ItemGroup>
40-
<ItemGroup>
41-
<Content Include="category.txt" />
42-
</ItemGroup>
4339
<ItemGroup>
4440
<Reference Include="mscorlib, Version=1.12.0.4, Culture=neutral, PublicKeyToken=c07d481e9758c731">
4541
<HintPath>packages\nanoFramework.CoreLibrary.1.12.0\lib\mscorlib.dll</HintPath>
@@ -73,9 +69,8 @@
7369
<HintPath>packages\nanoFramework.System.Device.Gpio.1.0.4\lib\System.Device.Gpio.dll</HintPath>
7470
<Private>True</Private>
7571
</Reference>
76-
<Reference Include="Windows.Devices.Pwm, Version=1.6.2.3, Culture=neutral, PublicKeyToken=c07d481e9758c731">
77-
<HintPath>packages\nanoFramework.Windows.Devices.Pwm.1.6.2\lib\Windows.Devices.Pwm.dll</HintPath>
78-
<Private>True</Private>
72+
<Reference Include="System.Device.Pwm">
73+
<HintPath>packages\nanoFramework.System.Device.Pwm.1.0.1\lib\System.Device.Pwm.dll</HintPath>
7974
</Reference>
8075
</ItemGroup>
8176
<Import Project="$(NanoFrameworkProjectSystemPath)NFProjectSystem.CSharp.targets" Condition="Exists('$(NanoFrameworkProjectSystemPath)NFProjectSystem.CSharp.targets')" />

samples/Graphics/Screens/m5stack-screen/m5stack.screen.sln

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.31702.278
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32414.318
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{11A8DD76-328B-46DF-9F39-F559912D0360}") = "m5stack.screen", "m5stack.screen.nfproj", "{C2A421D1-D5EF-4D75-ADB9-A895270F75C8}"
77
EndProject

samples/Graphics/Screens/m5stack-screen/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
<package id="nanoFramework.Runtime.Native" version="1.5.4" targetFramework="netnanoframework10" />
99
<package id="nanoFramework.System.Collections" version="1.4.0" targetFramework="netnanoframework10" />
1010
<package id="nanoFramework.System.Device.Gpio" version="1.0.4" targetFramework="netnanoframework10" />
11-
<package id="nanoFramework.Windows.Devices.Pwm" version="1.6.2" targetFramework="netnanoframework10" />
11+
<package id="nanoFramework.System.Device.Pwm" version="1.0.1" targetFramework="netnanoframework10" />
1212
</packages>

0 commit comments

Comments
 (0)