[Solved] WEMOS D1 + DallasTemperature: How to print temperature and temperature comparison in if [closed]
In this line: int insideThermometer = (int)insideThermometer; You create a local variable and assign it to itself. Not what you wanted. The global var you are trying to use is DeviceAddress insideThermometer = { 0x28, 0xFF, 0x83, 0x51, 0xB2, 0x17, 0x4, 0x8A }; If you look at the source code, DeviceAddress is typdef’d as typedef … Read more