<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Denny Malkin</title>
    <description>The latest articles on DEV Community by Denny Malkin (@denys_malykhin).</description>
    <link>https://dev.to/denys_malykhin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3496305%2Fbc014fc7-e62a-457b-9119-0396f440bdda.png</url>
      <title>DEV Community: Denny Malkin</title>
      <link>https://dev.to/denys_malykhin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/denys_malykhin"/>
    <language>en</language>
    <item>
      <title>Meet Embedible: Your AI Hardware Copilot Microcontrollers</title>
      <dc:creator>Denny Malkin</dc:creator>
      <pubDate>Sun, 14 Sep 2025 14:00:00 +0000</pubDate>
      <link>https://dev.to/denys_malykhin/meet-embedible-your-ai-hardware-copilot-microcontrollers-2214</link>
      <guid>https://dev.to/denys_malykhin/meet-embedible-your-ai-hardware-copilot-microcontrollers-2214</guid>
      <description>&lt;p&gt;Getting started with hardware projects is exciting — but it can also be overwhelming. If you’ve ever tried to wire up a microcontroller like the Raspberry Pi Pico W, you know the drill:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hours searching for the right wiring diagram 🔌&lt;/li&gt;
&lt;li&gt;Copy-pasting example code from forums 💻&lt;/li&gt;
&lt;li&gt;Struggling with toolchains and obscure errors ⚠️&lt;/li&gt;
&lt;li&gt;Wondering if the magic smoke is about to escape your circuit 💨&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’ve been there too. That’s why I built Embedible: an AI hardware copilot that makes prototyping microcontrollers as easy as describing what you want to build.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Embedible?
&lt;/h2&gt;

&lt;p&gt;Embedible is an AI-powered assistant for hardware prototyping. Instead of manually looking up datasheets or setting up toolchains, you simply tell Embedible what you want to create, and it generates:&lt;/p&gt;

&lt;p&gt;✅ A circuit diagram (AI circuit generator)&lt;br&gt;
✅ Ready-to-run MicroPython code for your device&lt;br&gt;
✅ Step-by-step setup guidance&lt;/p&gt;

&lt;p&gt;It’s like having a hardware Copilot for microcontrollers — turning ideas into prototypes in seconds.&lt;/p&gt;
&lt;h2&gt;
  
  
  Example: Read Joystick Coordinates with Raspberry Pi Pico W 🎮
&lt;/h2&gt;

&lt;p&gt;Let’s say you want to connect a joystick to your Raspberry Pi Pico W and read its X and Y positions.&lt;/p&gt;

&lt;p&gt;With Embedible, you just type:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Read from the joystick module. It has the following pins: GND, +5V, VRx, VRy, and SW.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And instantly get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A wiring diagram showing how to connect the joystick to GPIO pins&lt;/li&gt;
&lt;li&gt;MicroPython code that prints real-time joystick positions&lt;/li&gt;
&lt;li&gt;Simple instructions so you can run it on your Raspberry Pi Pico W in minutes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is perfect for building DIY game controllers, robotics projects, or interactive hardware without digging through countless forum posts.&lt;/p&gt;

&lt;p&gt;Watch the video to see it in action:&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/Iij0P7DvKAQ"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Why It’s Useful
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Beginners:&lt;/strong&gt; No need to memorize pinouts or code syntax—just build.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Experienced devs:&lt;/strong&gt; Rapid prototyping for hardware projects in seconds.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Educators:&lt;/strong&gt; Use visual, interactive hardware like joysticks to engage students without setup hassles.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try Embedible 🚀
&lt;/h2&gt;

&lt;p&gt;You can try Embedible today at &lt;a href="https://embedible.io" rel="noopener noreferrer"&gt;embedible.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Type in what you want to build, and your AI hardware copilot will generate the wiring, MicroPython code, and setup steps for you.&lt;/p&gt;

&lt;p&gt;👉 Stop debugging, start vibecoding. Build your first Raspberry Pi Pico project in seconds.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>vibecoding</category>
      <category>raspberrypi</category>
      <category>micropython</category>
    </item>
    <item>
      <title>Meet Embedible: AI-Powered Hardware Prototyping in Seconds</title>
      <dc:creator>Denny Malkin</dc:creator>
      <pubDate>Fri, 12 Sep 2025 03:36:12 +0000</pubDate>
      <link>https://dev.to/denys_malykhin/meet-embedible-ai-powered-hardware-prototyping-in-seconds-88j</link>
      <guid>https://dev.to/denys_malykhin/meet-embedible-ai-powered-hardware-prototyping-in-seconds-88j</guid>
      <description>&lt;p&gt;Getting started with hardware projects is exciting—but it can also be overwhelming. If you’ve ever tried to wire up a microcontroller, you know the drill:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Hours searching for the right wiring diagram&lt;/li&gt;
&lt;li&gt;Copy-pasting example code from forums&lt;/li&gt;
&lt;li&gt;Struggling with toolchains and obscure errors&lt;/li&gt;
&lt;li&gt;Wondering if the magic smoke is about to escape your circuit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’ve been there too. That’s why I built &lt;strong&gt;&lt;a href="https://embedible.io" rel="noopener noreferrer"&gt;Embedible&lt;/a&gt;&lt;/strong&gt;: a tool that uses AI to make tinkering with hardware as easy as describing what you want to build.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Embedible?
&lt;/h2&gt;

&lt;p&gt;Embedible is an AI-powered assistant for microcontrollers like the &lt;strong&gt;Raspberry Pi Pico W&lt;/strong&gt;. Instead of spending time setting up toolchains or hunting down wiring guides, you just tell &lt;strong&gt;Embedible&lt;/strong&gt; what you want to create.&lt;/p&gt;

&lt;p&gt;For example, you could type:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Run a Larson Scanner effect on a strip of 8 NeoPixels.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And &lt;strong&gt;Embedible&lt;/strong&gt; will generate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A circuit diagram showing you how to wire the LEDs&lt;/li&gt;
&lt;li&gt;Ready-to-run code that you can flash to your device&lt;/li&gt;
&lt;li&gt;Step-by-step guidance to bring it all to life&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Demo: Larsen Scanner Effect
&lt;/h2&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/srkoy8C4la0"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Why It’s Useful
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;For beginners: Skip the frustration of figuring out GPIO pinouts and code syntax—just build.&lt;/li&gt;
&lt;li&gt;For experienced devs: Great for rapid prototyping and quick demos.&lt;/li&gt;
&lt;li&gt;For educators: Visual effects like this make lessons engaging while keeping setup simple.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;You can try &lt;strong&gt;Embedible&lt;/strong&gt; right now at &lt;strong&gt;&lt;a href="https://embedible.io" rel="noopener noreferrer"&gt;embedible.io&lt;/a&gt;&lt;/strong&gt;. Just type in what you want to build, and &lt;strong&gt;Embedible&lt;/strong&gt; will generate the wiring and code for you.&lt;/p&gt;

</description>
      <category>ai</category>
    </item>
  </channel>
</rss>
