? on wiki

At http://devwiki.electricimp.com/doku.php?id=electricimpapi#server_instance, under “nv Table” is the following code:

`// Update a field in the table if it is present
// else initialise the table with a field
if ((“nv” in getroottable()) && (“count” in nv))
{
nv.count++;
}
else
{
nv <- {count = 1};
}

// Configure a node on the Planner
server.configure(“My Impee”, [], []);

// Display the sleep count on our node
server.show(“Pass #” + nv.count);

// Enter deep sleep for 10s
server.sleepfor(10.0);
`

Should server.configure() be imp.configure()?

It certainly should: well spotted!

Peter