Mirror of espurna firmware for wireless switches and more
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.

286 lines
8.6 KiB

5 years ago
  1. //--------------------------------------------------------------------------------
  2. // PROGMEM definitions
  3. //--------------------------------------------------------------------------------
  4. //--------------------------------------------------------------------------------
  5. // Reset reasons
  6. //--------------------------------------------------------------------------------
  7. PROGMEM const char custom_reset_hardware[] = "Hardware button";
  8. PROGMEM const char custom_reset_web[] = "Reboot from web interface";
  9. PROGMEM const char custom_reset_terminal[] = "Reboot from terminal";
  10. PROGMEM const char custom_reset_mqtt[] = "Reboot from MQTT";
  11. PROGMEM const char custom_reset_rpc[] = "Reboot from RPC";
  12. PROGMEM const char custom_reset_ota[] = "Reboot after successful OTA update";
  13. PROGMEM const char custom_reset_http[] = "Reboot from HTTP";
  14. PROGMEM const char custom_reset_nofuss[] = "Reboot after successful NoFUSS update";
  15. PROGMEM const char custom_reset_upgrade[] = "Reboot after successful web update";
  16. PROGMEM const char custom_reset_factory[] = "Factory reset";
  17. PROGMEM const char* const custom_reset_string[] = {
  18. custom_reset_hardware, custom_reset_web, custom_reset_terminal,
  19. custom_reset_mqtt, custom_reset_rpc, custom_reset_ota,
  20. custom_reset_http, custom_reset_nofuss, custom_reset_upgrade,
  21. custom_reset_factory
  22. };
  23. //--------------------------------------------------------------------------------
  24. // Capabilities
  25. //--------------------------------------------------------------------------------
  26. PROGMEM const char espurna_modules[] =
  27. #if ALEXA_SUPPORT
  28. "ALEXA "
  29. #endif
  30. #if BROKER_SUPPORT
  31. "BROKER "
  32. #endif
  33. #if DEBUG_SERIAL_SUPPORT
  34. "DEBUG_SERIAL "
  35. #endif
  36. #if DEBUG_TELNET_SUPPORT
  37. "DEBUG_TELNET "
  38. #endif
  39. #if DEBUG_UDP_SUPPORT
  40. "DEBUG_UDP "
  41. #endif
  42. #if DEBUG_WEB_SUPPORT
  43. "DEBUG_WEB "
  44. #endif
  45. #if DOMOTICZ_SUPPORT
  46. "DOMOTICZ "
  47. #endif
  48. #if HOMEASSISTANT_SUPPORT
  49. "HOMEASSISTANT "
  50. #endif
  51. #if I2C_SUPPORT
  52. "I2C "
  53. #endif
  54. #if INFLUXDB_SUPPORT
  55. "INFLUXDB "
  56. #endif
  57. #if LLMNR_SUPPORT
  58. "LLMNR "
  59. #endif
  60. #if MDNS_SERVER_SUPPORT
  61. "MDNS_SERVER "
  62. #endif
  63. #if MDNS_CLIENT_SUPPORT
  64. "MDNS_CLIENT "
  65. #endif
  66. #if MQTT_SUPPORT
  67. "MQTT "
  68. #endif
  69. #if NETBIOS_SUPPORT
  70. "NETBIOS "
  71. #endif
  72. #if NOFUSS_SUPPORT
  73. "NOFUSS "
  74. #endif
  75. #if NTP_SUPPORT
  76. "NTP "
  77. #endif
  78. #if RF_SUPPORT
  79. "RF "
  80. #endif
  81. #if RFM69_SUPPORT
  82. "RFM69 "
  83. #endif
  84. #if SCHEDULER_SUPPORT
  85. "SCHEDULER "
  86. #endif
  87. #if SENSOR_SUPPORT
  88. "SENSOR "
  89. #endif
  90. #if SPIFFS_SUPPORT
  91. "SPIFFS "
  92. #endif
  93. #if SSDP_SUPPORT
  94. "SSDP "
  95. #endif
  96. #if TELNET_SUPPORT
  97. "TELNET "
  98. #endif
  99. #if TERMINAL_SUPPORT
  100. "TERMINAL "
  101. #endif
  102. #if THINGSPEAK_SUPPORT
  103. "THINGSPEAK "
  104. #endif
  105. #if UART_MQTT_SUPPORT
  106. "UART_MQTT "
  107. #endif
  108. #if WEB_SUPPORT
  109. "WEB "
  110. #endif
  111. "";
  112. //--------------------------------------------------------------------------------
  113. // Sensors
  114. //--------------------------------------------------------------------------------
  115. #if SENSOR_SUPPORT
  116. PROGMEM const char espurna_sensors[] =
  117. #if AM2320_SUPPORT
  118. "AM2320_I2C "
  119. #endif
  120. #if ANALOG_SUPPORT
  121. "ANALOG "
  122. #endif
  123. #if BH1750_SUPPORT
  124. "BH1750 "
  125. #endif
  126. #if BMX280_SUPPORT
  127. "BMX280 "
  128. #endif
  129. #if CSE7766_SUPPORT
  130. "CSE7766 "
  131. #endif
  132. #if DALLAS_SUPPORT
  133. "DALLAS "
  134. #endif
  135. #if DHT_SUPPORT
  136. "DHTXX "
  137. #endif
  138. #if DIGITAL_SUPPORT
  139. "DIGITAL "
  140. #endif
  141. #if ECH1560_SUPPORT
  142. "ECH1560 "
  143. #endif
  144. #if EMON_ADC121_SUPPORT
  145. "EMON_ADC121 "
  146. #endif
  147. #if EMON_ADS1X15_SUPPORT
  148. "EMON_ADX1X15 "
  149. #endif
  150. #if EMON_ANALOG_SUPPORT
  151. "EMON_ANALOG "
  152. #endif
  153. #if EVENTS_SUPPORT
  154. "EVENTS "
  155. #endif
  156. #if GEIGER_SUPPORT
  157. "GEIGER "
  158. #endif
  159. #if GUVAS12SD_SUPPORT
  160. "GUVAS12SD "
  161. #endif
  162. #if HCSR04_SUPPORT
  163. "HCSR04 "
  164. #endif
  165. #if HLW8012_SUPPORT
  166. "HLW8012 "
  167. #endif
  168. #if MHZ19_SUPPORT
  169. "MHZ19 "
  170. #endif
  171. #if NTC_SUPPORT
  172. "NTC "
  173. #endif
  174. #if PMSX003_SUPPORT
  175. "PMSX003 "
  176. #endif
  177. #if PZEM004T_SUPPORT
  178. "PZEM004T "
  179. #endif
  180. #if SENSEAIR_SUPPORT
  181. "SENSEAIR "
  182. #endif
  183. #if SHT3X_I2C_SUPPORT
  184. "SHT3X_I2C "
  185. #endif
  186. #if SI7021_SUPPORT
  187. "SI7021 "
  188. #endif
  189. #if TMP3X_SUPPORT
  190. "TMP3X "
  191. #endif
  192. #if V9261F_SUPPORT
  193. "V9261F "
  194. #endif
  195. "";
  196. PROGMEM const unsigned char magnitude_decimals[] = {
  197. 0,
  198. 1, 0, 2,
  199. 3, 0, 0, 0, 0, 0, 0, 0,
  200. 0, 0, 0,
  201. 0, 0, 0,
  202. 0, 0, 3, 3,
  203. 4, 4 // Geiger Counter decimals
  204. };
  205. PROGMEM const char magnitude_unknown_topic[] = "unknown";
  206. PROGMEM const char magnitude_temperature_topic[] = "temperature";
  207. PROGMEM const char magnitude_humidity_topic[] = "humidity";
  208. PROGMEM const char magnitude_pressure_topic[] = "pressure";
  209. PROGMEM const char magnitude_current_topic[] = "current";
  210. PROGMEM const char magnitude_voltage_topic[] = "voltage";
  211. PROGMEM const char magnitude_active_power_topic[] = "power";
  212. PROGMEM const char magnitude_apparent_power_topic[] = "apparent";
  213. PROGMEM const char magnitude_reactive_power_topic[] = "reactive";
  214. PROGMEM const char magnitude_power_factor_topic[] = "factor";
  215. PROGMEM const char magnitude_energy_topic[] = "energy";
  216. PROGMEM const char magnitude_energy_delta_topic[] = "energy_delta";
  217. PROGMEM const char magnitude_analog_topic[] = "analog";
  218. PROGMEM const char magnitude_digital_topic[] = "digital";
  219. PROGMEM const char magnitude_events_topic[] = "events";
  220. PROGMEM const char magnitude_pm1dot0_topic[] = "pm1dot0";
  221. PROGMEM const char magnitude_pm2dot5_topic[] = "pm2dot5";
  222. PROGMEM const char magnitude_pm10_topic[] = "pm10";
  223. PROGMEM const char magnitude_co2_topic[] = "co2";
  224. PROGMEM const char magnitude_lux_topic[] = "lux";
  225. PROGMEM const char magnitude_uv_topic[] = "uv";
  226. PROGMEM const char magnitude_distance_topic[] = "distance";
  227. PROGMEM const char magnitude_hcho_topic[] = "hcho";
  228. PROGMEM const char magnitude_geiger_cpm_topic[] = "ldr_cpm"; // local dose rate [Counts per minute]
  229. PROGMEM const char magnitude_geiger_sv_topic[] = "ldr_uSvh"; // local dose rate [µSievert per hour]
  230. PROGMEM const char* const magnitude_topics[] = {
  231. magnitude_unknown_topic, magnitude_temperature_topic, magnitude_humidity_topic,
  232. magnitude_pressure_topic, magnitude_current_topic, magnitude_voltage_topic,
  233. magnitude_active_power_topic, magnitude_apparent_power_topic, magnitude_reactive_power_topic,
  234. magnitude_power_factor_topic, magnitude_energy_topic, magnitude_energy_delta_topic,
  235. magnitude_analog_topic, magnitude_digital_topic, magnitude_events_topic,
  236. magnitude_pm1dot0_topic, magnitude_pm2dot5_topic, magnitude_pm10_topic,
  237. magnitude_co2_topic, magnitude_lux_topic, magnitude_uv_topic,
  238. magnitude_distance_topic, magnitude_hcho_topic,
  239. magnitude_geiger_cpm_topic, magnitude_geiger_sv_topic // Geiger Counter topics
  240. };
  241. PROGMEM const char magnitude_empty[] = "";
  242. PROGMEM const char magnitude_celsius[] = "°C";
  243. PROGMEM const char magnitude_fahrenheit[] = "°F";
  244. PROGMEM const char magnitude_percentage[] = "%";
  245. PROGMEM const char magnitude_hectopascals[] = "hPa";
  246. PROGMEM const char magnitude_amperes[] = "A";
  247. PROGMEM const char magnitude_volts[] = "V";
  248. PROGMEM const char magnitude_watts[] = "W";
  249. PROGMEM const char magnitude_kw[] = "kW";
  250. PROGMEM const char magnitude_joules[] = "J";
  251. PROGMEM const char magnitude_kwh[] = "kWh";
  252. PROGMEM const char magnitude_ugm3[] = "µg/m³";
  253. PROGMEM const char magnitude_ppm[] = "ppm";
  254. PROGMEM const char magnitude_lux[] = "lux";
  255. PROGMEM const char magnitude_uv[] = "uv";
  256. PROGMEM const char magnitude_distance[] = "m";
  257. PROGMEM const char magnitude_mgm3[] = "mg/m³";
  258. PROGMEM const char magnitude_geiger_cpm[] = "cpm"; // Counts per Minute: Unit of local dose rate (Geiger counting)
  259. PROGMEM const char magnitude_geiger_sv[] = "µSv/h"; // µSievert per hour: 2nd unit of local dose rate (Geiger counting)
  260. PROGMEM const char* const magnitude_units[] = {
  261. magnitude_empty, magnitude_celsius, magnitude_percentage,
  262. magnitude_hectopascals, magnitude_amperes, magnitude_volts,
  263. magnitude_watts, magnitude_watts, magnitude_watts,
  264. magnitude_percentage, magnitude_joules, magnitude_joules,
  265. magnitude_empty, magnitude_empty, magnitude_empty,
  266. magnitude_ugm3, magnitude_ugm3, magnitude_ugm3,
  267. magnitude_ppm, magnitude_lux, magnitude_uv,
  268. magnitude_distance, magnitude_mgm3,
  269. magnitude_geiger_cpm, magnitude_geiger_sv // Geiger counter units
  270. };
  271. #endif