Skip to content
This repository was archived by the owner on Jan 30, 2019. It is now read-only.

Commit 1bb8aff

Browse files
committed
Adding Arduino Wiring library samples
1 parent 7871ce7 commit 1bb8aff

File tree

68 files changed

+1816
-0
lines changed

Some content is hidden

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

68 files changed

+1816
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright (c) Microsoft. All rights reserved.
2+
3+
// The Arduino Wiring application template is documented at
4+
// http://go.microsoft.com/fwlink/?LinkID=533884&clcid=0x409
5+
6+
void setup()
7+
{
8+
// put your setup code here, to run once:
9+
10+
pinMode(GPIO5, OUTPUT);
11+
}
12+
13+
14+
void ledOn()
15+
{
16+
digitalWrite(GPIO5, HIGH);
17+
}
18+
19+
void ledOff()
20+
{
21+
digitalWrite(GPIO5, LOW);
22+
}

ArduinoLibraryBlinky/ArduinoLedLibrary/ArduinoLedLibrary.vcxproj

Lines changed: 228 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Package Dependencies">
5+
<UniqueIdentifier>f981b496-45b4-402a-8c42-660a3521a766</UniqueIdentifier>
6+
<Extensions>pfx;appxmanifest;config</Extensions>
7+
</Filter>
8+
<Filter Include="Package Dependencies\Assets">
9+
<UniqueIdentifier>d43dd4e6-0c18-470c-93c1-53bc7a99463b</UniqueIdentifier>
10+
<Extensions>png</Extensions>
11+
</Filter>
12+
<Filter Include="Package Dependencies\Include">
13+
<UniqueIdentifier>c54a0e99-26bc-4c9f-928e-fecb2b1ad2ce</UniqueIdentifier>
14+
</Filter>
15+
</ItemGroup>
16+
<ItemGroup>
17+
<ClCompile Include="ArduinoLedLibrary.ino" />
18+
<ClCompile Include="LedController.cpp" />
19+
</ItemGroup>
20+
<ItemGroup>
21+
<ClInclude Include="pch.h">
22+
<Filter>Package Dependencies\Include</Filter>
23+
</ClInclude>
24+
<ClInclude Include="PinNumbers.h">
25+
<Filter>Package Dependencies\Include</Filter>
26+
</ClInclude>
27+
<ClInclude Include="LedController.h" />
28+
</ItemGroup>
29+
<ItemGroup>
30+
<Image Include="Assets\LockScreenLogo.scale-200.png">
31+
<Filter>Package Dependencies\Assets</Filter>
32+
</Image>
33+
<Image Include="Assets\SplashScreen.scale-200.png">
34+
<Filter>Package Dependencies\Assets</Filter>
35+
</Image>
36+
<Image Include="Assets\Square150x150Logo.scale-200.png">
37+
<Filter>Package Dependencies\Assets</Filter>
38+
</Image>
39+
<Image Include="Assets\Square44x44Logo.scale-200.png">
40+
<Filter>Package Dependencies\Assets</Filter>
41+
</Image>
42+
<Image Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png">
43+
<Filter>Package Dependencies\Assets</Filter>
44+
</Image>
45+
<Image Include="Assets\StoreLogo.png">
46+
<Filter>Package Dependencies\Assets</Filter>
47+
</Image>
48+
<Image Include="Assets\Wide310x150Logo.scale-200.png">
49+
<Filter>Package Dependencies\Assets</Filter>
50+
</Image>
51+
</ItemGroup>
52+
<ItemGroup>
53+
<AppxManifest Include="Package.appxmanifest">
54+
<Filter>Package Dependencies</Filter>
55+
</AppxManifest>
56+
</ItemGroup>
57+
<ItemGroup>
58+
<None Include="packages.config">
59+
<Filter>Package Dependencies</Filter>
60+
</None>
61+
<None Include="ArduinoLedLibrary_TemporaryKey.pfx">
62+
<Filter>Package Dependencies</Filter>
63+
</None>
64+
</ItemGroup>
65+
</Project>
Binary file not shown.
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)