Posts: 5
Threads: 2
Joined: Oct 2016
Reputation:
0
Hi, just a note:
Initially I downloaded the PDF version of the LUA Reference manual. It seems to be out of date, eg. the grp.all() function is not mentioned.
It also mentions a subset api, object.xxx() functions, which seems to be removed in the updated online version of the doc (that API is probably replaced by grp.xxx() functions ?)
- Oyvind
Posts: 5200
Threads: 29
Joined: Jun 2015
Reputation:
266
Online HTML reference is the latest one. You should use that.
Posts: 1
Threads: 0
Joined: Jan 2017
Reputation:
0
I've stumbled across the db:getall() and db:update() functions in a few threads here, yet cant find any documentation about them. Are they supported or documented features?
Posts: 5200
Threads: 29
Joined: Jun 2015
Reputation:
266
In most cases you should not access the internal database directly. Are you missing some specific functionality?
Posts: 53
Threads: 17
Joined: Nov 2016
Reputation:
0
Could we make a script repository if there isnt one already?
Posts: 28
Threads: 9
Joined: Mar 2017
Reputation:
0
I am new to LM and LUA,
There are many good things to learn from reading this forum. For instance, I learned about the reserved name _SCRIPTNAME to obtain the name of the current running script. In other threads, I learned about event.getvalue() and event.dst to read what triggered the current script.
I would like to learn more: Where do I find more holistic documentation on specifically:
- All reserved (and useful) variables (such as _SCRIPTNAME)
- The full specification for the "event" class (all its methods and variables)
Thx
Posts: 3
Threads: 1
Joined: Sep 2016
Reputation:
0
Hi,
In the documentation the description of the object fields is:
address - object group address
updatetime - latest update time in UNIX timestamp format. Use os.date() to convert to readable date formats
name - unique object name
datatype - object data type
decoded - set to true when decoded value is available
value - decoded object value
But in samples I found additional fields like: id, data.
Where I can find the full actual documentation?
Posts: 1623
Threads: 5
Joined: Jul 2015
Reputation:
102
Hi,
Make a backup and browse current.db with sqlite browser (:
BR,
Erwin