Difference between revisions of "NETIO Lua Reference"

From wiki.netio-products.com
Jump to navigation Jump to search
Line 55: Line 55:
  
 
<big><b>Write functions</b></big>  
 
<big><b>Write functions</b></big>  
 +
* function [[Function modbusWriteSingleCoil()|modbusWriteSingleCoil()]] - write value to single coil
 +
* function [[Function modbusWriteSingleRegister()|modbusWriteSingleRegister()]] - write value to single register
 +
 +
== MQTT <sup><code>3.3.1</code></sup>==
 
* function [[Function devices.system.MqttLuaSubscribe()|.MqttLuaSubscribe()]] - subscribe to MQTT topic
 
* function [[Function devices.system.MqttLuaSubscribe()|.MqttLuaSubscribe()]] - subscribe to MQTT topic
 
* function [[Function devices.system.MqttPublish()|.MqttPublish()]] - send message to MQTT topic
 
* function [[Function devices.system.MqttPublish()|.MqttPublish()]] - send message to MQTT topic
 
== MQTT <sup><code>3.3.1</code></sup>==
 
* function [[Function devices.system.Reboot()|.Reboot()]] - reboot socket's system
 
* function [[Function devices.system.Reboot()|.Reboot()]] - reboot socket's system
 
  
 
== Standard Lua Functions ==
 
== Standard Lua Functions ==

Revision as of 14:33, 11 July 2019

Outlet Management

devices.system

Socket System Management

devices.system


Socket Communication

XML Processing 2.3.6

xml

  • function .escape() - escapes XML string to fit xml node contents
  • function .check() - tests if string is well-formed XML
  • function .parse() - parses XML string into XmlElement object

JSON Processing 3.3.1

json

  • function .decode() - parse json string into obj table
  • function .encode() - generate JSON string from table

(based on dkjson)

Modbus 3.3.1

Read functions

Write functions

MQTT 3.3.1

Standard Lua Functions

Miscellaneous

  • function log() - insert a record to the socket's event log
  • function logf() - insert a formated record (incl. numbers) to the socket's event log
  • function delay() - execute function with delay (seconds)
  • function milliDelay() - execute function with delay (milliseconds)
  • function toboolean() - converts any variable to boolean type