Tested - the firmwares I posted above work (note - these also use the extra ram and flash, so you have 2600 jsvars. That's not related to any of the changes in v65)
Fixing the DHT module is tricky!
Before, I used an integer to store the data received, and since I had 64 bit ints and 32 bits of data, that was all fine and dandy. But now I have only 32 bit ints - which would still be okay, except that now I'm getting all 40 bits!
I can't do the bitshift to store each bit like I did before at all can I? Hmmm....
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Tested - the firmwares I posted above work (note - these also use the extra ram and flash, so you have 2600 jsvars. That's not related to any of the changes in v65)
Fixing the DHT module is tricky!
Before, I used an integer to store the data received, and since I had 64 bit ints and 32 bits of data, that was all fine and dandy. But now I have only 32 bit ints - which would still be okay, except that now I'm getting all 40 bits!
I can't do the bitshift to store each bit like I did before at all can I? Hmmm....