windows-10-iot-core

Check if another device is alive on the network based on its IP-address

隐身守侯 提交于 2020-01-17 05:38:27
问题 I'm trying to write a simple UWP IoT App that is to run on Windows 10 IoT Core on a Raspberry Pi. The App need to test if another device is currently alive on the local network. All the Apps knows about this other device is its ip address. I see from other SO questions that Ping is not supporten because ICMP is not supported on WinRT. I assume this also the case on UWP? I guess I could create a socket and try an connect to for example port 80 and unless a time-out error is received then that

Windows.UI.Popups.MessageDialog does not work for Windows 10 IoT

こ雲淡風輕ζ 提交于 2020-01-16 04:50:09
问题 await new Windows.UI.Popups.MessageDialog("Test").ShowAsync(); Has anyone else noticed this? Is there an easy work around ? 回答1: I have the some problem and I did't found any trick. I made myself a MessageDialog with a and It's not so hard to build it. Try do take a look this http://bitaware.altervista.org/messagedialog-for-iot/ The unique problem is that it do not work across platforms. If you would this behavior you have to get a condition string platform = AnalyticsInfo.VersionInfo

Win10 IoT - RaspBerry Pi2: ValueChanged not called when GPIO change

最后都变了- 提交于 2020-01-04 14:11:13
问题 I'm testing Win10 IoT on my Rpi2, with the following code: private void InitializeInterrupt() { GpioController gpioController = GpioController.GetDefault(); GpioPin buttonPin = gpioController.OpenPin(24); _ledPin= gpioController.OpenPin(25); buttonPin.SetDriveMode(GpioPinDriveMode.InputPullUp); _ledPin.Write(buttonPin.Read()); _ledPin.SetDriveMode(GpioPinDriveMode.Output); buttonPin.ValueChanged += OnButtonChanged; } private void OnButtonChanged(GpioPin sender, GpioPinValueChangedEventArgs

Raspberry Pi CPU Temp

风流意气都作罢 提交于 2019-12-30 22:52:15
问题 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

Ensure that target device has developer mode enabled. Could not obtain a developer license due to error

旧巷老猫 提交于 2019-12-30 17:23:53
问题 I am following this tutorial and get the following error: Severity Code Description Project File Line Suppression State Error DEP0100 : Please ensure that target device has developer mode enabled. Could not obtain a developer license due to error 800704C7. I am not sure how to do so in the Raspberry Pi 3 (which I have fed its public IP in front of Target Machine in the Debug tab of Properties in the solution explorer . I am debugging on the remote machine selecting ARM as the screenshot below

Ensure that target device has developer mode enabled. Could not obtain a developer license due to error

感情迁移 提交于 2019-12-30 17:22:22
问题 I am following this tutorial and get the following error: Severity Code Description Project File Line Suppression State Error DEP0100 : Please ensure that target device has developer mode enabled. Could not obtain a developer license due to error 800704C7. I am not sure how to do so in the Raspberry Pi 3 (which I have fed its public IP in front of Target Machine in the Debug tab of Properties in the solution explorer . I am debugging on the remote machine selecting ARM as the screenshot below

Where can I get SOS for Windows 10 IoT?

南楼画角 提交于 2019-12-30 09:00:26
问题 I have a dump of a .NET Universal App running on Raspberry Pi 2, Windows 10 IoT: 0:000> vertarget Windows 10 Version 10240 MP (4 procs) Free ARM (NT) Thumb-2 Product: WinNt, suite: SingleUserTS Built by: 10.0.10240.16384 (th1.150709-1700) I see it uses coreclr like Silverlight did before. 0:000> lm vm coreclr start end module name 6e430000 6e7fd000 coreclr (export symbols) coreclr.dll Loaded symbol image file: coreclr.dll ... Timestamp: Thu Jul 16 21:37:39 2015 (55A88693) ... File version: 4

Add language pack to Windows IoT Core

做~自己de王妃 提交于 2019-12-25 08:02:03
问题 Is it possible to add a language pack to Windows IoT Core? I am using the SpeechRecognizer API and would like to add other languages. From what I can see in code, only en-US is an available language with the default installation. 回答1: You can follow these steps: Go to Settings > Time & language > Region & language and install your favorite language(here I use French) on your windows 10 PC. After the installation is complete, you need to select France listed in Languages of Settings > Time &

Can't find System.Threading 4.0.10 on Raspberry Pi on Windows 10 Iot

别说谁变了你拦得住时间么 提交于 2019-12-25 07:17:30
问题 I'm creating a new simple UWP Blank application from the IoT template, and just adding a simple code to it: var xyz = new System.Threading.ManualResetEvent(false); xyz.WaitOne(1000); It works fine when I run this in x86 mode on my PC, and it worked fine on Raspberry Pi running Windows 10 IoT before I upgraded my PC to .NET Core RC2. Now I'm getting an error saying it can't find System.Threading version 4.0.10 when I execute it on the RPi. I've tried to add this via NuGet but no difference. I

Can't find System.Threading 4.0.10 on Raspberry Pi on Windows 10 Iot

独自空忆成欢 提交于 2019-12-25 07:16:00
问题 I'm creating a new simple UWP Blank application from the IoT template, and just adding a simple code to it: var xyz = new System.Threading.ManualResetEvent(false); xyz.WaitOne(1000); It works fine when I run this in x86 mode on my PC, and it worked fine on Raspberry Pi running Windows 10 IoT before I upgraded my PC to .NET Core RC2. Now I'm getting an error saying it can't find System.Threading version 4.0.10 when I execute it on the RPi. I've tried to add this via NuGet but no difference. I