22 lines
411 B
C
22 lines
411 B
C
//
|
|
// 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
|
|
|
|
// version info
|
|
#define VERSION "v1.2.4-Alpa1"
|
|
|
|
#endif //PUMPENSTEUERUNG_PINS_H
|