windows-10-iot-core

Windows 10 IoT Bluetooth LE

对着背影说爱祢 提交于 2019-12-18 04:18:08
问题 I got an issue with reconnection to my BLE device. Senario that works - BLE Device is not paired - Pi boots and start my App, find's the BLE device, pair and connect, receiving data - Boot Pi and start my App, it will not pair as its already paired, it connects fine and receiving data. Senario that does not work - BLE Device is not pair or pair, does not matter - If my BLE device disconnect due to power loss or out of range and gets powered up or back in range the Pi will reconnect and throw:

Windows 10 IOT serial - Working on RP2 but read serial data incomplete

浪子不回头ぞ 提交于 2019-12-13 19:13:45
问题 So I have been experimenting with the IOT serial sample and RP2 since the october release opened up the serial pins. Im using the windows iot serial sample. Have a few issues i cant figure out. The read data seems incomplete. I have an arduino outputting an analog input reading through the serial at 9600 baud. On the windows universial app, ill read one complete line then one incomplete line. For example: if the arduiono is outputting a value of "2.25", the app will read one line 2.25 then

Windows 10 IoT - Supported bindings

时间秒杀一切 提交于 2019-12-13 19:00:28
问题 According to https://msdn.microsoft.com/en-us/library/system.servicemodel the Windows Universal Platform supports the NetHttpBinding. In Visual Studio, I can develop a simple WCF client using this binding, without errors. I can use the NetHttpBinding class of the ServerModel namespace. When I deploy the client to a Raspberry Pi 2, a PlatformNotSupportedException occurs. Which WCF bindings are really supported by Windows 10 IoT? 回答1: There is almost no information available public about WCF

Azure Storage Library Client on Windows 10 Iot/UWP?

梦想的初衷 提交于 2019-12-13 15:40:21
问题 It appears that the Azure Storage Client is not supported on Windows 10 Iot-Core/UWP (RPi). However, I am using it for Blobs, and it also used to work fine for Tables. Now, after an update to the latest stable (and -pre, tried both) the access to Tables hangs at await table.ExecuteQuerySegmentedAsync(query, new TableContinuationToken()); I searched in vain for a way to make this synchronous, which would, at the least, help me debug it. I also am wondering about the current success of others

Access Network Share from Windows 10 IoT for Raspberry Pi

。_饼干妹妹 提交于 2019-12-13 10:40:27
问题 I am new to Windows 10 IoT for Raspberry Pi. I try to access a Network Share and save a file but so far i had no luck. I tried hours and was searching the web but could not find a solution. Maybe someone did it already Would be very happy for help Thomas 回答1: As far as I know, this is not natively supported by Windows IoT. The closest term I can think of is KnownFolders, but network shared folders don't seem to be included. However, the workaround you can try is using FilePicker, when

Taking a photo from a WebCam in UWP Background (headless) App on Win 10 IoT

旧城冷巷雨未停 提交于 2019-12-13 08:48:37
问题 I've written a headless UWP Background Application and deployed it to a Raspberry PI running Windows 10 IoT. The Pi has an old Logitech webcam plugged into one of the USB ports and I'd like to be able to capture still images from it. I've lifted code from a Microsoft Blog on the subject (albeit aimed at UWP on the Xbox), but my app seems unable to detect any cameras at all. The following call comes back with no results: var allVideoDevices = await DeviceInformation.FindAllAsync(DeviceClass

Is it possible that windows form application create app package?

回眸只為那壹抹淺笑 提交于 2019-12-13 05:36:40
问题 I use rassberry pi 2 with Windows 10 Iot Core.Remote machine of Visual Studio didn't work when I run the my universal windows project with İot Extention(it s say that deploy failed) so I send app package of my project from device portal and it run but I have windows form application and it dont create app package for sending to device portal. What can I do ? Is it possible that windows form application create app package? or what is any other possible way? 回答1: Windows Forms applications are

Cannot deploy UWP app to raspberry pi 3

混江龙づ霸主 提交于 2019-12-13 05:34:10
问题 I'm getting an error : Error: Unable to connect to the Microsoft Visual Studio Remote Debugger named 'minwinpc'. The Visual Studio 2017 Remote Debugger (MSVSMON.EXE) does not appear to be running on the remote computer. This may be because a firewall is preventing communication to the remote computer. Please see Help for assistance on configuring remote debugging. I'm trying to deploy an app to my RPI 3 running Windows 10 IoT Core v.10.0.16299.15. I've tried: Reinstalling Visual Studio 2017

Trouble connecting a Windows 10 IoT Core device to Azure IoT Hub from behind closed firewall

本秂侑毒 提交于 2019-12-13 03:02:50
问题 I have a nice little project here in my basement, consisting of an LED wired into a Raspberry Pi 3. Quite complex, yes, I know. Beyond that, this Raspberry Pi is running Windows 10 IoT Core, and my goal is to make it possible to toggle that LED off and on by means of a Direct Method from the Azure Iot Hub service. Asides from an odd UI issue that I'll be asking about in a separate question, this system is more or less working properly. I've written up a UWP project, and it toggles the LED

No ToastNotification on Windows 10 IoT (RPI2)

五迷三道 提交于 2019-12-13 02:59:01
问题 How to get the ToastNotification working on Windows 10 IoT? (Raspberry Pi 2). ToastBindingGeneric binding = new ToastBindingGeneric(); binding.Children.Add(new AdaptiveText() { Text = "Foo" }); binding.Children.Add(new AdaptiveText() { Text = "Trying to do something here hello!!!" }); ToastContent content = new ToastContent() { Visual = new ToastVisual() { BindingGeneric = binding } }; ToastNotificationManager.CreateToastNotifier().Show(new ToastNotification(content.GetXml())); I'm using this