Great project. I made it and doing some change in your code to print "06:34" instead of "6:34". There is a problem in your code that in 12 hour format at midnight it shows "00:00" instead of "12:00". So I fixed it and now it shows "12:00" instead of "00:00". Thanks for sharing it.
@@francocatera9721 I write the code for 12:00 at midnight if (now.hour() == 0) { convertedHour = now.hour() + 12; } else if (now.hour() > 12) { convertedHour = now.hour() - 12; } else { convertedHour = now.hour(); } And for the 06:34 // First digit if (h >= 0 && h < LEDS_PER_SEGMENT + 2) { digitOffset = 0; numberToDraw = num0; } Delete this two line if (numberToDraw == 0) { numberToDraw = 10; }
Hi, thanks for posting this. My daughter now wants one, so I will oblige. I have two questions. To use 3 LEDs per segment, would I need a transistor / mosfet to power it? The Arduino output I presume is limited. And is it easy to convert to 24h format? Thanks!
In the case of 3LED, power consumption is high, so instead of outputting from 5V of arduino to LED, branch from the power adapter of 5V (1.5A to 2A), one is input to LED and the other is input to Vin of arduino. Then I think it's okay. I think that 24H display is possible by changing the following source code. I haven't detailed debug, but when I tried it, the display worked. There may be something wrong. if (now.hour ()> 12) → if (now.hour ()> 24) convertedHour = now.hour () -12; → onvertedHour = now.hour () -24; if (upIsPressed) { adjustVariable (& inputHours, 1, 1, 12); → adjustVariable (& inputHours, 1, 1, 24); if (downIsPressed) adjustVariable (& inputHours, -1, 1, 12); → adjustVariable (& inputHours, -1, 1, 24);
@@JAXX556 sir please tell me what to do for get first digit 0 in 12 hrs clock means it showing "06:15" insted of "6:15". I already made it same as showing but due to no knowledge of arduino code I did not change anything in code.
@@krisanup I can't understand the source code deeply because I don't have knowledge of English, so I can't think of a way to display 6:15 as 06:15. Since the value output from RTClib.h is learned and displayed, it is a good idea to ask someone who is familiar with RTClib.h.
Awesome project! I really like the added buttons. I would really like to make this, but want to make a larger one using 3 leds per segment. If we were to use 3 leds per segment, is this the only change in the code? #define SEGMENTS_PER_DIGIT 7 #define LEDS_PER_SEGMENT 3 #define LEDS_PER_DIGIT 21 #define GRID_WIDTH 13 #define GRID_HEIGHT 5 #define NUMPIXELS 86
I have been trying to make a 86 led (3 per segment) clock in 12hr format without the first zero showing (1:55 instead of 01:55). There are many videos showing different ways, but I was never able to find one exactly how I want. I just started with Arduino last Spring, so I am still learning to code. Either I will finally find the code I need or learn to do it myself.....someday :/
I already make this using 3 leds per segment viewing this video. Thanks once again . There some edit to make that. Very soon I upload the details video through my channel. So, subscribe my channel ruclips.net/channel/UC1irJ5tFKOtvKKAysiSNL0Q Trailer video already uploaded. Once again thanks to EASY TECH...
@@easytechzones there is an error in the page, and it doesn't allow me to do anything. Can you send me the code please?... It's for a technology project at my school.
@@krisanup change to AM /PM or 24 hours so after 12pm it continues as 13 14 up to 24 hours railway timings. Press button of am pm to 24 hours railway timings and vise versa according to ur decisions
@@ryanluiz8966 ruclips.net/video/0dBzv-gcHgo/видео.html Go to this link & I want exactly this type means it's showing 12 hr clock with "08:01" instead of "8:01"
If its running off an arduino it probably wouldn't be that hard to edit the code to hold solid colors, unless the leds used are the kind that are just locked into a color cycle
You did put a great effort in making digital clock, but the wiring and connections were very confusing, and the PCB board loaded with components and software installation was not mentioned or skipped, kindly put the diagram of the connections
Brother amezing project or bhai aapko aapke ghr ke paas koi bhi masoom janvr dikhe to use khana khila dena kyoki lockdown ke chalte masoom janvro ko khana nhi mil pa raha hain please 🙏🙏🙏🙏
cool watch. I did those too. it was nice to see your version of the watch. I also added a photoresistor so that it would not shine so much at night. sketch is very good. it will be a pleasure to study it. Thank you. Best regards from Russia:-)
Great project bro, thanks for sharing... I've made it and work perfectly like a charm. My question : what function for each 5 button? Button num 1 for +, button num 2 for menu, button num 3 for -, button num 4 and 5 I don't know exactly what for? Can you explain it?
Hello Sir I have made the same as you showed in this video. But one thing as soon as the power cuts and when the power is back the clock starts and shows its time to 9:54 why it is not picking up the real time automatically. Could you please help me on this.
I made the clock without buttons. (I used DS3231) but I'm not very good at programming and I could not simplify your codes. could you help me with this?
Hello gues Now I am going to tell you about this video. Just think about 3 or 4 Wire is enough to complete the clock circuit. Here all LED is connected in Parallel . So don't waste your precious time.
Hello gues Now I am going to tell you about this video. Just think about 3 or 4 Wire is enough to complete the clock circuit. Here all LED is connected in Parallel . So don't waste your precious time. Thanks for reading my comment.
Sir your diagram and code link isn't working please update
what is the product of 17:04?
Great project. I made it and doing some change in your code to print "06:34" instead of "6:34". There is a problem in your code that in 12 hour format at midnight it shows "00:00" instead of "12:00". So I fixed it and now it shows "12:00" instead of "00:00". Thanks for sharing it.
Hi Fahim, would you please tell me what line did you change?
@@francocatera9721 I write the code for 12:00 at midnight
if (now.hour() == 0)
{
convertedHour = now.hour() + 12;
}
else if (now.hour() > 12)
{
convertedHour = now.hour() - 12;
}
else
{
convertedHour = now.hour();
}
And for the 06:34
// First digit
if (h >= 0 && h < LEDS_PER_SEGMENT + 2)
{
digitOffset = 0;
numberToDraw = num0;
}
Delete this two line
if (numberToDraw == 0)
{
numberToDraw = 10;
}
@@thevibetube79 Thanks, it solved the 00:06, but still I don't have 24h
can you solve it?
@@thevibetube79 Thats pretty cool! Where did you all learns this at?
@@thevibetube79 Please help; which line of code to change to enable the dots for seconds to blink?
can it be possible the dot's blinking as second signal?
4:45 detictieve conan sad music
Good video bro 👍
Thanks for the visit
Nice
Hi, i need code please! Thank you so much!
India is the best of china good work and west bengal tiger
India can do much more better than Chinese products if each of us can take initiatives ourselves instead of depending on imported goods
Can you send the code and library pls
But lam a beginner
Please code send 😢
Hi..Bro is it possible to blink the seconds dot digits ..
Let me check
nice project , iwill make it, is it only 12h clock? or 24hr?
ami ekta baniyechi clock rgb.whats app koro ami video dichi
Cual es el.codigo y el esquema de conexiones ????
Hi, thanks for posting this. My daughter now wants one, so I will oblige. I have two questions. To use 3 LEDs per segment, would I need a transistor / mosfet to power it? The Arduino output I presume is limited. And is it easy to convert to 24h format? Thanks!
In the case of 3LED, power consumption is high, so instead of outputting from 5V of arduino to LED, branch from the power adapter of 5V (1.5A to 2A), one is input to LED and the other is input to Vin of arduino. Then I think it's okay.
I think that 24H display is possible by changing the following source code.
I haven't detailed debug, but when I tried it, the display worked. There may be something wrong.
if (now.hour ()> 12) → if (now.hour ()> 24)
convertedHour = now.hour () -12; → onvertedHour = now.hour () -24;
if (upIsPressed)
{
adjustVariable (& inputHours, 1, 1, 12); → adjustVariable (& inputHours, 1, 1, 24);
if (downIsPressed)
adjustVariable (& inputHours, -1, 1, 12); → adjustVariable (& inputHours, -1, 1, 24);
@@JAXX556 sir please tell me what to do for get first digit 0 in 12 hrs clock means it showing "06:15" insted of "6:15". I already made it same as showing but due to no knowledge of arduino code I did not change anything in code.
@@krisanup I can't understand the source code deeply because I don't have knowledge of English, so I can't think of a way to display 6:15 as 06:15.
Since the value output from RTClib.h is learned and displayed, it is a good idea to ask someone who is familiar with RTClib.h.
@@JAXX556 thank you
@@JAXX556 send me the code please 🙏
Awesome project! I really like the added buttons. I would really like to make this, but want to make a larger one using 3 leds per segment. If we were to use 3 leds per segment, is this the only change in the code?
#define SEGMENTS_PER_DIGIT 7
#define LEDS_PER_SEGMENT 3
#define LEDS_PER_DIGIT 21
#define GRID_WIDTH 13
#define GRID_HEIGHT 5
#define NUMPIXELS 86
Was just going to ask that, thanks
Did you suss out how to alter code accordingly? Please let me know
@@markmaisy4858 No, I never got a reply, but I have learned there is a lot more to edit using 3 LED's per segment :(
I have been trying to make a 86 led (3 per segment) clock in 12hr format without the first zero showing (1:55 instead of 01:55). There are many videos showing different ways, but I was never able to find one exactly how I want. I just started with Arduino last Spring, so I am still learning to code. Either I will finally find the code I need or learn to do it myself.....someday :/
I already make this using 3 leds per segment viewing this video. Thanks once again . There some edit to make that. Very soon I upload the details video through my channel. So, subscribe my channel ruclips.net/channel/UC1irJ5tFKOtvKKAysiSNL0Q
Trailer video already uploaded.
Once again thanks to EASY TECH...
Does anyone know where I can find the project source to download and study?
Nope
Not getting the diagram and code
woooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
Wow great job! Kudos! Very nice!
Super hits 👍👍👍👌 👌👌
Thank you for this video but code sir?
Extremely Awesome 👍👍👍👍👌👌👌🙏
Thanks a lot 😊
@@easytechzones there is an error in the page, and it doesn't allow me to do anything. Can you send me the code please?... It's for a technology project at my school.
Nice...keep it up bro.......
Make an hour clock to use Arduino nano and 8x8 pixel light
Ws2812 use kar sakte h
Can I use ws2812b led
of course
yes
@@easytechzones I have tried with WS2811 pixel LED & Arduino UNO but unfortunately invain....
can you make this same thing with arduino uno
Memory problem
I made it
It's 12 hr or 24 hr clock?
If it's 12 hr clock then can you modify the code with "0" showing means showing "06:34" instead of "6:34".
24 hour comes railway timings
@@ryanluiz8966 what can I do for that?
@@krisanup change to AM /PM or 24 hours so after 12pm it continues as 13 14 up to 24 hours railway timings. Press button of am pm to 24 hours railway timings and vise versa according to ur decisions
@@ryanluiz8966 ruclips.net/video/0dBzv-gcHgo/видео.html
Go to this link & I want exactly this type means it's showing 12 hr clock with "08:01" instead of "8:01"
Amazing idea
#Electronicsorelectronics
What is Sunbord?
Plz get buying link???
Like card board.
@@easytechzones Your Video use Sunbord buying link plz
You can by from Amazon
What's that wire you used there?
How would you add an LRD to dim at night? (Pin connections)? Do you need to modify code also?
Yes I'm also looking for it. Please share if you found.
I like your code. Really cool rgb clock. Can u please add photoresistor into it. It will help in night time.. anyone please help me?
DId you added photoresistor?
Hello, this is very beautiful. I want to make this, but I can't find the Arduino code because the link is broken.
দারুন
great. Thank You for your hard works and effort to post this project.
Plz make a vdo on single colour led..
Rather than shuffle colour in leds can we set solid colour either red, blue, green other mux colour.
If its running off an arduino it probably wouldn't be that hard to edit the code to hold solid colors, unless the leds used are the kind that are just locked into a color cycle
Its a fashioned show of display
That's cool! Perfect! Good job man! 👍👍
How do you programmed the clock or was it using 555 timer?
Super project....all the very best guys!!!❤️
Khub valo 😲😲😲😲😵😵😵
Thanks
So beautiful watch
You did put a great effort in making digital clock, but the wiring and connections were very confusing, and the PCB board loaded with components and software installation was not mentioned or skipped, kindly put the diagram of the connections
Skiped on a purpose
I wouldn’t click on his websites.
ruclips.net/channel/UCDqcGaud2g8xpu7Yb081QcA
Which software you have used..plz tell me
Send code sir....
Check description
Page not found show ho Raha ha 😢😢
ruclips.net/video/GbDikBZPgwc/видео.html
Brother amezing project or bhai aapko aapke ghr ke paas koi bhi masoom janvr dikhe to use khana khila dena kyoki lockdown ke chalte masoom janvro ko khana nhi mil pa raha hain please 🙏🙏🙏🙏
1st view 1st coment 1st like
Thanks
Welcome
WS2812B LED where you buy it
Sir please send me the code, your description url is not working
amo seu trabalho
good job, can you put the watch sheet to cut?
Very nice project
what is the music name starts at 02:00 ?
If it's not too much to ask, could you please re-share the Diagram and code, as I lost it. Thanks
ofcourse
@@housekeeptech5504 I'm waiting, thanks.
I want to buy... Pls how much
you r bast brother
Oh
cool watch. I did those too. it was nice to see your version of the watch. I also added a photoresistor so that it would not shine so much at night. sketch is very good. it will be a pleasure to study it. Thank you. Best regards from Russia:-)
Welcome
Can you please share the modified code?
@@easytechzones code send me please sir website link not working please help me sir
Sir please send me th code❤
@@peaceofmind3457 watch the video on my channel. if of course you can figure it out. I don't understand it myself anymore,
Can we use Ws2812b
😲😳 Nice vedio
Good fantastic but where do u get this multicolor LED s ?
Power supply?
Nice Video Great Job👍
Description abstract milega ky sir
Sunboard glass shop yay ki bolya pabo sunboard yar price koto ??
akhon keo ane debe na . market bondho
@@easytechzones kothai paoa jabe? ami market a dekhlam. pelam na. online a onek dam.
Code is not available to link
Great project bro, thanks for sharing... I've made it and work perfectly like a charm. My question : what function for each 5 button? Button num 1 for +, button num 2 for menu, button num 3 for -, button num 4 and 5 I don't know exactly what for? Can you explain it?
Thanks
Color code changing
pakistann
Sir please send me the code
Dear friend . Namaskar ..
Can I buy this product .
From wair .
& What's its cost .
Please batlaye ...
Ji dhanyawad aapka ...
How to get this component plz let me know
I am using at mega 8a yes or no
hey broo can you sold it..?
please tel me how many price its domain (its watch)
Dada plz sand code
En vous remerciant, joyeux Noël et restez en sécurité et en bonne santé
Really nice work and I want to make this too but I can't get the code it is not available in website anymore.
Very nice video
Thanks
I want to buy it..
How much current want to work this
You are the pro of this, op creation
Can u please help me build this projects..I want to purchase it with code explanation.
Excellent
Can you share the code
Thanks
Hello Sir I have made the same as you showed in this video. But one thing as soon as the power cuts and when the power is back the clock starts and shows its time to 9:54 why it is not picking up the real time automatically. Could you please help me on this.
Connect to a back up battery to solve power inturupted problems
Used kiya hai WS2812 aur discription me WS2811 ka link diya gaya hai
MT3608 ka link diya hai wo kahan laga diya aapne
Diagram & Code link is invalid.
It is saying 'Page not found'
I made the clock without buttons. (I used DS3231)
but I'm not very good at programming and I could not simplify your codes.
could you help me with this?
very good project
12v led strip directly run on nano?
no it is not. this led was sold with this packaging
What happen if we use Ds1307 instead of 3231? Any change in code? Thanks
R u did it?
how many buttons do you need? in the video you have 5 buttons. 4 buttons on the diagram. can you describe each button separately?
2 extra for colour setup
Hello gues Now I am going to tell you about this video. Just think about 3 or 4 Wire is enough to complete the clock circuit. Here all LED is connected in Parallel . So don't waste your precious time.
hi (i am MC OVER) can i use ws2812? and can you please upload code again? it doesn ´t work.
thank you
Thank you so much for this. You helped me understand how to safely join and connect the LED
You are welcome!
Battery bhi lagao isme charging system ke sath
ok.
@@easytechzones isme used sabhi saman kahan se milega
Cool rgb clock. Can u please add photoresistor? It will help in night time.. anyone please help me?
Hlw sir , dot led blink solution, plz
Sir, no push button is working? Can you please any help.
Thanks in advance
Mobile network booster for home DIY video please
try kar rahe hai but 4g booster banana easy nehi hya
@@easytechzones sulga bro
Bro super
Thanks
i really like your video
I can't upload code in ardino nano
Error is that there is no such hedder file (AdaFruitNeo_pixel)
Pls give me a solution
Please send me the code. I will check & tell you how to resolve this issue.
Site for getting diagram and code is blocked
I would like to make it. please can I get all details? and how to get the hardward and software. help me. thank.
Can 24h format?
Hello gues Now I am going to tell you about this video. Just think about 3 or 4 Wire is enough to complete the clock circuit. Here all LED is connected in Parallel . So don't waste your precious time.
Thanks for reading my comment.
You don't know about ws2812 led strip
Please code send 😢