Good morning friends, i'm trying to making a player for my daughter using raspberry pi 3 and windows iot. I'm using Media Player with Media Element https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.mediaelement https://msdn.microsoft.com/it-it/library/windows/apps/mt187272.aspx using...
Good Afternoon, as we know raspberry send each 50 second a packet to a broadcast with Ip and Mac Address. This could be fine for implement autodiscovery in my project https://www.hackster.io/laserbrain/find-your-winiot-devices-d7eff5 do you have a working example for read message from a broadcast ov...
Good Morning everybody, I've put Xml file into the "Application Data Folder". Im able to read it without any problem. Code for read the file: public string path = @"C:\Users\NewPC\AppData\Local\Packages\45307261-1dc6-4817-b962-2a59d79ec272_h909besz0ssn6\LocalState\Contabilita.xml"; // Load Xml File ...
Yes could be very interesting also im using only 2 pin for max7219 and i would like to use the remain one for normal gpio ... i share my code ... private async Task InitSpi() { try { var settings = new SpiConnectionSettings((int)chipSelect); settings.ClockFrequency = 10000000; settings.Mode = SpiMod...
yes sure sorry, using SQLite.Net.Attributes; namespace Audio { /// <summary> /// In questo punto si struttura il Database che sarà inviato a raspberry /// </summary> public class Contabilita { [PrimaryKey, AutoIncrement] public int Id { get; set; } public float NumberOfCredit { get; set; } // Numero...
Good morning all, I've wrote an application for my raspberry pi 2 and it's successfully deployed. Mainly my when is running is waiting for the event on I/O, but if i wait for example a minutes before interact the app is stopped automatically. How i can do for run the application without to be stoppe...
Dear All, Scenario: I've done this routines that when i press a button is changing file correctly. public async void PlayFile(String FileMp3) { file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(FileMp3)); // working player.AutoPlay = true; player.SetFileSource(file); player.Play(); } T...
Good Morning, before to post I've did a lot of serach on google ... but i did found the answer ... just i seen that right now is not possible use serial port is correct ? I've a project with Windows Iot and i need to use serial port from pinout or better from usb with RS232 converter ... is there a ...