mirror of
https://github.com/kevinveenbirkenbach/physical-interface.git
synced 2024-11-14 14:21:04 +01:00
21 lines
517 B
Plaintext
21 lines
517 B
Plaintext
/**
|
|
* Configuration file example
|
|
*/
|
|
const char *ssid = "";
|
|
const char *password = "";
|
|
const char* hostname = "physical-interface";
|
|
|
|
/**
|
|
* Pin layout
|
|
* I recommend to don't use D10, D9 and D0
|
|
*/
|
|
const uint16_t PIN_RADIO_TRANSMITTER = D5;
|
|
const uint16_t PIN_RADIO_RECIEVER = D4;
|
|
const uint16_t PIN_PIR = D8;
|
|
const uint16_t PIN_DHT = D7;
|
|
const uint16_t PIN_IR_RECIEVER = D1;
|
|
const uint16_t PIN_IR_SEND = D6;
|
|
const uint16_t PIN_LDR = A0;
|
|
const uint16_t PIN_SIGNAL = D2;
|
|
const uint16_t PINS_SOIL_MOISTURE[] = {};
|