All URLs that correspond to files are in 8.3 form. Use only lowercase in URLs.
/sensors/ is 'live' area, URLs here do not correspond to file on card.
When there is any data missing, its filled by -999 (MINVALUE from GrowduinoFirmware.h) TODO: Replace -999 with json NULL
/sensors/status.jso Shows compile-time and runtime status. Note that uptime is string not number, this may be fixed in the future. daymin is minutes since midnight.
{
"free_ram":1025,
"sensors":6,
"outputs":8,
"sensor_list":{
"0":"Humidity",
"1":"Temp1",
"2":"Light",
"3":"Usnd",
"4":"Temp2",
"5":"Temp3"
},
"triggers":10,
"triggers_log_size":25,
"uptime":"3381",
"daymin":234
}/client.jso
- Configuration data for web client, not used in firmware
- supports GET, POST
- FIXME: atm the json is parsed on file write
/config.jso
- Configuration data for firmware
- supports GET, POST
- If use_dhcp == 1 then get IP config from dhcp, if not then use values from json
- uses config values when dhcp fails
- changes take effect on reboot
{
"use_dhcp":1,
"ip":"195.113.57.69",
"netmask":"255.255.255.0",
"gateway":"195.113.57.254",
"mac":"de:ad:be:ef:55:44",
"ntp":"195.113.56.8",
"smtp":"10.0.0.1",
"mail_from":"me@exmaple.com"
}/sensors/outputs.jso
- Stores last output positions
- Values are bitfield, each bit corresponds to one output
- supports GET only
{
"name":"outputs",
"state":{
"1390173000":160,
"1390173060":161,
...
"1390173300":255
}
}/sensors/{tempX,humidity,light,...}.jso
- shows last 60 minutes of sensor data in "min" array, with hourly averages for last day in "h" array and daily averages since boot in "day"
- Values are to be divided by 10 before using
{
"name":"Light",
"min":[13,...,23],
"h":[48,...,20],
"day":[21,...,101]
}/triggers/X.jso
- X is 0 to TRIGGERS (GrowduinoFirmware.h, line 22)
- supports GET, POST
- changes take effect immediately
- t_since and t_until are in minutes since midnight, and define when the conditions are checked. For all-day trigger use t_since = -1. When t_since > t_until the trigger is checked over midnight.
- when trigger turns on any output, it can be turned off by any of following:
- the off_value condition of said trigger is met
- t_until of said trigger is encountered
- off_value of any trigger relating to this output with important (!) mark is true.
- on_value and off_value are in format operator+parameter+importance, see examples.
- there is implicit ">" on on_value and "<" on off_value if you send only integers.
- off_value condition has precedence over on_value
- Possible operators for on/off_value are:
- "<": Lesser than. "on_value":"<100" on temp readings will resolve as true when temperature falls bellow 10C. Parameter is raw sensor reading
- ">": Greater than. Opposite to "<".
- "T": resolves true when the output was off for more than parameter minutes, switches off after off_value minutes has passed. See example 2.
- Importance is noted by "!" at end, and means that this condition is critical, if off condition is true it disables that output until on condition is met or timer expires
- sensors are indexed from zero and listed in status.jso
- outputs are indexed from zero too
- "active" is three state variable, where 0 = off, 1 = on (check trigger conditions), 2 = always on.
Ex. 1: Switch on output 7 when temperature falls to 25 degrees C, switch it back off when it climbs over 30C
{
"t_since":-1,
"t_until":0,
"on_value":"<250",
"off_value":">300",
"sensor":1,
"output":7,
"active":1
}Ex. 2: Never turn on output 5 if the temperature is bellow 10C:
{
"t_since":-1,
"t_until":0,
"on_value":">100",
"off_value":"<100!",
"sensor":1,
"output":5,
"active":1
}Ex. 3: During the night (since 8pm to 6am), when the output 4 was idle for 10 minutes, run it for 5 minutes:
{
"t_since":1200,
"t_until":360,
"on_value":"T10",
"off_value":"T5",
"sensor":-1,
"output":4,
"active":1
}Ex. 4: During day, when humidity exceeds 55% run output 3 for 5 minutes
{
"t_since":360,
"t_until":1200,
"on_value":">550",
"off_value":"T5",
"sensor":0,
"output":3,
"active":1
}Ex. 5: Force the Ex. 3 trigger to be "on" all the time. This allows you to turn output on while keeping user-defined values.
{
"t_since":1200,
"t_until":360,
"on_value":"T10",
"off_value":"T5",
"sensor":-1,
"output":4,
"active":2
}/data/
- stores historical data for all sensors and output
- /data/SENSOR/YYYY/MM.jso stores daily averages for given month
- /data/SENSOR/YYYY/MM/DD.jso stores hourly averages for given day, where "hour" is "minutes since midnight / 60". Leap days are 23 or 25 hours long.
- /data/SENSOR/YYYY/MM/DD/HH.jso stores data for each hour.
/data/output/YYYY/MM/DD/X.jso stores log of output (relay) changes, split by LOGSIZE (default 25) records. GET the sequence until 404 is encountered.
Sends message to remote person when trigger changes state /alerts/X.jso
- supports GET, POST
{
"on_message":"Temp too high!",
"off_message":"Temp back at normal",
"trigger":1,
"target":"+420777123456",
}- target may be phone number for SMS or mail address (TODO)
- when one of the messages is empty or missing then nothing is sent on corresponding trigger change
Calibration of EC sensor is done at 20C, by calibration solution with known conductivity 1.278 and 2.8mS.