Linus Torvalds
We've been making electronic clocks for a year or so now. Some recipients and other casual bystanders have asked where they can purchase them. Well, you can't buy them because they are made from scratch!
The first iteration was horrible and looked like a bomb, but slowly we have been able to iron out the bugs and now can put one together in about three to four hours without burning our fingers too much with stray solder.
Call Homeland Security, quick! |
Just add wires! |
if (minset.isPressed()){
myminute = (myminute + 1) % 60;
rtc.setTime(myhour, myminute, 0);
tm1637.printTime(myhour,myminute, true);
delay(50);
mytime = rtc.getTimeStr();
myhour = mytime.substring(0,2).toInt();
myminute = mytime.substring(3,5).toInt();
}
Yup, that'd do ya head in! Then the wiring commences - and that's damn difficult because of the size of the project and the complexity of the connections.
Looks neat on a diagram! |
Looks like the London Underground in real life... |
Of course, some of us hate electronics and just like to curl up with our favourite oversized dog!
The nightly ritual includes a final cuddle before bed |
No comments:
Post a Comment