• I'm using a temperature / humidity sensor (DHT11) like this:

    var dht = require ("DHT11"). connect (C11);
    dht.read (function (a) {console.log ("Temp is" + a.temp.toString () + "and RH is" + a.rh.toString ());});

    However, I wanted a resolution of at least two decimal places. But I only get the whole number ... How should I proceed?

About

Avatar for cogo33 @cogo33 started