Friday 5 November 2021

How to display openweathermap weather icon

How to display openweathermap weather icon


 var iconurl = "http://openweathermap.org/img/w/" + iconcode + ".png";


http://openweathermap.org/img/w/10d.png

https://github.com/erikflowers/weather-icons

https://gist.github.com/tbranyen/62d974681dea8ee0caa1

Thursday 4 November 2021

Arduino IDE can't find ESP8266 board

Arduino IDE can't find ESP8266 board


 When programming the NODEMCU card with the Arduino IDE, you need to customize it and you must have selected the correct card.

Open Arduino IDE and go to files and click on the preference in the Arduino IDE.

Add the following link to the Additional Manager URLS section: "http://arduino.esp8266.com/stable/package_esp8266com_index.json" and press the OK button.

Then click Tools> Board Manager. Type "ESP8266" in the text box to search and install the ESP8266 software for Arduino IDE.

You will be successful when you try to program again by selecting the NodeMCU card after these operations. I hope I could help.