physical-interface/main/config.h.dist

20 lines
490 B
Plaintext
Raw Normal View History

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
*/
const uint16_t PIN_RADIO_TRANSMITTER = D7;
const uint16_t PIN_RADIO_RECIEVER = D8;
const uint16_t PIN_PIR = D1;
const uint16_t PIN_DHT = D6;
const uint16_t PIN_IR_RECIEVER = D4;
const uint16_t PIN_IR_SEND = D2;
const uint16_t PIN_LDR = A0;
const uint16_t PIN_ACTIVE_BUZZER = D5;
const uint16_t PINS_SOIL_MOISTURE[] = {D3,D9,D10};