mirror of
https://github.com/kevinveenbirkenbach/physical-interface.git
synced 2024-11-14 14:21:04 +01:00
In between commit development
This commit is contained in:
parent
c7c9b3f6b5
commit
fee5f15151
13
README.md
13
README.md
@ -13,5 +13,18 @@ bash ./scripts/library-update.sh
|
|||||||
bash ./scripts/board-update.sh
|
bash ./scripts/board-update.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Maintaining
|
||||||
|
### Links
|
||||||
|
The following links can be helpful for maintaining this code and understanding the domain:
|
||||||
|
#### Hardware
|
||||||
|
- https://smarthome-blogger.de/wp-content/uploads/2018/03/nodemcu-esp8266-pinout.png
|
||||||
|
|
||||||
|
#### IR
|
||||||
|
- https://github.com/crankyoldgit/IRremoteESP8266
|
||||||
|
- https://github.com/z3t0/Arduino-IRremote/blob/master/examples/IRrecvDumpV2/IRrecvDumpV2.ino
|
||||||
|
- https://daniel-ziegler.com/arduino/esp/mikrocontroller/2017/07/28/arduino-universalfernbedienung/
|
||||||
|
|
||||||
|
#### Serial Monitor
|
||||||
|
|
||||||
## License
|
## License
|
||||||
The ["GNU AFFERO GENERAL PUBLIC LICENSE"](./LICENSE.txt) applies to this project.
|
The ["GNU AFFERO GENERAL PUBLIC LICENSE"](./LICENSE.txt) applies to this project.
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#include <ESP8266mDNS.h>
|
#include <ESP8266mDNS.h>
|
||||||
#include <NewRemoteTransmitter.h>
|
#include <NewRemoteTransmitter.h>
|
||||||
#include <DHT.h>
|
#include <DHT.h>
|
||||||
|
#include <IRremote.h>
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
// Setup pins
|
// Setup pins
|
||||||
|
@ -37,4 +37,5 @@ pullOrClone(){
|
|||||||
pullOrClone "Adafruit_Sensor" "https://github.com/adafruit/Adafruit_Sensor";
|
pullOrClone "Adafruit_Sensor" "https://github.com/adafruit/Adafruit_Sensor";
|
||||||
pullOrClone "DHT-sensor-library" "https://github.com/adafruit/DHT-sensor-library";
|
pullOrClone "DHT-sensor-library" "https://github.com/adafruit/DHT-sensor-library";
|
||||||
pullOrClone "NewRemoteSwitch" "https://github.com/1technophile/NewRemoteSwitch";
|
pullOrClone "NewRemoteSwitch" "https://github.com/1technophile/NewRemoteSwitch";
|
||||||
|
pullOrClone "IRremoteESP8266" "https://github.com/crankyoldgit/IRremoteESP8266";
|
||||||
)
|
)
|
||||||
|
1
scripts/monitor.sh
Normal file
1
scripts/monitor.sh
Normal file
@ -0,0 +1 @@
|
|||||||
|
https://arduino.stackexchange.com/questions/19002/use-unix-terminal-instead-of-the-monitor-on-arduino-ide
|
Loading…
Reference in New Issue
Block a user