Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulo9mv/esp8266_interruption_gpio
Toggle LEDs by external interruptions
https://github.com/paulo9mv/esp8266_interruption_gpio
c esp esp8266 external-interrupts gpio gpio-pins interrupts microcontroller
Last synced: about 1 month ago
JSON representation
Toggle LEDs by external interruptions
- Host: GitHub
- URL: https://github.com/paulo9mv/esp8266_interruption_gpio
- Owner: paulo9mv
- License: mit
- Created: 2018-09-15T14:45:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T15:11:52.000Z (over 6 years ago)
- Last Synced: 2024-11-06T03:48:19.774Z (3 months ago)
- Topics: c, esp, esp8266, external-interrupts, gpio, gpio-pins, interrupts, microcontroller
- Language: C
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESP8266_Interruption_GPIO
Toggle LEDs by external interruptions# What does it do?
This code runs C native to control ESP8266.It sets 3 GPIO's as input and enable external interruptions on them.
Next, 3 other GPIO's are set as outputs (LEDs).
When an input GPIO trigger, the correspondent LED will become LOW or HIGH, the opposite of its last value.