2020-11-10 17:38:33 +01:00
|
|
|
//
|
|
|
|
// Created by lukas on 10.11.20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef PUMPENSTEUERUNG_PINS_H
|
|
|
|
#define PUMPENSTEUERUNG_PINS_H
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
|
|
/** pin config */
|
|
|
|
#define WasserSensorPin D5 // GPIO 14
|
|
|
|
#define DruckSensorPin D6 // GPIO 12
|
|
|
|
#define SchuetzPin D2 // GPIO 4
|
|
|
|
#define LuefterPin D3 // GPIO 0
|
|
|
|
#define HeizungPin D1
|
|
|
|
#define TempSensorPin D4
|
|
|
|
|
2020-12-08 15:12:15 +00:00
|
|
|
// version info
|
2021-03-26 22:15:20 +00:00
|
|
|
#define VERSION "v1.2.4-Alpa1"
|
2020-12-08 15:12:15 +00:00
|
|
|
|
2020-11-10 17:38:33 +01:00
|
|
|
#endif //PUMPENSTEUERUNG_PINS_H
|