You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once you have flashed the SD card and completed the hardware build. Power it on. You'll find it may reboot a couple times the first time you hit it; don't worry, it'll eventually come up stable. I think it's doing SD expansiona nd initial set up at that time.
113
115
114
-
###Find your Pi on the network
116
+
## Find your Pi on the network
115
117
116
118
The easiest wat to find your zerocalc on the network is to use `ping` with the hostname you set in the imager. For example, if you set your hostname to `zerocalc` you can ping it with:
The `picocalc_trixie` repo has some useful scripts for running Pico8 and other utilities. You can copy them to a directory in your `PATH` for easier access.
311
+
312
+
```sh
313
+
# Go to the picocalc_trixie directory
314
+
cd~/picocalc_trixie
315
+
# Copy the scripts to /usr/local/bin
316
+
sudo cp -r user_bin/* /usr/local/bin/
317
+
# one is called "shudown" which will lead to an infinite loop. rename it.
# alternatively, modify the script and have it point to /usr/sbin/shutdown
321
+
sudo nano /usr/local/bin/shutdown
322
+
# Change 'shutdown' to '/usr/sbin/shutdown' and save the file.
323
+
```
324
+
325
+
## Optional: Power off shutdown script
326
+
327
+
I haven't had this consistently work but I'd like you to know it exists: https://github.com/nibheis/picocalc_trixie#step-7-make-the-pi-turn-off-the-main-board-when-powering-off
328
+
329
+
tldr; this service should trigger the pi to send a power off signal to the mainboard when the Pi shuts down.
330
+
331
+
For me, it hasn't been; but that's not a huge issue. Once it's shut down you hold the power button for a few seconds and the green light on the ZeroCalc will turn off.
305
332
306
-
## Resources
333
+
If I get this fixed I'll add an update here.
334
+
335
+
# Shameless Plug: Handle, stand, grip for the ZeroCalc
If you like the grip in the cover image, you can find it on at Makerworld: [PicoCalc Grip Stand Handle](https://makerworld.com/en/models/2748402-picocalc-grip-stand-handle).
344
+
345
+
If you like it, check out the other things I make!
346
+
347
+
Heads up; there's a version you can print without the `pico-8` logo on the front. It's plate 2 in the print profile, and the `.step` files are included in the 3D model files if you want to modify it yourself.
348
+
349
+
# Resources
307
350
308
351
Here's the main resources I used when working this out.
309
352
@@ -313,6 +356,10 @@ Here's the main resources I used when working this out.
-[A comment in the forum post about making the default font easier to work with](https://forum.clockworkpi.com/t/raspberry-pi-zero-2-on-picocalc/17946/235?u=jamescodesthings)
315
358
316
-
```
359
+
# Fin
317
360
318
-
```
361
+
That's it for this one! I hope it's useful to anyone looking to do something similar. If you have any questions, or suggestions for improvements, feel free to reach out.
362
+
363
+
Many thanks to everyone mentioned in the resources, and anyone else who's worked on this in the forums. It's a great community and I'm grateful for all the work that's gone into making this possible.
364
+
365
+
If anyone involved in the project wants to add anything, or correct any mistakes, just let me know!
0 commit comments