How to make clock and weather station from esp8266 and max7219

  Рет қаралды 15,059

The Craft

The Craft

Күн бұрын

Пікірлер: 41
@kazumahendra7247
@kazumahendra7247 3 жыл бұрын
Hello,i have a problem that date and weather information won’t print There’s only displays the clock, can you help me to fix it? Thanks !!
@kazumahendra7247
@kazumahendra7247 3 жыл бұрын
If anyone can help please email me kazumahendra1@gmail.com Thanks 🙏🏻
@kosa2004
@kosa2004 4 жыл бұрын
Thanks for sharing. Very neat clock and weather station. Afterbuilded it, expanded the code a bit. Excellent work :)
@m0hd_
@m0hd_ 2 жыл бұрын
for powering... can i use Hi-link to convert 220 to 5v? or its better to use power bank?
@distritomadrid
@distritomadrid 5 жыл бұрын
Hi. Is possible add date like Mon, 12/31/2019 ?
@francocatera9721
@francocatera9721 4 жыл бұрын
Hi, Is it possible to implement the news like in som other marquee ?
@Marcelokauffman
@Marcelokauffman 4 жыл бұрын
Hi, I have the parseObjet failed error too, not getting weather data
@mirekzos9775
@mirekzos9775 3 жыл бұрын
Perfektní. Funguje naprosto skvěle. Děkuji :-)
@JUSSIDSOUND
@JUSSIDSOUND 3 жыл бұрын
I'm getting error on this line long epoch = round(curEpoch + 3600 * utcOffset + 86400L) % 86400L; it is showing invalid operands of types 'float' and 'long int' to binary 'operator%' PLEASE HELP ME...
@sebastianoclaudiolonghitan2805
@sebastianoclaudiolonghitan2805 4 жыл бұрын
Ottimo codice ma con avvento della nuova libreria json non decodifica la stringa del meteo, pensi di aggiornare il codice....grazie.
@gegounaris
@gegounaris 5 жыл бұрын
exit status 1 invalid operands of types 'double' and 'long int' to binary 'operator%' Any idea?
@thecraft9230
@thecraft9230 5 жыл бұрын
Have you selected the esp8266 microcontroller in the arduino ide program?
@CowMowTV
@CowMowTV 5 жыл бұрын
@@thecraft9230 , i have the same problem and i´ve selected esp8266
@mail2abir
@mail2abir 5 жыл бұрын
Install ESP8266 board version 2.4.1 and select WeMos D1 Mini Pro. Compilation error will be fixed.
@bhuvankj
@bhuvankj 4 жыл бұрын
choose fmod() function instead of % operator for double and long data types because % operator is no longer supported for long and double data types. Don't forget to include math.h library after changing. for eg., if there is 12 % 10 in the code, change it to fmod(12,10)
@francocatera9863
@francocatera9863 4 жыл бұрын
Hi, is it possible to have the displaying text in other language for example italian?
@thecraft9230
@thecraft9230 4 жыл бұрын
String weatherLang = "&lang=en";
@TMRu22311
@TMRu22311 Жыл бұрын
Would anyone help with converting time to 12 hour format? Thanks
@abhijeetpatil9883
@abhijeetpatil9883 Жыл бұрын
Check if the HH i.e. hour part is greater than 12 then subtract 12 from hour to get 12hour format. In this case AMPM will be PM only else show AM
@Ravikumar-wm7jq
@Ravikumar-wm7jq 4 жыл бұрын
DynamicJsonBuffer jsonBuf; showing error
@tn4218
@tn4218 3 жыл бұрын
Try deleting the existing 'ArduinoJson' librairy on your PC and replacing with the one the poster has provided in his Google drive
@TanvirAhmed101
@TanvirAhmed101 2 жыл бұрын
Same Here parseObject() failed
@NadeemParviaz
@NadeemParviaz 4 жыл бұрын
long epoch = round(curEpoch + 3600 * utcOffset + 86400L) % 86400L; facing this error???????
@jameobd738
@jameobd738 4 жыл бұрын
try replace with "long epoch = (long)(round(curEpoch + 3600 * utcOffset + 86400L)) % 86400L;"
@sebastianoclaudiolonghitan2805
@sebastianoclaudiolonghitan2805 4 жыл бұрын
@@jameobd738 sostituisci round con lrondf.
@bhuvankj
@bhuvankj 4 жыл бұрын
choose fmod() function instead of % operator for double and long data types because % operator is no longer supported for long and double data types. Don't forget to include math.h library after changing. for eg., if there is 12 % 10 in the code, change it to fmod(12,10)
@didacrodriguez8449
@didacrodriguez8449 4 жыл бұрын
@@jameobd738 Thanks Jame. It works. I could solve this!
@electronicsideas1361
@electronicsideas1361 3 жыл бұрын
need code and circuit
@sougatasengupta3592
@sougatasengupta3592 2 жыл бұрын
1>how to add -- date and day 2> how to add wind direction
@noffso2009
@noffso2009 4 жыл бұрын
Sir . please help me : java.lang.RuntimeException: java.lang.NullPointerException thanks .
@federicoferrara125
@federicoferrara125 5 жыл бұрын
Hi, I am subscribed to your channel I would like to construct this project. However, it gives me problems and that is, after compiling the program, nothing happens, and it does not even connect to WiFi. I have 72 years and I don't have much programming practice, I need this exceptional project for my 5-year-old nephew. Can you help me? .I propose that I use Arduino 1.8.10 and in your program I only msso my credentials: password and ssid, but I have not entered the Apikey. ?. Thank you, hello
@thecraft9230
@thecraft9230 5 жыл бұрын
can you send me the code you edited? to the post office shojkeee@yandex.ru
@NadeemParviaz
@NadeemParviaz 4 жыл бұрын
ok problem solved issue was in board selection. Now i want to use two module of Max7219 any changing in codes. 2nd i want time in 12hours . 3rd my API key shows wrong time 2 hours delay.
@tn4218
@tn4218 3 жыл бұрын
Even with correct cityID and API weather key entered, only the time (with one hour delay) prints on the max7299 for me 🙂
@lucho1989
@lucho1989 5 жыл бұрын
Hi, error: espcomm_upload_mem failed error: espcomm_open failed I have com7 intead of 5com like you... is that the problem? Nice video, Thanks
@sakamotoras
@sakamotoras 3 жыл бұрын
invalid operands of types 'double' and 'long int' to binary 'operator%'
HOW TO MAKE DIGITAL CLOCK WITH TEMPERATURE !!
8:26
TheElectronic Noob's
Рет қаралды 6 М.
Counter-Strike 2 - Новый кс. Cтарый я
13:10
Marmok
Рет қаралды 2,8 МЛН
4 in 1 LED matrix clock DIY
4:44
Hacktuber
Рет қаралды 53 М.
I Made The Ultimate Cheating Device
9:39
ChromaLock
Рет қаралды 1,9 МЛН
How to make a 16x16x16 LED CUBE at home with Arduino platform
20:09
Malt Whiskey
Рет қаралды 4,4 МЛН
ESP8266 Internet Clock
2:46
John Rogers
Рет қаралды 42 М.
The BEST Mechanical Display You've EVER Seen!!!
13:51
Tin Foil Hat
Рет қаралды 600 М.
Ракета Х-59м2а все внутренности
17:52
Скупка Радиодеталей Украина
Рет қаралды 128 М.
Nodemcu (Esp8266) & Max7219 weather station/Clock. The easiest way?
3:32
Bizzare Shifter
18:04
upir
Рет қаралды 459 М.