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.

26 lines
730 B

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