能源管控程序
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.

library.json 1.2 KiB

2 years ago
1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "ESP_DoubleResetDetector",
  3. "version": "1.3.1",
  4. "keywords": "rtc, eeprom, littlefs, spiffs, reset, data, esp32, esp32-c3, esp32-s2, esp32-s3, esp8266, double-reset, detector, double-reset-detector",
  5. "description": "Library to detect a double reset within a predetermined time, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and ESP32. An alternative start-up mode can be used. One example use is to allow re-configuration of device WiFi credentials. Now supporting ESP32_C3, ESP32_S2 ans ESP32_S3",
  6. "authors":
  7. {
  8. "name": "Khoi Hoang",
  9. "url": "https://github.com/khoih-prog",
  10. "maintainer": true
  11. },
  12. "repository":
  13. {
  14. "type": "git",
  15. "url": "https://github.com/khoih-prog/ESP_DoubleResetDetector"
  16. },
  17. "homepage": "https://github.com/khoih-prog/ESP_DoubleResetDetector",
  18. "export": {
  19. "exclude": [
  20. "linux",
  21. "extras",
  22. "tests"
  23. ]
  24. },
  25. "dependencies":
  26. [
  27. {
  28. "owner": "lorol",
  29. "name": "LittleFS_esp32",
  30. "version": "^1.0.6",
  31. "platforms": ["espressif32"]
  32. }
  33. ],
  34. "frameworks": "arduino",
  35. "platforms": [ "espressif32", "espressif8266" ],
  36. "examples": "examples/*/*/*.ino",
  37. "headers": "ESP_DoubleResetDetector.h"
  38. }