12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef _CONFIG_PINS_H_
- #define _CONFIG_PINS_H_
-
- // ----------------------------------------------------------------------------
- // ----------------------------------------------------------------------------
-
- #ifdef PLATFORM_AVR
-
- #define BUILTIN_LED_PIN 13
-
- // ----------------------------------------------------------------------------
-
- #ifdef FUNCTION_UI
-
- #define SERIAL_LCD_TX_PIN 10
-
- #define KEYMATRIX_ROWS 4
- #define KEYMATRIX_COLS 3
- #define KEYMATRIX_ROW_PINS 5, 6, 7, 8
- #define KEYMATRIX_COL_PINS 2, 3, 4
-
- #endif // FUNCTION_UI
-
- // ----------------------------------------------------------------------------
-
- #ifdef FUNCTION_CONTROL
-
- // out 1, out 2, out 3, out 4, in
- #define VALVE_COUNT 5
- #define VALVE_PINS 10, 11, 12, 14, 15
-
- // a, b, c
- #define PUMP_COUNT 3
- #define PUMP_PINS 16, 17, 18
-
- // bottom, top
- #define SWITCH_COUNT 2
- #define SWITCH_PINS 19, 20
-
- #endif // FUNCTION_CONTROL
-
- #endif // PLATFORM_AVR
-
- // ----------------------------------------------------------------------------
- // ----------------------------------------------------------------------------
-
- #ifdef PLATFORM_ESP
-
- #define BUILTIN_LED_PIN 1
-
- // ----------------------------------------------------------------------------
-
- #ifdef FUNCTION_UI
-
- #error configuration not supported
-
- #endif // FUNCTION_UI
-
- // ----------------------------------------------------------------------------
-
- #ifdef FUNCTION_CONTROL
-
- // out 1, out 2, out 3, out 4, in
- #define VALVE_COUNT 5
- #define VALVE_PINS 27, 14, 5, 18, 15
-
- // a, b, c
- #define PUMP_COUNT 3
- #define PUMP_PINS 2, 0, 4
-
- // bottom, top
- #define SWITCH_COUNT 2
- #define SWITCH_PINS 26, 25
-
- #define I2C_SDA_PIN 21
- #define I2C_SCL_PIN 22
-
- #endif // FUNCTION_CONTROL
-
- #endif // PLATFORM_ESP
-
- // ----------------------------------------------------------------------------
- // ----------------------------------------------------------------------------
-
- #endif // _CONFIG_PINS_H_
|