u/Rimedag

Image 1 —
Image 2 —
Image 3 —
Image 4 —
Image 5 —
Image 6 —
Image 7 —
Image 8 —
Image 9 —
Image 10 —
Image 11 —
▲ 108 r/CardPuter+1 crossposts

I think I will call it a project here (when it comes to hardware)
I’ve been messing around with the Cardputer (v1 and ADV) for some time and I knew and I felt like it could be something more practical, and since I had lot of stuff going on my raspberry's I decided to turn ADV into control device for pi and put all together and to push it a bit and see where it goes.

I made a 3D printed adapter so everything sits inside the case without completely ruining the original look and to be reversable at any point. It’s not perfect (fit could be tighter, screws are a bit off), but it holds together well and actually looks like a single device now.

The Pi is running a small system I’ve been building:
https://github.com/rimedag/VaultPi-Control-Center

It’s basically a lightweight control center where I can run scripts, trigger things, manage small workflows, repo's, etc. Running it inside the browser is much nicer and better looking but with custom cardputer firmware I can access it via cardputer, It’s very terminal-first, nothing fancy visually (on cardputer), but it fits the screen and the whole concept pretty well.

I also added a few things that made it feel way more “real” than I expected.

For example, I put a w3m browser on the Pi and integrated it into the firmware, so you can actually browse the internet from this thing. It’s obviously minimal, but it works. There’s also a terminal exposed so you can directly access the Pi, not just go through menus.

The GO button on top is now used for lock/unlock, and I added an optional PIN if you want some basic safety. There’s also a small thing like keeping the screen on while charging, which sounds minor but makes a big difference in usability (When it sits on my desk and I can with glance of my eye see if my websites and services are running or if anything is down).

Communication between the Cardputer and the Pi is currently pretty simple, they talk over the same network. The control center listens on a port and the Cardputer connects to it with a password. It works reliably enough for now.

I did think about going lower level. Those two unused data wires (from grove) are basically just sitting there and could be wired directly to the Pi’s GPIO, which would allow full control even without network. That was the original idea.

But I stopped myself there.

I know how that goes, one more layer, then another, then suddenly it’s a never-ending project. So I left that as a “maybe later” and kept this version focused and working.

Power-wise, same story. I originally wanted to go all-in with a second battery and extra modules to properly power the Pi. I even got advice to do that. But again, I simplified it.

Right now I’m powering the Pi through Grove. For normal use it works fine. It’s not meant for heavy loads, but for what this is, it’s stable enough. I’ll test battery life properly and share results once I have something real.

Where it stands right now is somewhere between prototype and usable device. It works, I actually use it, but it’s not polished. Things that could be better:

  • smaller screws
  • tighter 3D print
  • cleaner internal layout
  • Additional battery and modules for having pi with its own powersupply (but then it needs switch bla bla bla too much hustle + not intuitive)

Firmware also isn’t “clean” yet. It works, but there are hiccups. I’ll make that repo public once I fix the obvious stuff. The Pi side is already up if anyone wants to try it.

I had plans to go much deeper with this, more integration, maybe push it towards a small OS-like system, but I intentionally stopped before it turns into something I never finish.

So this is it for now. Not perfect, but real and working.

Lets call it a v1

Curious what people think, if you are inpatient to get your hands on CP Zero this might be worth a try, even having raspberry separated from cardputer is good idea, since they have to be on the same network raspberry could sit somewhere in the house while you access it and manipulate it via cardputer

For those wanting to have raspberry on keychain I have modified 3d print in github repo beside the app

Oh I almost forgot, 3d model of this adapter can be found here
https://www.printables.com/model/1711895-cardputer-adv-adapter
(with ender 3v3 and basic PLA I found it best when printing on 75% speed, nozzle temp 212 bed temp 63)

Firmware for cardputer can be found here
https://github.com/rimedag/Vaultpi-Cardputer

But as of now it is buggy and probably not gonna work properly (there is source code and firmware builded for you to put on SD card and install)
I am giving link just if you want to bookmark it or save for later

Lets have fun

u/Rimedag — 8 days ago
▲ 176 r/CardPuter+1 crossposts

I already have my setup running on a Pi Zero 2 W and a custom firmware on Cardputer ADV that controls it.

So I decided to merge everything into a single device.

I designed and 3D printed an extension piece that sits between the Cardputer and its original back cover, I want to keep the stock shell on the outside for a cleaner finish instead of a fully printed case.

Current plan

  • Fit Raspberry Pi Zero 2 W + battery + power module inside the extension
  • Keep Cardputer fully functional (screen/keyboard/UI)
  • Use Cardputer as a terminal/controller for the Pi

Power architecture

  • 1x LiPo battery (limited to ~80x30x6mm -> probably ~1800–3000mAh)
  • 1x power module (IP5306 or similar)

Wiring:

Battery → power module → 5V rail
                        ├── Pi (direct 5V)
                        └── Cardputer (5V0 pin)
  • Cardputer internal battery stays
  • External 5V acts like “always plugged in”

Communication

UART via Grove:

Cardputer TX → Pi RX (GPIO15 / pin 10)
Cardputer RX → Pi TX (GPIO14 / pin 8)
GND shared

Hardware mods

Raspberry Pi

  • Remove bulky connectors (USB + HDMI) to save space

  • Power Pi via test pads:

    5V → PP1 GND → PP6

(no USB needed at all)

Cardputer

  • Inject 5V internally:

    5V → 5V0 (or 5V1) pin GND → GND

  • Grove used only for UART

Goal

  • One device
  • One charging port
  • No external cables
  • Instant-on terminal for my Pi control center

Next steps

  • Find largest LiPo that fits (80x30x6mm constraint)
  • Pick stable 5V boost/charge module (IP5306?)
  • Finalize internal wiring layout
  • Clean enclosure routing (battery + Pi stacking)

If anyone has:

  • better power module suggestions (compact, stable under Pi load)
  • experience running Pi Zero from small LiPo setups
  • cleaner way to inject power into Cardputer

I’d love feedback before I lock the design.

p.s. once cardputer zero comes out I will use this as a backup device

u/Rimedag — 12 days ago
▲ 15 r/CardPuter+1 crossposts

Couple of you showed interest in my raspberry pi control center and entire system on facebook so I am sharing entire post plus github url here as well.
Soon I will publish firmware for cardputer to control control-center

My core system lives on a Raspberry Pi Zero 2 W keychain server, with Gitea as the backbone for syncing my repo's and obsidian vault across devices + a custom control center on top:
monitoring, scripts, automation, AI notes, personal wiki… all self-hosted. (And couple more apps I am experimenting with)

At first, everything was accessed through a browser.
Which works and I still use that method but I wanted also coputerless access so I built custom firmware for my Cardputer adv

  • instant access to actions (no tabs, no distractions)
  • direct trigger for automations and scripts
  • real-time monitoring without opening a dashboard
  • a physical interface to my system, not just another screen

It fits perfectly as a low-friction command layer between me and my infrastructure. and it is the most compact yet, I tried building my handheld linux device many times before and last one I am building is good its functional but its chunky (I tried termux, ubuntu touch naaah wasnt impressed, they are good tho!)

I always love the feeling of holding cardputer since I got v1 I was hooked and I was always trying to find where to utilize it to use it always and have it as my production companion but it lacked the linux part.
Cardputer zero is the device that fits all in a single shell!
I will deffinitelly migrate entire keychain setup here, I will also have access directly without web (but with web as well) and I cant wait to see what other apps will be there in shop

github.com
u/Rimedag — 14 days ago
▲ 93 r/CardPuter+1 crossposts

in case you wondered if it would fit YES IT WILL!

I had to take of connector from gps module and solder wires directly and I had to adjust the housing a bit to fit the cable and module

u/Rimedag — 12 days ago