2020-05-14 17:22:40 +02:00
|
|
|
/**
|
|
|
|
* Configuration file example
|
|
|
|
*/
|
2020-05-13 19:46:16 +02:00
|
|
|
const char *ssid = "";
|
|
|
|
const char *password = "";
|
|
|
|
const char* hostname = "physical-interface";
|
2020-05-14 17:22:40 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pin layout
|
2020-05-15 08:55:50 +02:00
|
|
|
* I recommend to don't use D10, D9 and D0
|
2020-05-14 17:22:40 +02:00
|
|
|
*/
|
2020-05-15 08:55:50 +02:00
|
|
|
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;
|
2020-05-14 17:22:40 +02:00
|
|
|
const uint16_t PIN_LDR = A0;
|
2020-05-15 08:55:50 +02:00
|
|
|
const uint16_t PIN_SIGNAL = D2;
|
|
|
|
const uint16_t PINS_SOIL_MOISTURE[] = {};
|