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.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. #define BACK_TO_IDLE_TIMEOUT (5UL * 60UL * 1000UL)
  27. // in seconds
  28. #define MAX_TANK_FILL_TIME (70)
  29. #define AUTO_PUMP_RUNTIME 4
  30. #define AUTO_STIRR_RUNTIME 60
  31. #define MAX_AUTO_PLANT_RUNTIME (35 * 60)
  32. #define MAX_PUMP_RUNTIME 30
  33. #define MAX_VALVE_RUNTIME (45 * 60)
  34. #define MAX_AUX_RUNTIME (5 * 60)
  35. // Sketch version
  36. #define FIRMWARE_VERSION "0.4"
  37. // all given in milliseconds
  38. #define SERVER_HANDLE_INTERVAL 10
  39. #define WEBSOCKET_UPDATE_INTERVAL 500
  40. #define LED_BLINK_INTERVAL 500
  41. #define LED_INIT_BLINK_INTERVAL 500
  42. #define LED_CONNECT_BLINK_INTERVAL 250
  43. #define LED_ERROR_BLINK_INTERVAL 100
  44. #define INVERT_SENSOR_BOTTOM
  45. //#define INVERT_SENSOR_TOP
  46. #define CHECK_SENSORS_VALVE_PUMP_MENU_FULL // be careful when uncommenting this!
  47. //#define CHECK_SENSORS_VALVE_PUMP_MENU_EMPTY
  48. #define OWN_I2C_ADDRESS 0x42
  49. #define I2C_BUS_SPEED 400000
  50. #define I2C_BUF_SIZE 32
  51. //#define ENABLE_GPIO_TEST
  52. #define GPIO_TEST_INTERVAL 4000
  53. #define GPIO_TEST_DELAY 200
  54. // InfluxDB settings
  55. #define ENABLE_INFLUXDB_LOGGING
  56. #define INFLUXDB_HOST "10.23.42.14"
  57. #define INFLUXDB_PORT 8086
  58. #define INFLUXDB_DATABASE "giessomat"
  59. #define DOOR_LOCK_PIN 4223
  60. #define DOOR_LOCK_ON_TIME 100 /* in ms */
  61. #define DOOR_LOCK_PIN_MAX_DIGITS 6
  62. #endif // _CONFIG_H_