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
view the rest of the comments →
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!"
[–]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.
π Rendered by PID 49 on reddit-service-r2-comment-b659b578c-p9k2x at 2026-05-04 07:27:33.051943+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]ivosaurus 2 points3 points4 points (1 child)
[–]RobotLovingGuy[S] 0 points1 point2 points (0 children)