.Pages general

Page grids, adding elements to a page, etc These things are all in separate dedicated folders on this site. A good place to start is at: https://ibex.tech/windows-iot/windows-iot/uwp-programming-in-c/grid/grid-2

Read More

.Where to start

Setup your device to run Windows 10 Iot Core Starting with the Raspberry Pi: https://ibex.tech/windows-iot/windows-iot/hardware/raspberry-pi/creating-image-for-for-a-raspberry-pi Create A New Project https://ibex.tech/windows-iot/windows-iot/uwp-programming-in-c/projects-general/creating-a-new-project

Read More

Converting Variables

Convert Float / Single to Bytes float float1 = 1.0F; Byte[] ByteArray1 = BitConverter.GetBytes(float1); Convert Bytes to Float/Single Byte[] ByteArray1 = new Byte[4] {1,2,3,4}; float float1 = BitConverter.ToSingle(ByteArray1, 0);    

Read More

Rename project

Open the project and rename in the solution explorer Change output exe name Right click on project in Solution Explorer and select “Properties” from popup menu > “Application” change the “Assembly name”    

Read More