https://github.com/leivosepp/lesson1-helloblinky
Windows 10 IoT Core first lesson to try something simple with Raspberry PI. Just blinking onboard led.
https://github.com/leivosepp/lesson1-helloblinky
blinky gpio led lesson pin raspberry raspberry-pi visual-studio windows-10 windows-iot
Last synced: 4 months ago
JSON representation
Windows 10 IoT Core first lesson to try something simple with Raspberry PI. Just blinking onboard led.
- Host: GitHub
- URL: https://github.com/leivosepp/lesson1-helloblinky
- Owner: LeivoSepp
- Created: 2017-01-03T20:23:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-04T21:43:09.000Z (about 9 years ago)
- Last Synced: 2025-04-03T19:19:07.921Z (10 months ago)
- Topics: blinky, gpio, led, lesson, pin, raspberry, raspberry-pi, visual-studio, windows-10, windows-iot
- Language: C#
- Homepage: http://internetofthing.io/post/hello-blinky-first-lesson-in-raspberry-pi
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lesson #1 Hello Blinky
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
## What is GPIO?
**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.

## Pin is configured as an input
Use it for buttons, measuring temperature, measuring light, measuring distance
## Pin is configured as an output
Use it for LEDs, motors, relays, lamps
## Pin identification number
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.
## Windows 10
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
## Visual Studio
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”.

# Blinky code and explanation.