t = require('ds18b20') port = 80 pin = 3 -- gpio0 = 3, gpio2 = 4 gconn = {} -- global variable for connection function readout(temp) local resp = "HTTP/1.1 200 OK\nContent-Type: text/html\nRefresh: 5\n\n" .. "" .. "
" .. "ESP8266" for addr, temp in pairs(temp) do -- resp = resp .. string.format("Sensor %s: %s ℃", addr, temp) resp = resp .. string.format("Sensor %s: %s ℃", encoder.toHex(addr), temp) -- readable address with base64 encoding is preferred when encoder module is available end resp = resp .. "Node ChipID: " .. node.chipid() .. "