Print WLAN, when searching wifi
This commit is contained in:
		
							
								
								
									
										6
									
								
								main.lua
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								main.lua
									
									
									
									
									
								
							| @@ -88,7 +88,11 @@ function normalOperation() | |||||||
|       if wifi.sta.status() ~= 5 then |       if wifi.sta.status() ~= 5 then | ||||||
|          print(connect_counter ..  "/60 Connecting to AP...") |          print(connect_counter ..  "/60 Connecting to AP...") | ||||||
|          if (connect_counter % 2 == 0) then |          if (connect_counter % 2 == 0) then | ||||||
|             ws2812.write(string.char((connect_counter % 6)*20,(connect_counter % 5)*20,(connect_counter % 3)*20):rep(114)) |             local wlanColor=string.char((connect_counter % 6)*20,(connect_counter % 5)*20,(connect_counter % 3)*20) | ||||||
|  |             local space=string.char(0,0,0) | ||||||
|  |             local buf=space:rep(6) .. wlanColor .. space:rep(4) | ||||||
|  |             buf= buf .. space:rep(3) .. wlanColor:rep(3) | ||||||
|  |             ws2812.write(buf) | ||||||
|          else |          else | ||||||
|            ws2812.write(string.char(0,0,0):rep(114)) |            ws2812.write(string.char(0,0,0):rep(114)) | ||||||
|          end |          end | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user