码迷,mamicode.com
首页 > 编程语言 > 详细

esp8266 终于装上固件了!半个月了!开始进军简单粗暴的lua语言!!

时间:2017-10-27 21:36:30      阅读:1498      评论:0      收藏:0      [点我收藏+]

标签:[]   alarm   started   ted   tip   rem   log   资料   wifi   

第一次测试2017-10-2720:33:33

感谢这位大神的汇总资料太详细了

http://www.cnblogs.com/yangfengwu/p/7524326.html

 

这是调试输出的内容!
1
ESP8266 Started--pengwenzheng--2017.10.27--first test 2 > Connecting..... 3 Connected,IP is 192.168.15.168 4 file.remove("init.lua"); 5 > file.open("init.lua","w+"); 6 > w = file.writeline 7 > w([==[]==]); 8 > w([==[print("\n")]==]); 9 > w([==[print("ESP8266 Started@pengwenzheng##2017.10.27##first test")]==]); 10 > w([==[dofile("wifi.lua")]==]); 11 > file.close(); 12 > dofile("init.lua"); 13 14 15 ESP8266 Started@pengwenzheng##2017.10.27##first test 16 > Connecting..... 17 Connecting..... 18 Connected,IP is 192.168.15.168
################################################
这是lua脚本语言代码

wifi.setmode(wifi.STATION)
wifi.sta.config("maker_space","chuangke666")
wifi.sta.connect()
tmr.alarm(1,1000,1,function()
if wifi.sta.getip() == nil then
print("Connecting.....")
else
tmr.stop(1)
print("Connected,IP is "..wifi.sta.getip())
end
end)

 

 

esp8266 终于装上固件了!半个月了!开始进军简单粗暴的lua语言!!

标签:[]   alarm   started   ted   tip   rem   log   资料   wifi   

原文地址:http://www.cnblogs.com/pengwenzheng/p/7745092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!