Connexion nodemcu LUA

Bonjour,

J’ai voulu test constellation avec le language LUA. J’ai chargé un firmware réduit sur mon Nodemcu avec file,gpio,http,net,node,tmr,uart et wifi (http://nodemcu-build.com/index.php)

Ensuite dans mon main.lua j’ai :

 

require('config')
print(node.heap())
local constellation = require("constellation")
constellation.init("88.182.191.233",8088, "ESP8266", "Chambre-Sensor", "123456")
constellation.writeLog("Je suis pret avec ".. node.heap())
constellation.getSettings(function(message)
    print("Settings received :")
    for k,v in pairs(message) do
        print(" -> " .. k .. " = " .. v)
    end
end)

Mais il se passe rien, aucune erreur des deux côtés.

J’ai bien constellation.lua et httputils.lua chargé dans le nodemcu.

Une idée du problème ?