標籤:windows 10 iot led 樹莓派2
本文接上一篇`Windows 10 IoT Core 正式版初體驗`,著重介紹一下,如何使用ssh和powershell或者web方式操作Windows 10 IoT Core,並且給予Windows 10 IoT Core的軟體開發。
遠端連線
**ssh方式**
保證個人PC和樹莓派2在一個網段,使用PuTTY可以直接連接伺服器, 預設使用者名Administrator
,密碼[email protected]
。
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/putty_config.png" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="putty_config.png" />
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/putty_console.png" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="putty_console.png" />
詳細的命令列命令可以從這裡查閱
**powershell方式**
保證個人PC和樹莓派2在一個網段,使用powershell的管理員方式開啟,並作以下設定(假設樹莓派2的IP地址為192.168.0.100)
開啟WinRM
服務:執行命令net start WinRM
設定受信任主機:執行命令Set-Item WSMan:\localhost\Client\TrustedHosts -Value 192.168.0.100
串連主機:執行命令`Enter-PSSession -ComputerName 192.168.0.100 -Credential 192.168.0.100\Administrator(密碼:[email protected])
第一次串連可能時間稍長,大約30秒左右
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/powershell.png" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="powershell.png" />
**web方式**
尋找應用Windows IoT Core Watcher
,可以重新整理出存在的主機,右鍵菜單web方式開啟
如
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/web.png" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="web.png" /> ` 650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/browser.png" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="browser.png" />
應用開發
第一個開發執行個體,使用安裝了Win10IoT的樹莓派控制LED燈光閃爍
材料包括
1、LED發光二極體
2、220歐電阻
3、麵包板和導線
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/material.jpg" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="material.jpg" />
串連方式如
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/connection.jpg" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="connection.jpg" />
下面是程式部分
使用VS2015建立UWP項目led
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/create-project.png" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="create-project.png" />
並添加引用Window IoT Extension SDK
,總之代碼見附件
選擇release
模式,編譯架構ARM
,調試環境Remote Machine
,一切成功的話,便可以看到LED燈光閃爍的效果。
650) this.width=650;" class="img-responsive img-thumbnail" src="http://blog.huangchaosuper.cn/resources/windows/led.gif" style="border:1px solid rgb(221,221,221);vertical-align:middle;height:auto;padding:4px;line-height:1.42857143;background-color:rgb(255,255,255);" alt="led.gif" />
本文出自 “好了,是我” 部落格,請務必保留此出處http://huangchaosuper.blog.51cto.com/5221102/1684911
Windows 10 IoT Core 正式版進階體驗