未验证 提交 80b8fdda 编写于 作者: J Jose Perez Rodriguez 提交者: GitHub

Updating Gpio package and updating I2c namespace (#542)

上级 a98a2493
<?xml version="1.0" encoding="utf-8"?>
<Dependencies>
<ProductDependencies>
<Dependency Name="System.Device.Gpio" Version="0.1.0-prerelease.19327.1">
<Dependency Name="System.Device.Gpio" Version="0.1.0-prerelease.19351.1">
<Uri>https://github.com/dotnet/iot</Uri>
<Sha>6262d3539c14e3564dd0c617e7f50e5939073389</Sha>
<Sha>ce75ecb21964bd6ddf3e168033fc4ac4a18a65d2</Sha>
</Dependency>
<Dependency Name="Iot.Device.Bindings" Version="0.1.0-prerelease.19327.1">
<Dependency Name="Iot.Device.Bindings" Version="0.1.0-prerelease.19351.1">
<Uri>https://github.com/dotnet/iot</Uri>
<Sha>6262d3539c14e3564dd0c617e7f50e5939073389</Sha>
<Sha>ce75ecb21964bd6ddf3e168033fc4ac4a18a65d2</Sha>
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
......
......@@ -3,8 +3,8 @@
<PropertyGroup>
<PreReleaseVersionLabel>prerelease</PreReleaseVersionLabel>
<!-- dotnet/iot dependencies -->
<SystemDeviceGpioPackageVersion>0.1.0-prerelease.19327.1</SystemDeviceGpioPackageVersion>
<IotDeviceBindingsPackageVersion>0.1.0-prerelease.19327.1</IotDeviceBindingsPackageVersion>
<SystemDeviceGpioPackageVersion>0.1.0-prerelease.19351.1</SystemDeviceGpioPackageVersion>
<IotDeviceBindingsPackageVersion>0.1.0-prerelease.19351.1</IotDeviceBindingsPackageVersion>
<!-- dotnet/arcade dependencies -->
<MicrosoftDotNetGenAPIPackageVersion>1.0.0-beta.19330.1</MicrosoftDotNetGenAPIPackageVersion>
</PropertyGroup>
......@@ -19,4 +19,4 @@
https://api.nuget.org/v3/index.json;
</RestoreSources>
</PropertyGroup>
</Project>
\ No newline at end of file
</Project>
......@@ -20,7 +20,9 @@
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="4.6.0-preview4.19164.7" />
<PackageReference Include="System.Device.Gpio" Version="$(SystemDeviceGpioPackageVersion)" />
<ProjectReference Include="$(MSBuildThisFileDirectory)../System.Device.Gpio/System.Device.Gpio.csproj">
<AdditionalProperties>RuntimeIdentifier=linux</AdditionalProperties>
</ProjectReference>
</ItemGroup>
<Target Name="PackageRefAssembly">
......
......@@ -4,7 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Ads1115
......
......@@ -3,9 +3,9 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Device.Ads1115;
namespace Ads1115.Samples
......
......@@ -4,7 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Ags01db
......@@ -143,4 +143,4 @@ namespace Iot.Device.Ags01db
return false;
}
}
}
\ No newline at end of file
}
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Ags01db.Samples
......
......@@ -4,8 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Threading;
using System.Device.I2c.Devices;
namespace Iot.Device.Bh1750fvi
{
......@@ -110,4 +109,4 @@ namespace Iot.Device.Bh1750fvi
return result;
}
}
}
\ No newline at end of file
}
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Bh1750fvi.Samples
......
......@@ -6,8 +6,8 @@
// Formulas and code examples can also be found in the datasheet https://cdn-shop.adafruit.com/datasheets/BST-BMP180-DS000-09.pdf
using System;
using System.Device.I2c;
using System.Buffers.Binary;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Units;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Device.Bmp180;
using Iot.Units;
......
......@@ -2,8 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading.Tasks;
namespace Iot.Device.Bmx280
......
......@@ -2,7 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Bmx280
{
......
......@@ -7,7 +7,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading.Tasks;
using Iot.Units;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
using System.Threading.Tasks;
using Iot.Device.Bmx280;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
using System.Threading.Tasks;
using Iot.Device.Bmx280;
......
......@@ -4,7 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Numerics;
using System.Threading;
using Iot.Units;
......
......@@ -5,7 +5,7 @@
using Iot.Device.Bno055;
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Numerics;
using System.Threading;
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Drawing;
namespace Iot.Device.CharacterLcd
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.CharacterLcd
{
......
......@@ -5,7 +5,7 @@
using System;
using System.Device;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.CharacterLcd
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Drawing;
namespace Iot.Device.CharacterLcd
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using Iot.Device.Mcp23xxx;
namespace Iot.Device.CharacterLcd.Samples
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Diagnostics;
using System.Drawing;
using System.Text;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Diagnostics;
using System.Drawing;
using System.Text;
......
......@@ -5,7 +5,7 @@
using System;
using System.Device;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Diagnostics;
using System.Threading;
using Dhtxx.Devices;
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Ds1307
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Ds1307.Samples
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using Iot.Units;
namespace Iot.Device.Ds3231
......
......@@ -5,7 +5,7 @@
using System;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Ds3231.Samples
{
......
......@@ -2,13 +2,13 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Iot.Device.GrovePiDevice.Models;
using System;
using System.Buffers.Binary;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.IO;
using System.Threading;
using Iot.Device.GrovePiDevice.Models;
namespace Iot.Device.GrovePiDevice
{
......
......@@ -8,7 +8,7 @@ using Iot.Device.GrovePiDevice.Models;
using Iot.Device.GrovePiDevice;
using Iot.Device.GrovePiDevice.Sensors;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Device.Gpio;
namespace GrovePisample
......
......@@ -5,7 +5,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Device.Spi;
using System.Device.Spi.Drivers;
using System.Threading;
......
......@@ -4,8 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Collections.Generic;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Numerics;
namespace Iot.Device.Hmc5883l
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Hmc5883l.Samples
......
......@@ -3,12 +3,8 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Device.I2c.Drivers;
using System.Buffers.Binary;
using System.Device.I2c.Devices;
using Iot.Units;
namespace Iot.Device.Hts221
......
......@@ -5,7 +5,7 @@
using System;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Hts221.Samples
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using Iot.Units;
namespace Iot.Device.Lm75
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Lm75.Samples
......
......@@ -3,12 +3,9 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Device.I2c.Drivers;
using System.Buffers.Binary;
using System.Device.I2c.Devices;
using System.Diagnostics;
using Iot.Units;
namespace Iot.Device.Lps25h
......
......@@ -5,7 +5,7 @@
using System;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Lps25h.Samples
{
......
......@@ -3,13 +3,8 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Device.I2c.Drivers;
using System.Buffers.Binary;
using System.Device.I2c.Devices;
using System.Numerics;
namespace Iot.Device.Lsm9Ds1
......
......@@ -3,13 +3,8 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Device.I2c.Drivers;
using System.Buffers.Binary;
using System.Device.I2c.Devices;
using System.Numerics;
namespace Iot.Device.Lsm9Ds1
......
......@@ -5,7 +5,7 @@
using System;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Lsm9Ds1.Samples
{
......
......@@ -6,7 +6,7 @@ using System;
using System.Numerics;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Diagnostics;
using System.Collections.Generic;
......
......@@ -5,7 +5,7 @@
using System;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Lsm9Ds1.Samples
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Max44009
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Max44009.Samples
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Mcp23xxx
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Mcp23xxx
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Mcp23xxx
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Mcp23xxx
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Mcp23xxx
{
......
......@@ -5,7 +5,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Device.Spi;
using System.Device.Spi.Drivers;
using System.Threading;
......
......@@ -6,6 +6,7 @@ using System;
using System.Collections.Generic;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Device.Spi;
using Xunit;
......
......@@ -4,10 +4,9 @@
using System;
using System.Buffers.Binary;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Mpr121
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Mpr121.Samples
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pca95x4
{
......
......@@ -5,7 +5,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Pca95x4.Samples
......
......@@ -3,11 +3,11 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading;
using static Iot.Device.Pca9685.Register;
using static Iot.Device.Pca9685.Mode1;
using static Iot.Device.Pca9685.Mode2;
using static Iot.Device.Pca9685.Register;
namespace Iot.Device.Pca9685
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.Pca9685.Samples
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pcx857x
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pcx857x
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pcx857x
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pcx857x
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pcx857x
{
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
namespace Iot.Device.Pcx857x
{
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Runtime.CompilerServices;
namespace Iot.Device.Pcx857x
......
......@@ -6,6 +6,7 @@ using System;
using System.Collections.Generic;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Devices;
using Xunit;
namespace Iot.Device.Pcx857x.Tests
......
......@@ -3,12 +3,6 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Device.I2c.Drivers;
using System.Drawing;
using System.Numerics;
using Iot.Units;
......
......@@ -2,10 +2,8 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using Iot.Device.Lsm9Ds1;
namespace Iot.Device.SenseHat
......
......@@ -3,12 +3,8 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.SenseHat
{
......
......@@ -3,13 +3,10 @@
// See the LICENSE file in the project root for more information.
using System;
using System.IO;
using System.Device.Gpio;
using System.Device.I2c;
using System.Diagnostics;
using System.Device.I2c.Devices;
using System.Drawing;
using System.Runtime.CompilerServices;
using System.Device.I2c.Drivers;
namespace Iot.Device.SenseHat
{
......
......@@ -2,10 +2,8 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using Iot.Device.Lsm9Ds1;
namespace Iot.Device.SenseHat
......
......@@ -2,10 +2,8 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.SenseHat
{
......
......@@ -2,10 +2,8 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
namespace Iot.Device.SenseHat
{
......
......@@ -6,7 +6,7 @@ using System;
using System.Numerics;
using System.Threading;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Diagnostics;
using System.Collections.Generic;
using System.Drawing;
......
......@@ -3,7 +3,7 @@
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Units;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Sht3x.Samples
......
......@@ -4,7 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Units;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
namespace Iot.Device.Si7021.Samples
......
......@@ -2,9 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Iot.Device.Ssd13xx.Commands;
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using Iot.Device.Ssd13xx.Commands;
namespace Iot.Device.Ssd13xx
{
......
......@@ -2,10 +2,10 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Device.I2c.Devices;
using Iot.Device.Ssd13xx.Commands;
using Ssd1327Cmnds = Iot.Device.Ssd13xx.Commands.Ssd1327Commands;
using System;
using System.Device.I2c;
namespace Iot.Device.Ssd13xx
{
......
......@@ -2,9 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Iot.Device.Ssd13xx.Commands;
using System;
using System.Device.I2c;
using System.Device.I2c.Devices;
using Iot.Device.Ssd13xx.Commands;
namespace Iot.Device.Ssd13xx
{
......
......@@ -8,7 +8,7 @@ using Ssd1327Cmnds = Iot.Device.Ssd13xx.Commands.Ssd1327Commands;
using System;
using System.Collections.Generic;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Linq;
using System.Net;
using System.Net.NetworkInformation;
......
......@@ -4,7 +4,7 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Drawing;
using System.Threading;
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Device.Tcs3472x;
......
......@@ -9,10 +9,9 @@
using System;
using System.Buffers.Binary;
using System.Device.I2c;
using System.Device.I2c.Devices;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
namespace Iot.Device.Vl53L0X
......
......@@ -4,7 +4,7 @@
using System;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Threading;
using Iot.Device.Vl53L0X;
......
......@@ -5,7 +5,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Device.Spi;
using System.Device.Spi.Drivers;
......
......@@ -5,7 +5,7 @@
using System;
using System.Device.Gpio;
using System.Device.I2c;
using System.Device.I2c.Drivers;
using System.Device.I2c.Devices;
using System.Device.Spi;
using System.Device.Spi.Drivers;
using System.Threading;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册