123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /*
- * Copyright (c) 2021 Thomas Buck <thomas@xythobuz.de>
- *
- * This file is part of Giess-o-mat.
- *
- * Giess-o-mat is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Giess-o-mat is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Giess-o-mat. If not, see <https://www.gnu.org/licenses/>.
- */
-
- #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_
|