Positroid live
17 subscribers
240 photos
49 videos
61 links
DIY engineering: 3D printing, electronics, smart home, AI, code
Download Telegram
Channel created
Q everyone!

I’m Filatov Anton, a web architect specializing in e-commerce development.

But this channel is more about other things; here’s what you’ll find:

• DIY engineering: 3D printing, CAD, electronics, and smart home
• Unconventional technologies for project implementation
• Live updates on current projects
• Experiments with AI and various aspects of coding

Where else to find me: GitHub · Thingiverse · YouTube

And, of course, check out my blog – positroid.tech
So, why do I need this channel?

I have many mini-projects, interesting ideas, or useful software. It’s not enough for a full post, even for my blog. I’m not even talking about other platforms.

Here, I also share current progress with projects and interesting solutions that often get lost when I try to write a full article.

Also, sometimes I want to share something in the moment while my emotions and feelings are still fresh. The next post will be about that.

Think of this channel as an addition to my blog and YouTube videos. It will also have announcements for posts and videos because it’s difficult to follow the blog (there’s only an RSS feed to subscribe to).
This media is not supported in your browser
VIEW IN TELEGRAM
I decided to make good videos for YouTube, with 4K, high-quality images, audio, and all that.

A 4K display is coming to me (I use two FHD monitors — it's good, but I need 4K for screencasts). I'm also getting a Raspberry Pi 4B instead of my dead Orange Pi. I need it for Klipper with 4K timelapses of 3D prints.

That's a bit of a tangent. I needed a logo and an intro for YouTube. I made the logo years ago when the first image generation AIs appeared. It was Stable Diffusion, which couldn't even reliably generate a single letter "P". I generated the intro video only now.

I used Kling, inserted the logo image, played around with prompts for animation, and generated the audio for it. And voilà — the ready 5-second intro!

If I did this manually, I would need to model everything in 3D, learn After Effects, and spend at least a couple of weeks on it — and all that without audio. In other words, I really like modern technologies and the AI boom. It has radically decreased the entry threshold in almost any area.
Frontend / Backend, as they say.

I’ve finally received a 4K monitor (on the left) and decided to reorganize my workspace a bit to accommodate it.

Right now, everything looks like that meme about web technologies. But seriously – anyone who switches between a laptop and a PC should know about a KVM switch.

You connect your keyboard, mouse, and monitor to it, as well as two computers (in my case a laptop and a desktop), and with one button all your peripherals switch between the two devices.

When I first discovered it, it was a revelation—I used to switch everything manually each time, then I got a KVM without HDMI (so only the keyboard and mouse would switch). And now I’ve finally got a full KVM with an external button so I can hide all the cables away.

For now, everything’s still a bit of a mess and in the way—I need to design and 3D-print a mount for the box under the desk and tidy things up.
This media is not supported in your browser
VIEW IN TELEGRAM
Here is one of the first 4K print timelapses for one of the upcoming projects that prompted me to upgrade to a Raspberry Pi 4B.

Main reasons and benefits of switching to Klipper:

1. After replacing the extruder from a BMG to a Biqu H2 V2S, the printer could no longer handle high-speed printing and would violently vibrate at minimal direction changes at high speed.

2. No more running back and forth with a microSD card between the printer and the PC — now files are uploaded by dragging and dropping into Fluidd.

3. Finally, genuine timelapses with good image quality and settings.

By the way, a life hack for those who don’t want to buy a separate camera for timelapses — you can use an Android smartphone for this purpose by installing the IP Webcam app. The app starts a server that streams the phone’s camera feed — it offers tons of settings and multiple streaming protocols, including snapshots.

There will be a full blog post about installing Klipper on the Sapphire. Consider this an announcement.
Some of statistics on my previous project – Caretaker.

Habr – 18K views, 92 likes, 161 bookmarks.

Thingiverse – 58K views, 1.3 K likes, 1K downloads, 550 bookmarks.

GitHub – 64 stars across 3 repositories.

Personal blog – 1900 views on the first article in the series.

YouTube demo video – 4K views, 100 likes.

Tomorrow will be the article on integration with Home Assistant.

Some notes on the platforms:

* Habr – the article made the top lists for the day and for the week. Most views and reactions came within the first three days.

* Thingiverse – the project gradually climbed to #1 in the “Best of the Month” section, which is the site’s main showcase; after thirty days, traffic also dropped off.

YouTube – the first video’s 4 K views were driven entirely by two main platforms, but the second video demonstrating the Bluetooth joystick has already gathered 500 views purely via recommendations—which is quite good for a video of this type and for this channel.

Thank you for your support!
🔥1
The promised article about implementing a Home Assistant plugin for managing the ESP32 interface is available on the blog.

One might think it was just a matter of porting an existing interface into HA—what could possibly go wrong? As it turns out, everything can go wrong.

Details are in the article; here are a couple of takeaways:

AI knows how to write Python plugins for HA, but gets tripped up on the details;

The HA authorization mechanism is nontrivial—via WebSocket you must obtain a signed key for each endpoint and append it to the URL—in my case, virtually every request to the robot API goes through this mechanism.

This series of articles about the Caretaker is almost complete—there will still be a video showing the manufacturing process, fixing a couple of HA-specific bugs, and small enhancements (in the YouTube comments they requested WASD controls). I’ll probably fit all that into one more article in due course.
🔥1
This media is not supported in your browser
VIEW IN TELEGRAM
New device added to the arsenal!

You probably wouldn’t go out of your way to look up what a cat looks like through a thermal camera, so here’s mine.

P.S. This is the Mileseey TR256i — I’m not a professional, so in cases like this I choose budget-friendly devices with decent reviews and specifications.
Here's what can happen to plastic if you leave it in a car under the sun.

These are parts for a future project — I printed them from leftover filament and glued them together with a 3D pen. The entire batch was supposed to be PETG, but either those lime green pieces turned out to be PLA, or it's an ultra-soft PETG that starts warping at relatively low temperatures.

So now, it's either reprint everything or try to fix it with a heat gun. I’ll start with the latter.
Positroid live
Here is one of the first 4K print timelapses for one of the upcoming projects that prompted me to upgrade to a Raspberry Pi 4B. Main reasons and benefits of switching to Klipper: 1. After replacing the extruder from a BMG to a Biqu H2 V2S, the printer could…
Media is too big
VIEW IN TELEGRAM
I've got a bit more to say about Klipper and timelapses – particularly observant people might have noticed dropped frames.

There’s an issue on GitHub reporting the same problem with a similar stack – people were also using IP Webcam on a phone as the camera source.

This led me to the idea that the root cause lies in the timeout for downloading the snapshot image.

I had a bit of free time and tried to dig into the error myself. I cloned the repository, opened it in Cursor (an IDE with AI), pasted the text from the issue, and asked it to fix the problem. The first prompt already gave me working changes. It turned out to be trivial — the timeout was hardcoded to 2 seconds, so I added a configurable parameter for it.

I set it to 5 seconds and did a test print with 80 layers — not a single frame was dropped.

The issue is resolved now, so I submitted a Pull Request to the repository. Unfortunately, I doubt it’ll get merged, the project seems to have been abandoned for a couple of years now.
New gadget!

From time to time, I have to work with wood. One of the latest projects was building book shelves into a rack.

Overall, I already have quite a bit of equipment — a handheld router, circular saw, sanding machines, and a planer–jointer combo.
But long straight cuts or sheet plywood rip cuts have always been a bit of a struggle. I even made a DIY guide rail for my hand circular saw to deal with it.

Now, the struggle is over — the Einhell TC-TS 2025/2 U 2000W should take care of that. Just like last time, it’s in the budget segment, but it has everything I actually need.

To complete the full woodworking setup, I just need to build a router table (I already have the insert plate and handheld routers).

P.S. New gadgets don’t pop up as often as it might seem — it’s just that I recently had a birthday)