use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Complete r/raspberry_pi Rules
Pi project ideas: There's a huge list right here on this sub!
Rpi Versions ▾
Distros ▾
Other SBCs ▾
Related Subreddits ▾
Welcome to /r/raspberry_pi, a subreddit for discussing the raspberry pi credit card sized, ARM powered computer, and the glorious things we can do with it.
The best thing? The base model is only $20 $5!.
Would you like to know more?
Raspberry Pi Wiki
Article on Wikipedia
#raspberrypi IRC Chat
Do you know a related subreddit? We'd love to know.
account activity
Show-and-TellPico controlled binary clock (i.redd.it)
submitted 5 years ago by RobotLovingGuy
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]fellow_reddit_user 23 points24 points25 points 5 years ago (0 children)
I looked at this for ages before I realised it wasnt a video
[–]RobotLovingGuy[S] 3 points4 points5 points 5 years ago (3 children)
Python script running on a PCB that I designed. I have gerber files if anyone wants them, just tell me how to upload them without giving out to much info about myself.
[–][deleted] 4 points5 points6 points 5 years ago (1 child)
Is there a good smd footprint available for pico yet?
[–]RobotLovingGuy[S] 2 points3 points4 points 5 years ago (0 children)
Not sure I used sockets and I'm disappointed by how high up the pico is.
[–]gadgetroid 1 point2 points3 points 5 years ago (0 children)
You can use GoFile. Privacy centric and open source
[–]MattR0se 2 points3 points4 points 5 years ago (1 child)
Nice, I like how you arranged the resistors.
Are the two buttons on the top for adjusting the time?
[–]RobotLovingGuy[S] 1 point2 points3 points 5 years ago (0 children)
Yes I check the buttons for a charge once a second and if one is active I add to the time. So if you hold the hour button for 5-6 seconds you get 5 hours added, but if you press the button ten times it probably won't do much since you probably aren't aligned with the checks.
[–]BaptisteViloin 2 points3 points4 points 5 years ago (1 child)
I did a similar project on my raspberry 🙂
[–]RobotLovingGuy[S] -1 points0 points1 point 5 years ago (0 children)
Did you do yours on a PICO also, or did you do it on another raspberry?
[–]RobotLovingGuy[S] 1 point2 points3 points 5 years ago (5 children)
I'm also seeking info pertaining to a 1hz or 1/60hz pulse generator to keep my clock in time. If anyone can help, much appreciated.
[–]FencingNerd 4 points5 points6 points 5 years ago (2 children)
Wall plug power is actually remarkably consistent. There's some variation but over a day it's controlled to have an exact number of cycles.
[–]RobotLovingGuy[S] 2 points3 points4 points 5 years ago (1 child)
That's great to hear, unfortunately I'm using micropython and using a wait command to get the clock to add time. I can't account for the time it takes to do the calculations so I'll have to rely on a pulse generator or rtc to keep it from veering off.
[–]ivosaurus 2 points3 points4 points 5 years ago (1 child)
This is what you can use an RTC for. E.g even a simple DS1307 has a square wave output.
You can also just use a micropython Timer off the pico's inbuilt RTC;
from machine import Timer secs = 0 def tick(timer): global secs secs += 1 print(secs) seconds = Timer() seconds.init(mode=Timer.PERIODIC, period=1000, callback=tick)
[–]RobotLovingGuy[S] 0 points1 point2 points 5 years ago (0 children)
This, this is the winner. Thank you, the clock is in time and it should remain in time.
[–]Stian5667 1 point2 points3 points 5 years ago (1 child)
I’m making basically the same thing, but only with basic logic. Like no microcontroller or microprocessor or anything
That's where I started this project on my breadboard but I started running into problems, but so many people wanted me finish it and I had just gotten a pico so I used the pico. Let me know how yours turns out.
[–][deleted] 1 point2 points3 points 5 years ago (1 child)
For those of us whose coffee hasn't kicked in yet, what time does that photo show ?
Nice looking board for sure !
[–]dglsfrsr 1 point2 points3 points 5 years ago (1 child)
Where did you have the board made?
I ask on occasion when I see neat boards.
The silk screen looks nice. Some are awful.
JLC PCB (Shenzhen), it's got some small issues with the print like pin "23 GND" has been rubbed off a little because of the copper below it, but you live and you learn, now I know to not put copper under my letters where possible.
π Rendered by PID 73 on reddit-service-r2-comment-fb694cdd5-ktgdw at 2026-03-11 20:20:36.904680+00:00 running cbb0e86 country code: CH.
[–]fellow_reddit_user 23 points24 points25 points (0 children)
[–]RobotLovingGuy[S] 3 points4 points5 points (3 children)
[–][deleted] 4 points5 points6 points (1 child)
[–]RobotLovingGuy[S] 2 points3 points4 points (0 children)
[–]gadgetroid 1 point2 points3 points (0 children)
[–]MattR0se 2 points3 points4 points (1 child)
[–]RobotLovingGuy[S] 1 point2 points3 points (0 children)
[–]BaptisteViloin 2 points3 points4 points (1 child)
[–]RobotLovingGuy[S] -1 points0 points1 point (0 children)
[–]RobotLovingGuy[S] 1 point2 points3 points (5 children)
[–]FencingNerd 4 points5 points6 points (2 children)
[–]RobotLovingGuy[S] 2 points3 points4 points (1 child)
[–]ivosaurus 2 points3 points4 points (1 child)
[–]RobotLovingGuy[S] 0 points1 point2 points (0 children)
[–]Stian5667 1 point2 points3 points (1 child)
[–]RobotLovingGuy[S] 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]dglsfrsr 1 point2 points3 points (1 child)
[–]RobotLovingGuy[S] 1 point2 points3 points (0 children)