add readme

This commit is contained in:
Hong 2014-10-13 20:39:28 +08:00
parent 133825db1e
commit 994c550b15
1 changed files with 43 additions and 37 deletions

View File

@ -80,6 +80,7 @@ node.list()
返回:一个包含 <文件名文件大小> pair 的map
wifi module
-----------
常量wifi. STATION, wifi.SOFTAP, wifi.STATIONAP
@ -101,6 +102,7 @@ wifi.stopconfig()
描述:中断智能配置
wifi.station module
-----------------
wifi.station.setconfig(ssid, password)
描述设置station模式下的ssid和password
ssid字符串形式长度小于32
@ -125,9 +127,11 @@ wifi.station.getmac()
返回字符串形式的mac如“18-33-44-FE-55-BB”
wifi.ap module
---------------
wifi.ap.setconfig(cfg)
描述设置station模式下的ssid和password
cfg设置需要的map
例子:
cfg={}
cfg.ssid=”myssid”
@ -143,6 +147,7 @@ wifi. ap.getmac()
返回字符串形式的mac如“1A-33-44-FE-55-BB”
gpio module
-----------
模块名gpio
常量gpio.OUTPUT, gpio.INPUT, gpio.HIGH, gpio.LOW
@ -170,6 +175,7 @@ gpio.write(pin, gpio.HIGH)
将索引1的pin设置为GPIO模式并设置为高电平。
net module
---------------
常量net.TCP, net.UDP
net.createServer(type, secure)
@ -207,7 +213,7 @@ function cb(net.server sv, [string]):回调函数。第一个参数为服务
例子:
sv=net.createServer(net.TCP, false)
sv:listen(80)
sv:on("receive", function(s,c) s:send("<h1> Hello, world.</h1>") print(c) end )
sv:on("receive", function(s,c) s:send("Hello, world.") print(c) end )
close()
描述:关闭服务器