add readme

This commit is contained in:
funshine 2014-10-13 20:56:20 +08:00
parent 1170faace0
commit 56384c0547
1 changed files with 11 additions and 11 deletions

View File

@ -73,11 +73,11 @@ node.stoplog()
例子录制log到init.lua文件可以在系统启动之后自动调用该文件。 例子录制log到init.lua文件可以在系统启动之后自动调用该文件。
node.format() node.format()
node.startlog(“init.lua”, 1) node.startlog("init.lua", 1)
print(“hello world”) print("hello world")
node.stoplog() node.stoplog()
此时文件init.lua内部将含有内容重启之后系统执行print(“hello world”) 此时文件init.lua内部将含有内容重启之后系统执行print("hello world")
node.readlog( filename) node.readlog( filename)
@ -140,12 +140,12 @@ wifi.station.autoconnect(auto)
wifi.station.getip() wifi.station.getip()
描述station模式下获取ip 描述station模式下获取ip
返回字符串形式的ip“192.168.0.2” 返回字符串形式的ip"192.168.0.2"
wifi.station.getmac() wifi.station.getmac()
描述station模式下获取mac 描述station模式下获取mac
返回字符串形式的mac“18-33-44-FE-55-BB” 返回字符串形式的mac"18-33-44-FE-55-BB"
wifi.ap module wifi.ap module
--------------- ---------------
@ -157,19 +157,19 @@ wifi.ap.setconfig(cfg)
例子: 例子:
cfg={} cfg={}
cfg.ssid=”myssid” cfg.ssid="myssid"
cfg.pwd=”mypwd” cfg.pwd="mypwd"
wifi.ap.setconfig(cfg) wifi.ap.setconfig(cfg)
wifi.ap.getip() wifi.ap.getip()
描述ap模式下获取ip 描述ap模式下获取ip
返回字符串形式的ip“192.168.0.2” 返回字符串形式的ip"192.168.0.2"
wifi. ap.getmac() wifi. ap.getmac()
描述ap模式下获取mac 描述ap模式下获取mac
返回字符串形式的mac“1A-33-44-FE-55-BB” 返回字符串形式的mac"1A-33-44-FE-55-BB"
gpio module gpio module
----------- -----------
@ -242,7 +242,7 @@ on(event, function cb())
描述:注册事件的回调函数 描述:注册事件的回调函数
event字符串可为"connection""reconnection""disconnection""receive""sent" event字符串可为"connection""reconnection""disconnection""receive""sent"
function cb(net.server sv, [string]):回调函数。第一个参数为服务器本身。 function cb(net.server sv, [string]):回调函数。第一个参数为服务器本身。
若event为”receive” 第二个参数为接收到数据,字符串形式。 若event为"receive" 第二个参数为接收到数据,字符串形式。
例子: 例子:
@ -272,7 +272,7 @@ on(event, function cb())
描述:注册事件的回调函数 描述:注册事件的回调函数
event字符串可为"connection""reconnection""disconnection""receive""sent" event字符串可为"connection""reconnection""disconnection""receive""sent"
function cb(net.socket, [string])回调函数。第一个参数为socket连接本身。 function cb(net.socket, [string])回调函数。第一个参数为socket连接本身。
若event为”receive” 第二个参数为接收到数据,字符串形式。 若event为"receive" 第二个参数为接收到数据,字符串形式。
例子: 例子: