How to use the actual Ports library for accessing two SHT11's, one on Port1 and one on 2 ? Is this possible without changes in the library?
Programming two SHT11's with the actual Ports librairy
(3 posts) (2 voices)-
Posted 21/02/2011 15:56:47
-
Sure:
#include
SHT11 one (1), two (2);
... = one.measure(SHT11::HUMI); ... = two.measure(SHT11::HUMI);Posted 21/02/2011 16:47:02 -
Works great, thank you Jean-Claude
Posted 23/02/2011 07:58:32
