Any lead on howto use it?
It's not formally documented, but it's modern simple. You go to a URL to get the data you want, and it returns JSON.
The API is here:
https://github.com/thorrak/fermentrack/blob/master/app/api/lcd.py
The URL patterns you want are:
Code:
url(r'^api/lcd/(?P<device_id>\d{1,20})/$', app.api.lcd.getLCD, name="getLCD"), # For a single device
url(r'^api/lcd/$', app.api.lcd.getLCDs, name="getLCDs"), # For all devices/LCDs
url(r'^api/panel/(?P<device_id>\d{1,20})/$', app.api.lcd.getPanel, name="getPanel"), # For a single device
Try starting with /api/lcd/ and go from there.
Side note - I don't remember what getPanel does offhand. I should take a look sometime when I'm home.