https://github.com/carlosvega20/rpi_gpio_python_samples
Raspberry PI, electronic, led, i2c, Python, basics.
https://github.com/carlosvega20/rpi_gpio_python_samples
Last synced: 3 months ago
JSON representation
Raspberry PI, electronic, led, i2c, Python, basics.
- Host: GitHub
- URL: https://github.com/carlosvega20/rpi_gpio_python_samples
- Owner: carlosvega20
- Created: 2015-07-31T13:59:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-06T15:40:36.000Z (almost 10 years ago)
- Last Synced: 2025-01-17T20:23:51.276Z (5 months ago)
- Language: Python
- Size: 277 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RPI_GPIO_Python_samples
## Basic Blink Led (Hello World!)
- 01_blink_led.py
Raspberry PI i2c Hello world!.
Blink a simple led.Requirements:
- Raspberry PI
- One Led and resistor (try with different ohms the idea is not to burn the led with 3v or 5v )
- Python, RPI/GPIO and i2c enabled (https://gist.github.com/carlosvega20/2a4282d80cd82a9360ca)Board Setup:
## Basic Python Web Server (flask Framework)
- 02_basic_web_server.py
Web Server Hello World!.
Run a simple server.Requirements:
- python
- pip (python get-pip.py)
- flask (pip install Flask)## LED Blinky code for Raspberry Pi on flask webserver (Hello World!)
- 03_web_gpio_led.py
Raspberry PI i2c Hello world!.
Blink a simple led from external web server.Requirements:
- All the initial requirements at top of this doc