ESP32-basiertes Kraftort-Suchger�t mit GPS, LED-Ring und PlatformIO-Firmware.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

19 rindas
479B

  1. import os
  2. Import("env")
  3. env.Append(CPPDEFINES=["UNITY_INCLUDE_CONFIG_H"])
  4. # import "unity_config.h" folder to the library builder
  5. try:
  6. Import("projenv")
  7. projenv.Append(CPPDEFINES=["UNITY_INCLUDE_CONFIG_H"])
  8. for p in projenv["CPPPATH"]:
  9. p = projenv.subst(p)
  10. if os.path.isfile(os.path.join(p, "unity_config.h")):
  11. env.Prepend(CPPPATH=[p])
  12. # Stop at the first unity_config.h found to include.
  13. break
  14. except:
  15. pass