05.02.2020, 07:29
Start by checking HTTP communication. This script will send a GET request and log the result (change IP as needed):
Code:
url = 'http://192.168.1.12/get/json/v1/1/temps/1/'
http = require('socket.http')
require('json')
http.TIMEOUT = 5
data, err = http.request(url)
log(data, err)