Tumgik
#raspberry pico
scum-cat · 1 year
Text
first tune for the music box
starting to write tunes for the music box, the notes are kind of dependant on the rotation speed right now,. if you rotate at full speed you get a consistent melody
284 notes · View notes
sickacademia · 2 months
Text
STEM Diaries | 21.03.2024
Tumblr media Tumblr media Tumblr media Tumblr media
- I had to go to college to finish my report and I still didn't finish it because I spend too much time hanging out with my friends and colleagues (lmao)
- My raspberry pi pico arrived!! I tried basic things such as blinking an LED, which took me over an hour to happen (lmao)
- I had to keep working on the report after dinner but I was hit with intense period cramps that paralyzed me so I couldn't finish it. again. (lmao)
0 notes
tingvall · 10 months
Text
Tumblr media
Working on a Raspberry Pico W display to showcase what is currently playing on Plex. Fun project with both Python and Micropython in the stack.
Now all that remains is getting buttons to work and hardening against network failures.
0 notes
rx75-2 · 2 months
Text
LED control system in progress!!!
11 notes · View notes
trainsinanime · 2 months
Text
PSA
If you want to use a Raspberry Pi Pico as a debug probe to program another Raspberry Pi Pico without the annoying BOOTSEL dance, make sure that when you run CMake on the debugprobe firmware (in the picoprobe repository), you pass DEBUG_ON_PICO=ON as option. As in,
cmake -DDEBUG_ON_PICO=ON ..
This flag is described in the Readme of that repository (also note that the repository and tool have been renamed debugprobe from picoprobe), but it's notably missing from Appendix A of the Getting started with Raspberry Pi Pico guide. That guide is probably older, before the firmware was split and renamed like that, and nobody has bothered to update it yet.
If you don't do that, the firmware will expect the SWDIO and SWCLK data on different pins than what the instructions say, and you will find yourself spending hours checking the cable connections because you keep getting "Error: Failed to connect multidrop rp2040.dap0" errors in openocd. Ask me how I know.
(Also, fuck Raspberry Pi for making so much of their otherwise really good documentation PDFs. There are several places where you need to cross-reference things, and if it were HTML, the navigation between the sections would be so much easier.)
Other tip, while we're here: Install ninja (with brew install or apt install), then when doing the cmake generating step, pass "-G Ninja" in addition. Then build by just typing "ninja" instead of "make -j4" or whatever. It's a little extra typing but it is faster and better at utilising many cores on your host computer.
2 notes · View notes
a-shard-of-ace · 11 months
Text
pi pico website?
Say, I was just thinking—we’re all mad about the 4–7 big websites having taken away our internet. If we wanted to make it more accessible to host a website from actual scratch, then how accessible (& how cheap) could we make it?
So uhh. This might be insane but to my fellow technically-minded individuals: you all think you could host a micro-website on a Raspberry Pi Pico W?
I know it doesn’t have any power at all but what if you don’t get a lot of traffic either? I honestly have no idea how that works out.
Anyway I’m ordering one now! Very curious if I can host a microblog with €8 of hardware.
8 notes · View notes
spamhamandeggs · 5 months
Text
Project isn't working
Connect oscilloscope to check if it's generating the signal you expect
See a signal that makes absolutely no sense
Now you're even more confused than before
2 notes · View notes
sb-components · 7 months
Text
The Ultimate Pocket Computer For Innovators, Coders, Hackers
piPocket is a revolutionary new pocket computer that is perfect for innovators, coders, hackers, and anyone else who wants to create and build amazing things. piPocket is small enough to fit in your pocket, but it is powerful enough to run a wide range of software, including coding environments, development tools, and even full-blown operating systems.
Tumblr media
Features
piPocket is packed with features that make it the perfect pocket computer for innovators and creators. Some of the key features of piPocket include:
Powerful processor: piPocket features a powerful quad-core ARM processor that can run even the most demanding applications.
Large memory: piPocket comes with 4GB of RAM and up to 128GB of storage, giving you plenty of space to store your code and projects.
Versatile I/O: piPocket features a variety of I/O ports, including USB-C, HDMI, and micro SD. This allows you to connect piPocket to a variety of devices, including displays, keyboards, and sensors.
Long battery life: piPocket has a long battery life, so you can work on your projects all day long without having to worry about running out of power.
Use Cases
piPocket is perfect for a wide range of use cases, including:
Coding and development: piPocket is the perfect platform for coding and developing software. It comes pre-loaded with a variety of coding environments and development tools, and it is powerful enough to run even the most demanding applications.
Prototyping and testing: piPocket is also a great tool for prototyping and testing new ideas. It is small and portable, so you can take it with you wherever you go, and it is powerful enough to handle even the most complex prototypes.
IoT and embedded systems: piPocket is also a great platform for IoT and embedded systems development. It is small and low-power, making it ideal for battery-powered devices. It also comes with a variety of I/O ports, so you can connect piPocket to a variety of sensors and actuators.
Conclusion
piPocket is the ultimate pocket computer for innovators, coders, hackers, and anyone else who wants to create and build amazing things. It is small, powerful, and versatile, making it the perfect platform for a wide range of use cases.
Check out piPocket on Kickstarter today and learn more about this amazing new product!
2 notes · View notes
drdnar · 11 months
Text
A Color LCD (part 1)
Many years ago, I pulled an LCD out of a GPS unit from the days before cars and smartphones having navigation features. This LCD is a color LCD with a backlight. It’s a very different technology, and much more challenging to interface to. I can’t even find a proper datasheet for the module.
Tumblr media
There are datasheets available for modules with similar part numbers. Based on the circuitry in the above picture, this looks like the closest pinout:
Tumblr media
B&W LCD modules usually have a built-in charge pump to generate their needed voltages. Unfortunately, the datasheet also says this module needs those voltages supplied externally, and they’re a bit weird.
VDH: +8.3–+8.7 V @ 3.3 mA
VGH: +16.2–+17.0 V @ 0.23 mA
VGL: −8.35–−8.0 V @ 0.17 mA
VCC: +2.5–+3.3 V @ 0.22 mA (this is actually a normal voltage)
Fortunately, I don’t have to design and build a boost circuit myself; you can Just Buy voltage boost modules easily from many places. Getting a module to generate that negative voltage, however, is a lot harder. But it turns out that charge pump chips are A Thing you can Just Buy on Digikey. Sadly, charge pump chips tend to have fairly low output current capability, so while charge pumps could produce the high voltage for the backlight, it would require several and be kind of awkward.
Tumblr media
So last week and this week, I finally sat down and learned enough about PIO on the Pi Pico to produce suitable timing signals for the module.
Tumblr media
Great! I have a power circuit, I have logic signals, I have a suitable connector, now to see if I can display a picture. Well, one problem: I haven’t built something to hold the LCD. I don’t have a 3D printer, nor any CAD skills, so tonight’s project is to design in Adobe Illustrator a case for the module made of cardstock.
2 notes · View notes
femgineerasolution · 2 years
Text
Finally had chance to do some soldering today, tried to make a video of it but the camera cut off without me realising 😅
Tumblr media Tumblr media
Looking good for me to start using them now though!
16 notes · View notes
mynewchapterinlife · 11 months
Text
Home Automation 家居自動化
Tumblr media
View On WordPress
2 notes · View notes
drgeppo · 1 year
Text
Tumblr media
👀👀👀👀
4 notes · View notes
ctommy-chileno · 1 year
Text
I have the power to make a music box with Butch 4 Butch as the song but I lack some resources and a gf
5 notes · View notes
rx75-2 · 1 month
Text
The programming and wiring is finished!!
Now I just have to make a box
3 notes · View notes
sbcomponents · 1 year
Text
2 notes · View notes
adafruit · 1 year
Text
Circuit Playground 32u4 Tester is pico-ified!
With many chips finally coming back into stock, we're doing a run of some boards we  haven't manufactured in quite a bit! for example this Circuit Playground Classic, our original Circuit Playground board, is based on the ATmega32u4. since its been a few years we pulled out the tester kit and noticed that only one of the three testers was working. the tester was originally designed to use an Arduino M0 Pro which was a SAMD21 board with a second USB serial port for programming & debug. but...that board is discontinued! so we might as well 'pico-ify' it by converting the tester to use our RP2040 Tester Brains which is combined with our standalone AVR Programming library to perform all the firmware burning, USB enumeration, and testing.
2 notes · View notes