[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

[Solved] Communication between wemos d1(as a client) and a webserver(on arduino or wemos d1) through LAN [closed]

Yes, you can run a webserver with Arduino. This is the example from https://www.arduino.cc/en/Tutorial/WebServer /* Web Server A simple web server that shows the value of the analog input pins. using an Arduino Wiznet Ethernet shield. Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 * Analog inputs attached to pins A0 through … Read more