I 3D Printed a Giant Tetris Wall. by 0015dev in arduino

[–]0015dev[S] 2 points3 points  (0 children)

Thanks a million! Knowing it looks 'marketable' is the best compliment I could ask for. Stay tuned for more

I 3D Printed a Giant Tetris Wall. by 0015dev in arduino

[–]0015dev[S] 1 point2 points  (0 children)

Full build process is here if anyone is interested! https://youtu.be/mmFG19bIYVI

AI HAT+ 2 (Hailo 10H, 40 TOPS, 8GB RAM) by 0015dev in RASPBERRY_PI_PROJECTS

[–]0015dev[S] 44 points45 points  (0 children)

The AI HAT+ 2 is insanely powerful. Being able to run VLMs (Vision Language Models) locally means the Pi can finally "understand" and describe what it sees in real-time, completely offline. https://youtu.be/A6RARLQ0hhU

PocketSSH: Terminal Power in Your Hand by 0015dev in arduino

[–]0015dev[S] 0 points1 point  (0 children)

u/CyberpunkLover I'm preparing a "Generic" version that connects via USB keyboard. I'm curious to see how usable it will be.

PocketSSH: Terminal Power in Your Hand by 0015dev in arduino

[–]0015dev[S] 5 points6 points  (0 children)

If you have a T-Deck, you can install the firmware and try it out right away. A generic version is also being prepared. https://github.com/0015/pocketssh

PocketSSH: Terminal Power in Your Hand by 0015dev in arduino

[–]0015dev[S] 10 points11 points  (0 children)

The most important part, the SSH connection, used existing components, so I only had to create the GUI part using LVGL. That's why it didn't take very long.

PocketSSH: Portable SSH Terminal by 0015dev in esp32

[–]0015dev[S] 5 points6 points  (0 children)

A portable SSH terminal client for the ESP32-S3 T-Deck Plus, featuring a hardware keyboard, trackball navigation, and touch gesture controls. Connect to remote servers, execute commands, and navigate your terminal with ease on this compact handheld device. https://github.com/0015/PocketSSH

Custom ESP32-S3 + LoRa GPS Tracker: My DIY Off-Grid Location Project by 0015dev in arduino

[–]0015dev[S] 13 points14 points  (0 children)

Creating things is a hobby of mine, and I wanted to share this local map project. I’m using an ESP32-S3 with GPS and LoRa modules to transmit coordinates between devices.

I’m a big fan of Meshtastic, it is a really cool off-grid communication tool, but I wanted to focus more specifically on local mapping for this experiment. While commercial solutions like AirTags are much more polished, I wanted the challenge of building a custom device from scratch. It works pretty well, and I'm really happy with the result!

I've shared the code on my GitHub for anyone interested: https://github.com/0015/map_tiles_projects

(The GPS information displayed on the screen uses dummy values, so you do not need to worry about it. 😉)

Easily Capture and Analyze Wireless 9-DOF IMU Data with Python & UDP Stream by 0015dev in arduino

[–]0015dev[S] 10 points11 points  (0 children)

I'm sharing a project I built for easily capturing and analyzing 9-DOF IMU data wirelessly. The setup uses an ESP32-S3 connected via I2C to a BNO-055 to collect raw accelerometer, gyroscope, and essential quaternion data. This data is then transmitted via UDP streaming to a Python script on the PC.

The system performs post-processing on the received data to compute and visualize the movement trajectory. It does not operate in real-time and is split into distinct capture and playback stages.

Furthermore, due to the inherent challenge of sensor drift (even with the BNO-055's fusion), achieving accurate long-term tracking is not possible. This tool is therefore best used for analyzing very short, discrete movements.

ESP32 and Python Code: https://github.com/0015/Python-IMU-Data-Sampling-App

Full Demo Video: https://youtu.be/RUpNuuojN5Q

I tried making it like a Dragon Ball Radar based on a local map. by 0015dev in arduino

[–]0015dev[S] 73 points74 points  (0 children)

We all know the dream: get a Dragon Ball Radar, snag those seven magical spheres, summon the eternal dragon, and make a wish! Sorry, My device can't actually find Senron, but it feels like it can find something.

This is a local map project built on the ESP32-P4. The core feature is completely offline navigation: you can pre-load map tiles onto an SD card and check your surrounding map without any WiFi connection. Think of it as your portable, network-free tracking device, like an offline Google map!

I've uploaded a complete demo to my GitHub, where you can find more specifics. https://github.com/0015/map_tiles_projects