nodemcu-firmware/README.md

292 lines
6.6 KiB
Markdown
Raw Normal View History

2014-10-13 20:24:52 +08:00
nodeMcu API说明
=======
version 0.1 2014-10-11
flash 错误
----
注意:有些模块在烧写之后启动,串口输出 ERROR in flash_read: r=。。。
这是因为模块原来的flash内部没有擦除。
2014-10-21 21:20:02 +08:00
可使用blank.bin(4k)
2014-10-23 01:06:55 +08:00
重复烧入起始地址0x47000, 0x48000, 0x49000, 0x4a000扇区.
2014-10-21 21:20:02 +08:00
或者生成一个512k大小的blank512k.bin, 内容为全0xFF从0x00000开始烧入。
烧入之后可以正常运行。
2014-10-13 20:24:52 +08:00
概述
------
2014-10-21 21:20:02 +08:00
支持一键配置
2014-10-13 21:17:02 +08:00
2014-10-21 21:20:02 +08:00
基于Lua 5.1.4使用者需了解最简单的Lua语法。
2014-10-13 20:24:52 +08:00
2014-10-21 21:20:02 +08:00
采用事件驱动的编程模型。
2014-10-13 20:24:52 +08:00
2014-10-21 21:20:02 +08:00
内置 timerpwmi2cnetgpiowifi module。
2014-10-13 20:24:52 +08:00
2014-10-21 21:20:02 +08:00
对模块的引脚进行编号gpioi2cpwm等模块需要使用引脚编号进行索引。
2014-10-13 20:24:52 +08:00
2014-10-13 20:44:26 +08:00
###目前的编号对应表格:
2014-10-13 20:24:52 +08:00
2014-10-13 20:39:28 +08:00
IO索引编号 ESP8266实际IO IO索引编号 ESP8266实际IO
0 GPIO12 8 GPIO0
1 GPIO13 9 GPIO2
2 GPIO14 10 GPIO4
3 GPIO15 11 GPIO5
4 GPIO3
5 GPIO1
6 GPIO9
7 GPIO10
2014-10-13 20:24:52 +08:00
2014-10-13 20:44:26 +08:00
###串口波特率
2014-10-16 22:51:42 +08:00
9600
2014-10-13 20:24:52 +08:00
###固件烧写地址:
2014-10-13 20:39:28 +08:00
eagle.app.v6.flash.bin0x00000
eagle.app.v6.irom0text.bin0x10000
esp_init_data_default.bin0x7c000
blank.bin0x7e000
2014-10-13 20:24:52 +08:00
2014-10-21 18:59:28 +08:00
第一次使用建议将blank512k.bin烧写在地址0x00000
2014-10-13 20:24:52 +08:00
node module
------
node.restart()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:重新启动
2014-10-13 20:24:52 +08:00
node.dsleep( us )
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:深度睡眠 us 微秒,时间到之后将重新启动
us时间单位微秒
2014-10-13 20:24:52 +08:00
node.chipid()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述返回芯片id
返回number
2014-10-13 20:24:52 +08:00
node.heap()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:返回可用内存 in bytes
返回系统heap剩余
2014-10-13 20:24:52 +08:00
node.format()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述格式化用户flash区
2014-10-13 20:24:52 +08:00
node.startlog( filename, noparse)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:开始记录输入
filenamelog所保存的文件名不支持目录
noparse1表示lua虚拟机不对输入进行解析0表示lua虚拟机对输入进行解析
2014-10-13 20:24:52 +08:00
node.stoplog()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述结束log
2014-10-13 20:24:52 +08:00
例子录制log到init.lua文件可以在系统启动之后自动调用该文件。
2014-10-13 20:50:24 +08:00
2014-10-13 20:39:28 +08:00
node.format()
2014-10-13 20:56:20 +08:00
node.startlog("init.lua", 1)
print("hello world")
2014-10-13 20:39:28 +08:00
node.stoplog()
2014-10-13 20:24:52 +08:00
2014-10-13 20:56:20 +08:00
此时文件init.lua内部将含有内容重启之后系统执行print("hello world")
2014-10-13 20:24:52 +08:00
node.readlog( filename)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:读取文件
filenamelog文件名不支持目录
返回:读取的内容,字符串形式
2014-10-13 20:24:52 +08:00
node.list()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:返回所有文件
返回:一个包含 <文件名文件大小> pair 的map
2014-10-13 20:24:52 +08:00
wifi module
2014-10-13 20:39:28 +08:00
-----------
2014-10-13 20:24:52 +08:00
2014-10-13 21:00:21 +08:00
常量wifi.STATION, wifi.SOFTAP, wifi.STATIONAP
2014-10-13 20:24:52 +08:00
wifi.setmode(mode)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述设置wifi的工作模式
2014-10-13 21:00:21 +08:00
mode取值wifi.STATION, wifi.SOFTAP或wifi.STATIONAP
2014-10-13 20:44:26 +08:00
返回设置之后的当前mode
2014-10-13 20:24:52 +08:00
wifi.getmode()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述获取wifi的工作模式
2014-10-13 21:00:21 +08:00
返回wifi.STATION, wifi.SOFTAP或wifi.STATIONAP
2014-10-13 20:24:52 +08:00
wifi.startconfig( channel, function succeed_callback )
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述开始智能配置若成功自动设置ssid和pwd并退出
channel1~13起始搜索信道。若不指定默认为6每个信道搜索20秒
succeed_callback配置成功后的回调函数将在获取密码正确并连接上ap之后调用
2014-10-13 20:24:52 +08:00
wifi.stopconfig()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:中断智能配置
2014-10-13 20:24:52 +08:00
wifi.station module
2014-10-13 20:39:28 +08:00
-----------------
2014-10-13 20:24:52 +08:00
wifi.station.setconfig(ssid, password)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述设置station模式下的ssid和password
ssid字符串形式长度小于32
password字符串形式长度小于64
2014-10-13 20:24:52 +08:00
wifi.station.connect()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述station模式下连接至ap
2014-10-13 20:24:52 +08:00
wifi.station.disconnect()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述station模式下断开与ap的连接
2014-10-13 20:24:52 +08:00
wifi.station.autoconnect(auto)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述station模式下设置自动连接至ap
auto0表示设置为不自动连1表示设置为自动连接
2014-10-13 20:24:52 +08:00
wifi.station.getip()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述station模式下获取ip
2014-10-13 20:56:20 +08:00
返回字符串形式的ip如"192.168.0.2"
2014-10-13 20:24:52 +08:00
wifi.station.getmac()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述station模式下获取mac
2014-10-13 20:56:20 +08:00
返回字符串形式的mac如"18-33-44-FE-55-BB"
2014-10-13 20:24:52 +08:00
wifi.ap module
2014-10-13 20:39:28 +08:00
---------------
2014-10-13 20:24:52 +08:00
wifi.ap.setconfig(cfg)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述设置station模式下的ssid和password
cfg设置需要的map
2014-10-13 20:39:28 +08:00
2014-10-13 20:24:52 +08:00
例子:
2014-10-13 20:50:24 +08:00
2014-10-13 20:39:28 +08:00
cfg={}
2014-10-13 20:56:20 +08:00
cfg.ssid="myssid"
cfg.pwd="mypwd"
2014-10-13 20:39:28 +08:00
wifi.ap.setconfig(cfg)
2014-10-13 20:24:52 +08:00
wifi.ap.getip()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述ap模式下获取ip
2014-10-13 20:56:20 +08:00
返回字符串形式的ip如"192.168.0.2"
2014-10-13 20:24:52 +08:00
2014-10-13 21:00:21 +08:00
wifi.ap.getmac()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述ap模式下获取mac
2014-10-13 20:56:20 +08:00
返回字符串形式的mac如"1A-33-44-FE-55-BB"
2014-10-13 20:24:52 +08:00
gpio module
2014-10-13 20:39:28 +08:00
-----------
2014-10-13 20:24:52 +08:00
常量gpio.OUTPUT, gpio.INPUT, gpio.HIGH, gpio.LOW
gpio.mode( pin, mode)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述设置对应pin的输入输出模式将该pin初始化为gpio模式。
pin0~11IO索引编号
modegpio.OUTPUT或者gpio.INPUT
2014-10-13 20:24:52 +08:00
gpio.read(pin)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述读取对应pin的值
pin0~11IO索引编号
返回0表示低1表示高
2014-10-13 20:24:52 +08:00
gpio.write(pin, level)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述设置对应pin的值
pin0~11IO索引编号
levelgpio.HIGH或者gpio.LOW
2014-10-13 20:24:52 +08:00
例子:
2014-10-13 20:50:24 +08:00
2014-10-13 20:39:28 +08:00
pin=1
gpio.mode(pin, gpio.OUTPUT)
gpio.write(pin, gpio.HIGH)
2014-10-13 20:24:52 +08:00
将索引1的pin设置为GPIO模式并设置为高电平。
net module
2014-10-13 20:39:28 +08:00
---------------
2014-10-13 20:24:52 +08:00
常量net.TCP, net.UDP
2014-10-13 21:03:48 +08:00
net.createServer(type)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:建立一个服务器
typenet.TCP或 net.UDP
返回net.server子模块
2014-10-13 20:24:52 +08:00
2014-10-13 21:03:48 +08:00
net.createConnection(type)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:建立一个客户端
typenet.TCP或 net.UDP
2014-10-13 21:00:21 +08:00
返回net.socket子模块
2014-10-13 20:24:52 +08:00
net.server module
2014-10-13 20:50:24 +08:00
-------------
listen(port,[ip],function(net.socket))
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:监听某端口
port端口号
ip可忽略ip字符串
function(net.socket): 回调函数,当有连接建立的时候,作为参数传给回调函数。
2014-10-13 20:24:52 +08:00
例子:
2014-10-13 20:50:24 +08:00
2014-10-13 20:39:28 +08:00
sv=net.createServer(net.TCP, false)
sv:listen(80,function(c)
c:on("receive", function(sck, pl) print(pl) end)
c:send("hello world")
end)
2014-10-13 20:24:52 +08:00
close()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:关闭服务器
2014-10-13 20:24:52 +08:00
net.socket module
2014-10-13 20:44:26 +08:00
-------
2014-10-13 20:24:52 +08:00
connect(port, ip)
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述连接到某ip和端口
port端口号
ipip字符串
2014-10-13 20:24:52 +08:00
send( string, function(sent) )
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:向连接发送数据
string需要发送的数据字符串
2014-10-13 20:24:52 +08:00
on(event, function cb())
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述:注册事件的回调函数
2014-10-21 21:20:02 +08:00
event字符串
可为:"connection","reconnection","disconnection","receive","sent"
function cb(net.socket, [string])回调函数。第一个参数为socket连接。
2014-10-13 20:56:20 +08:00
若event为"receive" 第二个参数为接收到数据,字符串形式。
2014-10-13 20:24:52 +08:00
例子:
2014-10-13 20:50:24 +08:00
2014-10-13 20:39:28 +08:00
sk=net.createConnection(net.TCP, false)
sk:on("receive", function(sck, pl) print(pl) end )
sk:connect(80,"115.239.210.27")
2014-10-21 21:20:02 +08:00
sk:send("GET / HTTP/1.1\r\nHost: 115.239.210.27\r\n
Connection: keep-alive\r\nAccept: */*\r\n\r\n")
2014-10-13 20:24:52 +08:00
close()
2014-10-13 20:50:24 +08:00
2014-10-13 20:44:26 +08:00
描述关闭socket
2014-10-13 20:24:52 +08:00
2014-10-16 22:20:05 +08:00
dns(domain, function cb(net.socket, ip) )
描述获取domain的ip
domain字符串
2014-10-21 21:20:02 +08:00
function cb(net.socket, ip):回调函数。
第一个参数为socket连接本身 第二个为获取的ip, 字符串形式。