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.

293 lines
8.8 KiB

6 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 IR_SUPPORT
  58. "IR "
  59. #endif
  60. #if LLMNR_SUPPORT
  61. "LLMNR "
  62. #endif
  63. #if MDNS_SERVER_SUPPORT
  64. "MDNS_SERVER "
  65. #endif
  66. #if MDNS_CLIENT_SUPPORT
  67. "MDNS_CLIENT "
  68. #endif
  69. #if MQTT_SUPPORT
  70. "MQTT "
  71. #endif
  72. #if NETBIOS_SUPPORT
  73. "NETBIOS "
  74. #endif
  75. #if NOFUSS_SUPPORT
  76. "NOFUSS "
  77. #endif
  78. #if NTP_SUPPORT
  79. "NTP "
  80. #endif
  81. #if RF_SUPPORT
  82. "RF "
  83. #endif
  84. #if RFM69_SUPPORT
  85. "RFM69 "
  86. #endif
  87. #if SCHEDULER_SUPPORT
  88. "SCHEDULER "
  89. #endif
  90. #if SENSOR_SUPPORT
  91. "SENSOR "
  92. #endif
  93. #if SPIFFS_SUPPORT
  94. "SPIFFS "
  95. #endif
  96. #if SSDP_SUPPORT
  97. "SSDP "
  98. #endif
  99. #if TELNET_SUPPORT
  100. "TELNET "
  101. #endif
  102. #if TERMINAL_SUPPORT
  103. "TERMINAL "
  104. #endif
  105. #if THINGSPEAK_SUPPORT
  106. "THINGSPEAK "
  107. #endif
  108. #if UART_MQTT_SUPPORT
  109. "UART_MQTT "
  110. #endif
  111. #if WEB_SUPPORT
  112. "WEB "
  113. #endif
  114. "";
  115. //--------------------------------------------------------------------------------
  116. // Sensors
  117. //--------------------------------------------------------------------------------
  118. #if SENSOR_SUPPORT
  119. PROGMEM const char espurna_sensors[] =
  120. #if AM2320_SUPPORT
  121. "AM2320_I2C "
  122. #endif
  123. #if ANALOG_SUPPORT
  124. "ANALOG "
  125. #endif
  126. #if BH1750_SUPPORT
  127. "BH1750 "
  128. #endif
  129. #if BMX280_SUPPORT
  130. "BMX280 "
  131. #endif
  132. #if CSE7766_SUPPORT
  133. "CSE7766 "
  134. #endif
  135. #if DALLAS_SUPPORT
  136. "DALLAS "
  137. #endif
  138. #if DHT_SUPPORT
  139. "DHTXX "
  140. #endif
  141. #if DIGITAL_SUPPORT
  142. "DIGITAL "
  143. #endif
  144. #if ECH1560_SUPPORT
  145. "ECH1560 "
  146. #endif
  147. #if EMON_ADC121_SUPPORT
  148. "EMON_ADC121 "
  149. #endif
  150. #if EMON_ADS1X15_SUPPORT
  151. "EMON_ADX1X15 "
  152. #endif
  153. #if EMON_ANALOG_SUPPORT
  154. "EMON_ANALOG "
  155. #endif
  156. #if EVENTS_SUPPORT
  157. "EVENTS "
  158. #endif
  159. #if GEIGER_SUPPORT
  160. "GEIGER "
  161. #endif
  162. #if GUVAS12SD_SUPPORT
  163. "GUVAS12SD "
  164. #endif
  165. #if SONAR_SUPPORT
  166. "SONAR "
  167. #endif
  168. #if HLW8012_SUPPORT
  169. "HLW8012 "
  170. #endif
  171. #if MHZ19_SUPPORT
  172. "MHZ19 "
  173. #endif
  174. #if NTC_SUPPORT
  175. "NTC "
  176. #endif
  177. #if PMSX003_SUPPORT
  178. "PMSX003 "
  179. #endif
  180. #if PZEM004T_SUPPORT
  181. "PZEM004T "
  182. #endif
  183. #if SENSEAIR_SUPPORT
  184. "SENSEAIR "
  185. #endif
  186. #if SHT3X_I2C_SUPPORT
  187. "SHT3X_I2C "
  188. #endif
  189. #if SI7021_SUPPORT
  190. "SI7021 "
  191. #endif
  192. #if TMP3X_SUPPORT
  193. "TMP3X "
  194. #endif
  195. #if V9261F_SUPPORT
  196. "V9261F "
  197. #endif
  198. "";
  199. PROGMEM const unsigned char magnitude_decimals[] = {
  200. 0,
  201. 1, 0, 2, // THP
  202. 3, 0, 0, 0, 0, 0, 0, 0, // Power decimals
  203. 0, 0, 0, // analog, digital, event
  204. 0, 0, 0, // PM
  205. 0, 0, 3, 3, 0,
  206. 4, 4, // Geiger Counter decimals
  207. 0
  208. };
  209. PROGMEM const char magnitude_unknown_topic[] = "unknown";
  210. PROGMEM const char magnitude_temperature_topic[] = "temperature";
  211. PROGMEM const char magnitude_humidity_topic[] = "humidity";
  212. PROGMEM const char magnitude_pressure_topic[] = "pressure";
  213. PROGMEM const char magnitude_current_topic[] = "current";
  214. PROGMEM const char magnitude_voltage_topic[] = "voltage";
  215. PROGMEM const char magnitude_active_power_topic[] = "power";
  216. PROGMEM const char magnitude_apparent_power_topic[] = "apparent";
  217. PROGMEM const char magnitude_reactive_power_topic[] = "reactive";
  218. PROGMEM const char magnitude_power_factor_topic[] = "factor";
  219. PROGMEM const char magnitude_energy_topic[] = "energy";
  220. PROGMEM const char magnitude_energy_delta_topic[] = "energy_delta";
  221. PROGMEM const char magnitude_analog_topic[] = "analog";
  222. PROGMEM const char magnitude_digital_topic[] = "digital";
  223. PROGMEM const char magnitude_event_topic[] = "event";
  224. PROGMEM const char magnitude_pm1dot0_topic[] = "pm1dot0";
  225. PROGMEM const char magnitude_pm2dot5_topic[] = "pm2dot5";
  226. PROGMEM const char magnitude_pm10_topic[] = "pm10";
  227. PROGMEM const char magnitude_co2_topic[] = "co2";
  228. PROGMEM const char magnitude_lux_topic[] = "lux";
  229. PROGMEM const char magnitude_uv_topic[] = "uv";
  230. PROGMEM const char magnitude_distance_topic[] = "distance";
  231. PROGMEM const char magnitude_hcho_topic[] = "hcho";
  232. PROGMEM const char magnitude_geiger_cpm_topic[] = "ldr_cpm"; // local dose rate [Counts per minute]
  233. PROGMEM const char magnitude_geiger_sv_topic[] = "ldr_uSvh"; // local dose rate [µSievert per hour]
  234. PROGMEM const char magnitude_count_topic[] = "count";
  235. PROGMEM const char* const magnitude_topics[] = {
  236. magnitude_unknown_topic, magnitude_temperature_topic, magnitude_humidity_topic,
  237. magnitude_pressure_topic, magnitude_current_topic, magnitude_voltage_topic,
  238. magnitude_active_power_topic, magnitude_apparent_power_topic, magnitude_reactive_power_topic,
  239. magnitude_power_factor_topic, magnitude_energy_topic, magnitude_energy_delta_topic,
  240. magnitude_analog_topic, magnitude_digital_topic, magnitude_event_topic,
  241. magnitude_pm1dot0_topic, magnitude_pm2dot5_topic, magnitude_pm10_topic,
  242. magnitude_co2_topic, magnitude_lux_topic, magnitude_uv_topic,
  243. magnitude_distance_topic, magnitude_hcho_topic,
  244. magnitude_geiger_cpm_topic, magnitude_geiger_sv_topic,
  245. magnitude_count_topic
  246. };
  247. PROGMEM const char magnitude_empty[] = "";
  248. PROGMEM const char magnitude_celsius[] = "°C";
  249. PROGMEM const char magnitude_fahrenheit[] = "°F";
  250. PROGMEM const char magnitude_percentage[] = "%";
  251. PROGMEM const char magnitude_hectopascals[] = "hPa";
  252. PROGMEM const char magnitude_amperes[] = "A";
  253. PROGMEM const char magnitude_volts[] = "V";
  254. PROGMEM const char magnitude_watts[] = "W";
  255. PROGMEM const char magnitude_kw[] = "kW";
  256. PROGMEM const char magnitude_joules[] = "J";
  257. PROGMEM const char magnitude_kwh[] = "kWh";
  258. PROGMEM const char magnitude_ugm3[] = "µg/m³";
  259. PROGMEM const char magnitude_ppm[] = "ppm";
  260. PROGMEM const char magnitude_lux[] = "lux";
  261. PROGMEM const char magnitude_uv[] = "uv";
  262. PROGMEM const char magnitude_distance[] = "m";
  263. PROGMEM const char magnitude_mgm3[] = "mg/m³";
  264. PROGMEM const char magnitude_geiger_cpm[] = "cpm"; // Counts per Minute: Unit of local dose rate (Geiger counting)
  265. PROGMEM const char magnitude_geiger_sv[] = "µSv/h"; // µSievert per hour: 2nd unit of local dose rate (Geiger counting)
  266. PROGMEM const char* const magnitude_units[] = {
  267. magnitude_empty, magnitude_celsius, magnitude_percentage,
  268. magnitude_hectopascals, magnitude_amperes, magnitude_volts,
  269. magnitude_watts, magnitude_watts, magnitude_watts,
  270. magnitude_percentage, magnitude_joules, magnitude_joules,
  271. magnitude_empty, magnitude_empty, magnitude_empty,
  272. magnitude_ugm3, magnitude_ugm3, magnitude_ugm3,
  273. magnitude_ppm, magnitude_lux, magnitude_uv,
  274. magnitude_distance, magnitude_mgm3,
  275. magnitude_geiger_cpm, magnitude_geiger_sv, // Geiger counter units
  276. magnitude_empty
  277. };
  278. #endif