From 8992ed8478170f3b8d289ff413125f1bb02d4d2d Mon Sep 17 00:00:00 2001 From: Christian Zufferey Date: Wed, 5 Dec 2018 21:42:06 +0100 Subject: [PATCH] =?UTF-8?q?Corrig=C3=A9=20le=20bug=20qui=20ne=20se=20confi?= =?UTF-8?q?gurait=20pas=20le=20WIFI=20au=20moment=20du=20boot=20*=20arr?= =?UTF-8?q?=C3=AAte=20aussi=20le=20mode=20AP=20WIFI=20qui=20ne=20sert=20?= =?UTF-8?q?=C3=A0=20rien=20et=20qui=20consomme=20trop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LED_RGB_WS2812/chapeau_led/boot.lua | 9 ++++----- .../chapeau_led/{goodies => }/wifi_ap_stop.lua | 0 2 files changed, 4 insertions(+), 5 deletions(-) rename LED_RGB_WS2812/chapeau_led/{goodies => }/wifi_ap_stop.lua (100%) diff --git a/LED_RGB_WS2812/chapeau_led/boot.lua b/LED_RGB_WS2812/chapeau_led/boot.lua index 7a16584..aacafa1 100644 --- a/LED_RGB_WS2812/chapeau_led/boot.lua +++ b/LED_RGB_WS2812/chapeau_led/boot.lua @@ -1,6 +1,6 @@ -- Scripts à charger après le boot pour démarrer son appli -print("\n boot.lua zf181205.2116 \n") +print("\n boot.lua zf181205.2126 \n") function heartbeat() f= "flash_led_xfois.lua" if file.exists(f) then dofile(f) end @@ -11,11 +11,10 @@ function heartbeat() end) end ---f= "wifi_ap_stop.lua" if file.exists(f) then dofile(f) end ---f= "wifi_cli_conf.lua" if file.exists(f) then dofile(f) end ---f= "wifi_cli_start.lua" if file.exists(f) then dofile(f) end ---f= "telnet_srv.lua" if file.exists(f) then dofile(f) end +f= "wifi_ap_stop.lua" if file.exists(f) then dofile(f) end +f= "wifi_cli_conf.lua" if file.exists(f) then dofile(f) end f= "wifi_cli_start.lua" if file.exists(f) then dofile(f) end +--f= "telnet_srv.lua" if file.exists(f) then dofile(f) end f= "web_ide2.lua" if file.exists(f) then dofile(f) end f= "az_init_led.lua" if file.exists(f) then dofile(f) end f= "webleds.lua" if file.exists(f) then dofile(f) end diff --git a/LED_RGB_WS2812/chapeau_led/goodies/wifi_ap_stop.lua b/LED_RGB_WS2812/chapeau_led/wifi_ap_stop.lua similarity index 100% rename from LED_RGB_WS2812/chapeau_led/goodies/wifi_ap_stop.lua rename to LED_RGB_WS2812/chapeau_led/wifi_ap_stop.lua