Fork of the espurna firmware for `mhsw` switches
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.

25 lines
710 B

  1. /*
  2. If you want to modify the stock configuration but you don't want to touch
  3. the repo files you can either define USE_CUSTOM_H or remove the
  4. "#ifdef USE_CUSTOM_H" & "#endif" lines and add a "custom.h"
  5. file to this same folder.
  6. Check https://github.com/xoseperez/espurna/issues/104
  7. for an example on how to use this file.
  8. (Define USE_CUSTOM_H on commandline for platformio:
  9. export PLATFORMIO_BUILD_FLAGS="'-DUSE_CUSTOM_H'" )
  10. */
  11. #ifdef USE_CUSTOM_H
  12. #include "custom.h"
  13. #endif
  14. #include "version.h"
  15. #include "arduino.h"
  16. #include "hardware.h"
  17. #include "defaults.h"
  18. #include "general.h"
  19. #include "prototypes.h"
  20. #include "sensors.h"
  21. #ifdef USE_CORE_VERSION_H
  22. #include "core_version.h"
  23. #endif