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.

551 lines
18 KiB

  1. // -----------------------------------------------------------------------------
  2. // Configuration HELP
  3. // -----------------------------------------------------------------------------
  4. //
  5. // MANUFACTURER: Name of the manufacturer of the board ("string")
  6. // DEVICE: Name of the device ("string")
  7. // BUTTON#_PIN: GPIO for the n-th button (1-based, up to 4 buttons)
  8. // BUTTON#_RELAY: Relay number that will be bind to the n-th button (1-based)
  9. // BUTTON#_MODE: A mask of options (BUTTON_PUSHBUTTON and BUTTON_SWITCH cannot be together)
  10. // - BUTTON_PUSHBUTTON: button event is fired when released
  11. // - BUTTON_SWITCH: button event is fired when pressed or released
  12. // - BUTTON_DEFAULT_HIGH: there is a pull up in place
  13. // - BUTTON_SET_PULLUP: set pullup by software
  14. // RELAY#_PIN: GPIO for the n-th relay (1-based, up to 4 relays)
  15. // RELAY#_PIN_INVERSE: Relay has inversed logic (closed or ON when pulled down)
  16. // RELAY#_LED: LED number that will be bind to the n-th relay (1-based)
  17. // LED#_PIN: GPIO for the n-th LED (1-based, up to 4 LEDs)
  18. // LED#_PIN_INVERSE: LED has inversed logic (lit when pulled down)
  19. // WIFI_LED: LED number that will used for WIFI notifications (1-based, defaults to 1)
  20. // -----------------------------------------------------------------------------
  21. // Development boards
  22. // -----------------------------------------------------------------------------
  23. #if defined(NODEMCUV2)
  24. #define MANUFACTURER "NODEMCU"
  25. #define DEVICE "LOLIN"
  26. #define BUTTON1_PIN 0
  27. #define BUTTON1_RELAY 1
  28. #define BUTTON1_LNGCLICK BUTTON_MODE_PULSE
  29. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  30. #define RELAY1_PIN 12
  31. #define RELAY1_PIN_INVERSE 0
  32. #define LED1_PIN 2
  33. #define LED1_PIN_INVERSE 1
  34. #elif defined(D1_RELAYSHIELD)
  35. #define MANUFACTURER "WEMOS"
  36. #define DEVICE "D1_MINI"
  37. #define RELAY1_PIN 5
  38. #define RELAY1_PIN_INVERSE 0
  39. #define LED1_PIN 2
  40. #define LED1_PIN_INVERSE 1
  41. // -----------------------------------------------------------------------------
  42. // ESPurna
  43. // -----------------------------------------------------------------------------
  44. #elif defined(ESPURNA_H)
  45. #define MANUFACTURER "TINKERMAN"
  46. #define DEVICE "ESPURNA_H"
  47. #define RELAY1_PIN 12
  48. #define RELAY1_PIN_INVERSE 1
  49. #define LED1_PIN 5
  50. #define LED1_PIN_INVERSE 0
  51. #define BUTTON1_PIN 4
  52. #define BUTTON1_RELAY 1
  53. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  54. #define ENABLE_HLW8012 1
  55. // -----------------------------------------------------------------------------
  56. // Itead Studio boards
  57. // -----------------------------------------------------------------------------
  58. #elif defined(SONOFF)
  59. #define MANUFACTURER "ITEAD"
  60. #define DEVICE "SONOFF"
  61. #define BUTTON1_PIN 0
  62. #define BUTTON1_RELAY 1
  63. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  64. #define RELAY1_PIN 12
  65. #define RELAY1_PIN_INVERSE 0
  66. #define LED1_PIN 13
  67. #define LED1_PIN_INVERSE 1
  68. #elif defined(SONOFF_TH)
  69. #define MANUFACTURER "ITEAD"
  70. #define DEVICE "SONOFF_TH"
  71. #define BUTTON1_PIN 0
  72. #define BUTTON1_RELAY 1
  73. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  74. #define RELAY1_PIN 12
  75. #define RELAY1_PIN_INVERSE 0
  76. #define LED1_PIN 13
  77. #define LED1_PIN_INVERSE 1
  78. #elif defined(SONOFF_SV)
  79. #define MANUFACTURER "ITEAD"
  80. #define DEVICE "SONOFF_SV"
  81. #define BUTTON1_PIN 0
  82. #define BUTTON1_RELAY 1
  83. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  84. #define RELAY1_PIN 12
  85. #define RELAY1_PIN_INVERSE 0
  86. #define LED1_PIN 13
  87. #define LED1_PIN_INVERSE 1
  88. #elif defined(SLAMPHER)
  89. #define MANUFACTURER "ITEAD"
  90. #define DEVICE "SLAMPHER"
  91. #define BUTTON1_PIN 0
  92. #define BUTTON1_RELAY 1
  93. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  94. #define RELAY1_PIN 12
  95. #define RELAY1_PIN_INVERSE 0
  96. #define LED1_PIN 13
  97. #define LED1_PIN_INVERSE 1
  98. #elif defined(S20)
  99. #define MANUFACTURER "ITEAD"
  100. #define DEVICE "S20"
  101. #define BUTTON1_PIN 0
  102. #define BUTTON1_RELAY 1
  103. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  104. #define RELAY1_PIN 12
  105. #define RELAY1_PIN_INVERSE 0
  106. #define LED1_PIN 13
  107. #define LED1_PIN_INVERSE 1
  108. #elif defined(SONOFF_TOUCH)
  109. #define MANUFACTURER "ITEAD"
  110. #define DEVICE "SONOFF_TOUCH"
  111. #define BUTTON1_PIN 0
  112. #define BUTTON1_RELAY 1
  113. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  114. #define RELAY1_PIN 12
  115. #define RELAY1_PIN_INVERSE 0
  116. #define LED1_PIN 13
  117. #define LED1_PIN_INVERSE 1
  118. #elif defined(SONOFF_POW)
  119. #define MANUFACTURER "ITEAD"
  120. #define DEVICE "SONOFF_POW"
  121. #define BUTTON1_PIN 0
  122. #define BUTTON1_RELAY 1
  123. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  124. #define RELAY1_PIN 12
  125. #define RELAY1_PIN_INVERSE 0
  126. #define LED1_PIN 15
  127. #define LED1_PIN_INVERSE 0
  128. #define ENABLE_HLW8012 1
  129. #elif defined(SONOFF_DUAL)
  130. #define MANUFACTURER "ITEAD"
  131. #define DEVICE "SONOFF_DUAL"
  132. #define BUTTON3_RELAY 1
  133. #define LED1_PIN 13
  134. #define LED1_PIN_INVERSE 1
  135. #undef SERIAL_BAUDRATE
  136. #define SERIAL_BAUDRATE 19230
  137. #undef RELAY_PROVIDER
  138. #define RELAY_PROVIDER RELAY_PROVIDER_DUAL
  139. #elif defined(SONOFF_4CH)
  140. #define MANUFACTURER "ITEAD"
  141. #define DEVICE "SONOFF_4CH"
  142. #define BUTTON1_PIN 0
  143. #define BUTTON1_RELAY 1
  144. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  145. #define BUTTON2_PIN 9
  146. #define BUTTON2_RELAY 2
  147. #define BUTTON2_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  148. #define BUTTON3_PIN 10
  149. #define BUTTON3_RELAY 3
  150. #define BUTTON3_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  151. #define BUTTON4_PIN 14
  152. #define BUTTON4_RELAY 4
  153. #define BUTTON4_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  154. #define RELAY1_PIN 12
  155. #define RELAY1_PIN_INVERSE 0
  156. #define RELAY2_PIN 5
  157. #define RELAY2_PIN_INVERSE 0
  158. #define RELAY3_PIN 4
  159. #define RELAY3_PIN_INVERSE 0
  160. #define RELAY4_PIN 15
  161. #define RELAY4_PIN_INVERSE 0
  162. #define LED1_PIN 13
  163. #define LED1_PIN_INVERSE 1
  164. #elif defined(ITEAD_1CH_INCHING)
  165. // The inching functionality is managed by a misterious IC in the board.
  166. // You cannot control the inching button and functionality from the ESP8266
  167. // Besides, enabling the inching functionality using the hardware button
  168. // will result in the relay switching on and off continuously.
  169. // Fortunately the unkown IC keeps memory of the hardware inching status
  170. // so you can just disable it and forget. The inching LED must be lit.
  171. // You can still use the pulse options from the web interface
  172. // without problem.
  173. #define MANUFACTURER "ITEAD"
  174. #define DEVICE "1CH_INCHING"
  175. #define BUTTON1_PIN 0
  176. #define BUTTON1_RELAY 1
  177. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  178. #define RELAY1_PIN 12
  179. #define RELAY1_PIN_INVERSE 0
  180. #define LED1_PIN 13
  181. #define LED1_PIN_INVERSE 1
  182. #elif defined(ITEAD_MOTOR)
  183. #define MANUFACTURER "ITEAD"
  184. #define DEVICE "MOTOR"
  185. #define BUTTON1_PIN 0
  186. #define BUTTON1_RELAY 1
  187. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  188. #define RELAY1_PIN 12
  189. #define RELAY1_PIN_INVERSE 0
  190. #define LED1_PIN 13
  191. #define LED1_PIN_INVERSE 1
  192. #elif defined(ITEAD_BNSZ01)
  193. #define MANUFACTURER "ITEAD"
  194. #define DEVICE "BN-SZ01"
  195. #define LED1_PIN 13
  196. #define LED1_PIN_INVERSE 1
  197. #define RELAY_PROVIDER RELAY_PROVIDER_LIGHT
  198. #define LIGHT_PROVIDER LIGHT_PROVIDER_DIMMER
  199. #define LIGHT_CH1_PIN 12
  200. #define LIGHT_CH1_INVERSE 0
  201. // -----------------------------------------------------------------------------
  202. // Electrodragon boards
  203. // -----------------------------------------------------------------------------
  204. #elif defined(ESP_RELAY_BOARD)
  205. #define MANUFACTURER "ELECTRODRAGON"
  206. #define DEVICE "ESP_RELAY_BOARD"
  207. #define BUTTON1_PIN 0
  208. #define BUTTON1_RELAY 1
  209. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  210. #define BUTTON2_PIN 2
  211. #define BUTTON2_RELAY 2
  212. #define BUTTON2_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  213. #define RELAY1_PIN 12
  214. #define RELAY1_PIN_INVERSE 0
  215. #define RELAY2_PIN 13
  216. #define RELAY2_PIN_INVERSE 0
  217. #define LED1_PIN 16
  218. #define LED1_PIN_INVERSE 0
  219. // -----------------------------------------------------------------------------
  220. // WorkChoice ecoPlug
  221. // -----------------------------------------------------------------------------
  222. #elif defined(ECOPLUG)
  223. #define MANUFACTURER "WORKCHOICE"
  224. #define DEVICE "ECOPLUG"
  225. #define BUTTON1_PIN 13
  226. #define BUTTON1_RELAY 1
  227. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  228. #define RELAY1_PIN 15
  229. #define RELAY1_PIN_INVERSE 0
  230. #define LED1_PIN 2
  231. #define LED1_PIN_INVERSE 0
  232. // -----------------------------------------------------------------------------
  233. // AI Thinker
  234. // -----------------------------------------------------------------------------
  235. #elif defined(AI_LIGHT)
  236. #define MANUFACTURER "AI_THINKER"
  237. #define DEVICE "AI_LIGHT"
  238. #define RELAY_PROVIDER RELAY_PROVIDER_LIGHT
  239. #define LIGHT_PROVIDER LIGHT_PROVIDER_MY9192
  240. #define MY9291_DI_PIN 13
  241. #define MY9291_DCKI_PIN 15
  242. #define MY9291_COMMAND MY9291_COMMAND_DEFAULT
  243. // -----------------------------------------------------------------------------
  244. // LED Controller
  245. // -----------------------------------------------------------------------------
  246. #elif defined(LED_CONTROLLER)
  247. #define MANUFACTURER "MAGIC_HOME"
  248. #define DEVICE "LED_CONTROLLER"
  249. #define LED1_PIN 2
  250. #define LED1_PIN_INVERSE 1
  251. #define RELAY_PROVIDER RELAY_PROVIDER_LIGHT
  252. #define LIGHT_PROVIDER LIGHT_PROVIDER_DIMMER
  253. #define LIGHT_CH1_PIN 14 // RED
  254. #define LIGHT_CH2_PIN 5 // GREEN
  255. #define LIGHT_CH3_PIN 12 // BLUE
  256. #define LIGHT_CH4_PIN 13 // WHITE
  257. #define LIGHT_CH1_INVERSE 0
  258. #define LIGHT_CH2_INVERSE 0
  259. #define LIGHT_CH3_INVERSE 0
  260. #define LIGHT_CH4_INVERSE 0
  261. // -----------------------------------------------------------------------------
  262. // HUACANXING H801
  263. // -----------------------------------------------------------------------------
  264. #elif defined(H801_LED_CONTROLLER)
  265. #define MANUFACTURER "HUACANXING"
  266. #define DEVICE "H801"
  267. #define LED1_PIN 5
  268. #define LED1_PIN_INVERSE 1
  269. #define RELAY_PROVIDER RELAY_PROVIDER_LIGHT
  270. #define LIGHT_PROVIDER LIGHT_PROVIDER_DIMMER
  271. #define LIGHT_CH1_PIN 15 // RED
  272. #define LIGHT_CH2_PIN 13 // GREEN
  273. #define LIGHT_CH3_PIN 12 // BLUE
  274. #define LIGHT_CH4_PIN 14 // WHITE1
  275. #define LIGHT_CH5_PIN 4 // WHITE2
  276. #define LIGHT_CH1_INVERSE 0
  277. #define LIGHT_CH2_INVERSE 0
  278. #define LIGHT_CH3_INVERSE 0
  279. #define LIGHT_CH4_INVERSE 0
  280. #define LIGHT_CH5_INVERSE 0
  281. // -----------------------------------------------------------------------------
  282. // Jan Goedeke Wifi Relay
  283. // https://github.com/JanGoe/esp8266-wifi-relay
  284. // -----------------------------------------------------------------------------
  285. #elif defined(WIFI_RELAY_NC)
  286. #define MANUFACTURER "JAN_GOEDEKE"
  287. #define DEVICE "WIFI_RELAY_NC"
  288. #define BUTTON1_PIN 12
  289. #define BUTTON1_RELAY 1
  290. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  291. #define BUTTON2_PIN 13
  292. #define BUTTON2_RELAY 2
  293. #define BUTTON2_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  294. #define RELAY1_PIN 2
  295. #define RELAY1_PIN_INVERSE 1
  296. #define RELAY2_PIN 14
  297. #define RELAY2_PIN_INVERSE 1
  298. #elif defined(WIFI_RELAY_NO)
  299. #define MANUFACTURER "JAN_GOEDEKE"
  300. #define DEVICE "WIFI_RELAY_NO"
  301. #define BUTTON1_PIN 12
  302. #define BUTTON1_RELAY 1
  303. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  304. #define BUTTON2_PIN 13
  305. #define BUTTON2_RELAY 2
  306. #define BUTTON2_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  307. #define RELAY1_PIN 2
  308. #define RELAY1_PIN_INVERSE 0
  309. #define RELAY2_PIN 14
  310. #define RELAY2_PIN_INVERSE 0
  311. // -----------------------------------------------------------------------------
  312. // Jorge García Wifi+Relays Board Kit
  313. // https://www.tindie.com/products/jorgegarciadev/wifi--relays-board-kit
  314. // https://github.com/jorgegarciadev/wifikit
  315. // -----------------------------------------------------------------------------
  316. #elif defined(WIFI_RELAYS_BOARD_KIT)
  317. #define MANUFACTURER "JORGE_GARCIA"
  318. #define DEVICE "WIFI_RELAYS_BOARD_KIT"
  319. #define RELAY1_PIN 0
  320. #define RELAY1_PIN_INVERSE 1
  321. #define RELAY2_PIN 2
  322. #define RELAY2_PIN_INVERSE 1
  323. // -----------------------------------------------------------------------------
  324. // WiFi MQTT Relay / Thermostat
  325. // -----------------------------------------------------------------------------
  326. #elif defined(MQTT_RELAY)
  327. #define MANUFACTURER "OPENENERGYMONITOR"
  328. #define DEVICE "MQTT_RELAY"
  329. #define BUTTON1_PIN 0
  330. #define BUTTON1_RELAY 1
  331. #define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
  332. #define RELAY1_PIN 12
  333. #define RELAY1_PIN_INVERSE 0
  334. #define LED1_PIN 16
  335. #define LED1_PIN_INVERSE 0
  336. // -----------------------------------------------------------------------------
  337. // Unknown hardware
  338. // -----------------------------------------------------------------------------
  339. #else
  340. #error "UNSUPPORTED HARDWARE!"
  341. #endif
  342. // -----------------------------------------------------------------------------
  343. // Default values
  344. // -----------------------------------------------------------------------------
  345. #ifndef BUTTON1_PRESS
  346. #define BUTTON1_PRESS BUTTON_MODE_NONE
  347. #endif
  348. #ifndef BUTTON2_PRESS
  349. #define BUTTON2_PRESS BUTTON_MODE_NONE
  350. #endif
  351. #ifndef BUTTON3_PRESS
  352. #define BUTTON3_PRESS BUTTON_MODE_NONE
  353. #endif
  354. #ifndef BUTTON4_PRESS
  355. #define BUTTON4_PRESS BUTTON_MODE_NONE
  356. #endif
  357. #ifndef BUTTON1_CLICK
  358. #define BUTTON1_CLICK BUTTON_MODE_TOGGLE
  359. #endif
  360. #ifndef BUTTON2_CLICK
  361. #define BUTTON2_CLICK BUTTON_MODE_TOGGLE
  362. #endif
  363. #ifndef BUTTON3_CLICK
  364. #define BUTTON3_CLICK BUTTON_MODE_TOGGLE
  365. #endif
  366. #ifndef BUTTON4_CLICK
  367. #define BUTTON4_CLICK BUTTON_MODE_TOGGLE
  368. #endif
  369. #ifndef BUTTON1_DBLCLICK
  370. #define BUTTON1_DBLCLICK BUTTON_MODE_AP
  371. #endif
  372. #ifndef BUTTON2_DBLCLICK
  373. #define BUTTON2_DBLCLICK BUTTON_MODE_NONE
  374. #endif
  375. #ifndef BUTTON3_DBLCLICK
  376. #define BUTTON3_DBLCLICK BUTTON_MODE_NONE
  377. #endif
  378. #ifndef BUTTON4_DBLCLICK
  379. #define BUTTON4_DBLCLICK BUTTON_MODE_NONE
  380. #endif
  381. #ifndef BUTTON1_LNGCLICK
  382. #define BUTTON1_LNGCLICK BUTTON_MODE_RESET
  383. #endif
  384. #ifndef BUTTON2_LNGCLICK
  385. #define BUTTON2_LNGCLICK BUTTON_MODE_NONE
  386. #endif
  387. #ifndef BUTTON3_LNGCLICK
  388. #define BUTTON3_LNGCLICK BUTTON_MODE_NONE
  389. #endif
  390. #ifndef BUTTON4_LNGCLICK
  391. #define BUTTON4_LNGCLICK BUTTON_MODE_NONE
  392. #endif
  393. #ifndef BUTTON1_LNGLNGCLICK
  394. #define BUTTON1_LNGLNGCLICK BUTTON_MODE_FACTORY
  395. #endif
  396. #ifndef BUTTON2_LNGLNGCLICK
  397. #define BUTTON2_LNGLNGCLICK BUTTON_MODE_NONE
  398. #endif
  399. #ifndef BUTTON3_LNGLNGCLICK
  400. #define BUTTON3_LNGLNGCLICK BUTTON_MODE_NONE
  401. #endif
  402. #ifndef BUTTON4_LNGLNGCLICK
  403. #define BUTTON4_LNGLNGCLICK BUTTON_MODE_NONE
  404. #endif
  405. #ifndef BUTTON1_RELAY
  406. #define BUTTON1_RELAY 0
  407. #endif
  408. #ifndef BUTTON2_RELAY
  409. #define BUTTON2_RELAY 0
  410. #endif
  411. #ifndef BUTTON3_RELAY
  412. #define BUTTON3_RELAY 0
  413. #endif
  414. #ifndef BUTTON4_RELAY
  415. #define BUTTON4_RELAY 0
  416. #endif
  417. #ifndef RELAY1_DELAY_ON
  418. #define RELAY1_DELAY_ON 0
  419. #endif
  420. #ifndef RELAY2_DELAY_ON
  421. #define RELAY2_DELAY_ON 0
  422. #endif
  423. #ifndef RELAY3_DELAY_ON
  424. #define RELAY3_DELAY_ON 0
  425. #endif
  426. #ifndef RELAY4_DELAY_ON
  427. #define RELAY4_DELAY_ON 0
  428. #endif
  429. #ifndef RELAY1_DELAY_OFF
  430. #define RELAY1_DELAY_OFF 0
  431. #endif
  432. #ifndef RELAY2_DELAY_OFF
  433. #define RELAY2_DELAY_OFF 0
  434. #endif
  435. #ifndef RELAY3_DELAY_OFF
  436. #define RELAY3_DELAY_OFF 0
  437. #endif
  438. #ifndef RELAY4_DELAY_OFF
  439. #define RELAY4_DELAY_OFF 0
  440. #endif
  441. #ifndef RELAY1_LED
  442. #define RELAY1_LED 0
  443. #endif
  444. #ifndef RELAY2_LED
  445. #define RELAY2_LED 0
  446. #endif
  447. #ifndef RELAY3_LED
  448. #define RELAY3_LED 0
  449. #endif
  450. #ifndef RELAY4_LED
  451. #define RELAY4_LED 0
  452. #endif
  453. #ifndef WIFI_LED
  454. #define WIFI_LED 1
  455. #endif
  456. // Needed for ESP8285 boards under Windows using PlatformIO (?)
  457. #ifndef BUTTON_PUSHBUTTON
  458. #define BUTTON_PUSHBUTTON 0
  459. #define BUTTON_SWITCH 1
  460. #define BUTTON_DEFAULT_HIGH 2
  461. #define BUTTON_SET_PULLUP 4
  462. #endif
  463. // Relay providers
  464. #ifndef RELAY_PROVIDER
  465. #define RELAY_PROVIDER RELAY_PROVIDER_RELAY
  466. #endif
  467. // Light provider
  468. #ifndef LIGHT_PROVIDER
  469. #define LIGHT_PROVIDER LIGHT_PROVIDER_NONE
  470. #endif