Windows 10 IoT Core first lesson to try something simple with Raspberry PI. Just blinking onboard green led.
HelloBlinky is one of the shortest and easily understandable program which illustrates Raspberry PI GPIO programming.
- Here is the blog entry: http://internetofthing.io/post/hello-blinky-first-lesson-in-raspberry-pi
- Lesson #2 https://github.com/LeivoSepp/Lesson2-HelloBlinkyRedGreen
- Lesson #3 https://github.com/LeivoSepp/Lesson3-HelloButton
GPIO stands for general-purpose input/output and it is a generic pin on a Raspberry/Arduino board. Each pin can be configured to be input or output.
Use it for buttons, measuring temperature, measuring light, measuring distance
Use it for LEDs, motors, relays, lamps
Each pin has its own personal number. This number is used to communicate with the pin. The pin number to use to communicate has an orange background. Do not try to use the numbers with grey backgrounds! It wont work and you will get an error.
Raspberry PI has two special pins which are to control the green and red LED integrated on the board.
The green LED’s pin number is 35 and the red’s pin number is 47.
To set up Windows 10 IoT Core to your Raspberry, please follow the instructions here: https://developer.microsoft.com/en-us/windows/iot/Docs/GetStarted/rpi2/sdcard/stable/getstartedstep1
To start new Raspberry project, use the Visual Studio template “Background Application (IoT)”.
If you do not have this project template, then open menu Visual Studio –> Tools –> Extensions and Updates. From there, click online, search for the string “iot” and install “Windows IoT Core Project Templates for VS”.