DIY fertilizer mixer and plant watering machine https://www.xythobuz.de/giessomat.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.h 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (c) 2021 Thomas Buck <thomas@xythobuz.de>
  3. *
  4. * This file is part of Giess-o-mat.
  5. *
  6. * Giess-o-mat is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Giess-o-mat is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Giess-o-mat. If not, see <https://www.gnu.org/licenses/>.
  18. */
  19. #ifndef _CONFIG_H_
  20. #define _CONFIG_H_
  21. //#define DEBUG_WAIT_FOR_SERIAL_CONN
  22. #define DEBUG_ENABLE_LCD_OUTPUT_ON_SERIAL
  23. #define DEBUG_ENABLE_KEYPAD_INPUT_ON_SERIAL
  24. // in milliseconds
  25. #define DISPLAY_BACKLIGHT_TIMEOUT (5UL * 60UL * 1000UL)
  26. // in seconds
  27. #define MAX_TANK_FILL_TIME (67 + 3)
  28. #define AUTO_PUMP_RUNTIME 5
  29. #define MAX_AUTO_PLANT_RUNTIME (30 * 60)
  30. #define MAX_PUMP_RUNTIME 30
  31. #define MAX_VALVE_RUNTIME (45 * 60)
  32. // Sketch version
  33. #define FIRMWARE_VERSION "0.2"
  34. // all given in milliseconds
  35. #define SERVER_HANDLE_INTERVAL 10
  36. #define WEBSOCKET_UPDATE_INTERVAL 500
  37. #define LED_BLINK_INTERVAL 500
  38. #define LED_INIT_BLINK_INTERVAL 500
  39. #define LED_CONNECT_BLINK_INTERVAL 250
  40. #define LED_ERROR_BLINK_INTERVAL 100
  41. #define INVERT_SENSOR_BOTTOM
  42. //#define INVERT_SENSOR_TOP
  43. #define CHECK_SENSORS_VALVE_PUMP_MENU_FULL // be careful when uncommenting this!
  44. //#define CHECK_SENSORS_VALVE_PUMP_MENU_EMPTY
  45. #define OWN_I2C_ADDRESS 0x42
  46. #define I2C_BUS_SPEED 400000
  47. #define I2C_BUF_SIZE 32
  48. //#define ENABLE_GPIO_TEST
  49. #define GPIO_TEST_INTERVAL 4000
  50. #define GPIO_TEST_DELAY 200
  51. // InfluxDB settings
  52. #define ENABLE_INFLUXDB_LOGGING
  53. #define INFLUXDB_HOST "10.23.42.14"
  54. #define INFLUXDB_PORT 8086
  55. #define INFLUXDB_DATABASE "giessomat"
  56. #endif // _CONFIG_H_