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.

24 lines
707 B

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