windows-10-iot-core

Raspberry Pi2 running Windows 10: No PWM

*爱你&永不变心* 提交于 2019-12-04 10:01:07
I have a Raspberry Pi2 running Windows 10. I want to control a servo using PWM (porting some netduino code). There does not appear to be a PWM pin at all on the Pi-> with the possible exception of 12 (GPIO 18). Can someone confirm this? Thanks Hardware PWM and ADC are not supported right now on RPi2 (Windows IoT). You need some extra circuitry which can generate PWM or record ADC on demand. There some project works available for that. How you can achieve PWM & ADC on RPi2 + Windows IoT? RPi2 will be connected to a gateway device via I2C/SPI Bus. A gateway device is nothing more than a

Can Docker containers run in Windows IoT Core

ぐ巨炮叔叔 提交于 2019-12-04 09:19:28
问题 Is there a way to run a Docker container in Windows IoT Core? I have seen it can be used in Azure, Windows Server and desktop W10 but there is no evidence about Windows IoT Core and I am not sure if some of the already existing installations of docker-engine is compatible with IoT Core or it is just not possible. 回答1: Last Friday, Azure IoT Edge v2 launched in Public Preview yesterday with out-of-box support for native Windows containers! There is even a how-to for deploying on Windows IoT

How to run a Windows 10 IOT app locally?

别说谁变了你拦得住时间么 提交于 2019-12-04 08:11:36
Is there a way to allow a normal Windows 10 installation to run Windows 10 IOT apps for debugging purposes? Right now when I set the architecture from ARM (Raspberry Pi 3) to x64 (Local machine) I get the following error message when I start a debug session: I've read here that it's got something to do with 'embedded mode' but I can't find any information anywhere about it and the group policy does not appear to contain anything about enabling embedded mode... Help is greatly appreciated! Thanks in advance! It turns out that in addition to applying the policy, you also have to start the

I get a Blank screen when using Windows IoT Remote Client

匆匆过客 提交于 2019-12-03 20:09:17
My Setup: Windows 10 VM running in VirtualBox on Windows 7 Pro Raspberry Pi 3 running Windows 10 IoT Core - 10.0.16299.19 The VM can see the RaspberryPi/Wionows IoT I know this because: On the VMI I can Install and Debug from Visual Studio 2017 to the Pi. On the VM the IoT Dashboard detects the PI and allows me to change settings On the VM I can access the Pi's Device Portal On the VM I can use Powershell to log in to the Pi. What I can't do is use Windows IoT Remote Client. Which I want so I can see changes produced by my code. When I start the client I get the spinning buffer animation

UWP application and .NET Core RC2: cannot reference netstandard1.4 packages

岁酱吖の 提交于 2019-12-03 07:28:23
问题 I have a scenario where I run a UWP client application, a UWP IOT application and a .NET Core application using a shared code base. In .NET Core RC1 I built a Class Library (Package) and used "dotnet5.4" as the base framework for that library. Using "generate build output" I could reference the created nuget packages from the .NET Core application (console) and using a workaround (copy the packages from %local%.dnx -> %local%.nuget) the UWP applications were able to reference and use the

How to access Network Share from Raspberry Pi running IoT Core in UWP app

我只是一个虾纸丫 提交于 2019-12-02 22:42:08
I have a c# UWP app that I'm intending to run on a Raspberry PI with Windows 10 IoT Core. The problem I have is when I try to connect to a UNC share to copy some files. The network is just a home network with local user credentials, share is on another computer on the same network. When running the app locally I can just use await StorageFolder.GetFolderFromPathAsync(@"\\share\folder"); to connect to the share and this works fine, I'm assuming this is because the credentials I'm using are saved on the local machine. When ran on the RPi the error received is: "The system cannot find the file

ValueChanged not firing with C# Win10 Iot

◇◆丶佛笑我妖孽 提交于 2019-12-02 17:41:42
问题 It seems exactly like Win10 IoT - RaspBerry Pi2: ValueChanged not called when GPIO change I have a raspberry pi 2 with win10 IoT (creator version) and have this C# code: public sealed class StartupTask : IBackgroundTask { private const int SENSOR_PIN = 17; private GpioPin pinSensor; public void Run(IBackgroundTaskInstance taskInstance) { taskInstance.Canceled += TaskInstance_Canceled; // "destructor" var gpio = GpioController.GetDefault(); if (gpio != null) { pinSensor = gpio.OpenPin(SENSOR

Windows IoT - Zebra Bluetooth Printer

╄→гoц情女王★ 提交于 2019-12-02 02:20:27
问题 I have two Zebra Bluetooth Printers, a MZ220 and iMZ220. The "only" thing I would do, is to print text with a Windows IoT System on a Raspberry Pi 2. Nothing more ;) Example: Line1 " Hello World" Line2 "---------------" Line3 "Date:01.01.2016" Line4 "Time: 18:00" The USB Bluetooth Adapter BTA-403 from ORICO, I guess works well. With the Explorer I can connect to the Printer. But, what next? How do I connect to the Printer? How do I say to the Printer print "Hello World!" Thanks! 回答1: These

Automatically update apps inside the Windows 10 IoT Core?

北慕城南 提交于 2019-12-01 21:36:23
Recently I have a question. If I write an UWP app and install into a Raspberry Pi with Windows IoT Core OS, is it possible that I set a automatic OTA update for my app inside the Raspberry Pi, just like normal UWP apps in Windows App Store do? EDIT: Just for my apps, not for upgrading Windows OS (since it can be upgraded directly by Windows Update) Great question. I'd suggest looking at a higher level device management solution that can provide updates of any type to a device via an IoT event hub. This is still in preview but check out this Microsoft post on getting started with something like

Raspberry Pi CPU Temp

安稳与你 提交于 2019-12-01 19:43:51
I have a Raspberry Pi 3 running Windows 10 IoT Core. My question is; would it be possible, or is there a way to monitor the CPU temperature of the device either via a remote PowerShell connection, locally on the device in the command line console or if all else fails using a C# deployed app on the device? I confess to being a C# noob, hence it being my third option. Why?... I'm planning on building a custom case out of Lego for a stack of several devices and want to assess whether I need to purchase a bunch of heat sinks and cooling fans etc. Many thanks for your time and assistance. I hope