<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Blog - All Comments</title><link>/technologies/embedded/b/blog</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: ESP32 Cheap Yellow Display (CYD) Guide with a Jellyfish example</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/esp32-cheap-yellow-display-cyd-guide-with-a-jellyfish-example</link><pubDate>Wed, 01 Apr 2026 15:04:05 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b373b718-282b-48fa-9ac9-01f6c8638b5a</guid><dc:creator>shabaz</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;The menu is slowly coming along..&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;There are just three types of things to tap on:&lt;/p&gt;
&lt;p&gt;(a) plain buttons,&lt;br /&gt;(b) buttons with a built-in value display, and&lt;br /&gt;(c) buttons with on/off slider.&lt;/p&gt;
&lt;p&gt;All the above can be&amp;nbsp;individually dimmed as required, if (say)&amp;nbsp;if an admin password is not entered.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;For almost zero additional code, the menu code is reused&amp;nbsp;to provide &amp;quot;MsgBox&amp;quot;- type functionality (see Status in the video) by simply removing the Cancel button.&lt;/p&gt;
&lt;p&gt;Poor quality handheld video:&lt;/p&gt;
&lt;p&gt;[View:https://www.youtube.com/shorts/JmIlt-163i0:640:360]&lt;/p&gt;
&lt;p&gt;Another option could be to use LVGL, which apparently &amp;quot;ESPHome&amp;quot; uses, and then menus can be created with config files (I believe). It might be more heavyweight in terms of resource consumption though.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29628&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: ESP32 Cheap Yellow Display (CYD) Guide with a Jellyfish example</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/esp32-cheap-yellow-display-cyd-guide-with-a-jellyfish-example</link><pubDate>Mon, 30 Mar 2026 16:36:06 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b373b718-282b-48fa-9ac9-01f6c8638b5a</guid><dc:creator>shabaz</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Despite planning to rely on BLE for config, I realized that a minimal on-screen menu might be occasionally helpful for projects, for instance, to switch BLE on or off, or to enter a passkey to enable BLE or whatever.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m sure menu systems must exist for the CYD, but I figured it would be worth starting from scratch, to ensure very little Flash and RAM is required, and to try to keep it very general, for flexibility.&lt;/p&gt;
&lt;p&gt;This uses C arrays, for storing each menu detail. There is a class called MenuSystem, with a displayMenu method, e.g.&lt;/p&gt;
&lt;p&gt;menu.displayMenu(MENU_TOP,&amp;nbsp; &amp;quot;-&amp;quot;) would show the following:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-b373b718-282b-48fa-9ac9-01f6c8638b5a/20260330_5F00_172010.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;So, if the user was to (say) press on the PWM button, then menu.displayMenu(MENU_PWM, &amp;quot;-&amp;quot;) would be called (the &amp;quot;-&amp;quot; can be replaced with a default value so the user can see what&amp;#39;s currently configured). And no backspace, just cancel to keep the code simple.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/1280x720/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-b373b718-282b-48fa-9ac9-01f6c8638b5a/20260330_5F00_172321.jpg" /&gt;&lt;/p&gt;
&lt;p&gt;(The minus button shouldn&amp;#39;t be there, that was a mistake in the array of button names for that particular menu).&lt;/p&gt;
&lt;p&gt;The code allows up to 12 arbitrary buttons per menu, which is just enough for numeric, but of course insufficient for full text extry (I think that would be tedious to enter on such a small screen anyway, so it would be better to just use the BLE menu option, then do the rest on the mobile phone.&lt;/p&gt;
&lt;p&gt;Once this is working I&amp;#39;ll put it on GitHub.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29628&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: ESP32 Cheap Yellow Display (CYD) Guide with a Jellyfish example</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/esp32-cheap-yellow-display-cyd-guide-with-a-jellyfish-example</link><pubDate>Mon, 30 Mar 2026 00:37:28 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b373b718-282b-48fa-9ac9-01f6c8638b5a</guid><dc:creator>kmikemoo</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;[mention:b0bc65b9ecdc4307bd967592f00e340a:e9ed411860ed4f2ba0265705b8793d05]&amp;nbsp;Thank you for the detailed instructions.&amp;nbsp; I also appreciate the insight on hackaday.&amp;nbsp; I was thinking that I just didn&amp;#39;t know how to use the site correctly.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29628&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: ESP32 Cheap Yellow Display (CYD) Guide with a Jellyfish example</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/esp32-cheap-yellow-display-cyd-guide-with-a-jellyfish-example</link><pubDate>Sun, 29 Mar 2026 19:19:09 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:b373b718-282b-48fa-9ac9-01f6c8638b5a</guid><dc:creator>DAB</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Nice post.&lt;/p&gt;
&lt;p&gt;Interesting little display.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29628&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Wide 3D-Printed Breadboard Can Fit MCUs with No Wasted Pins</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/wide-3d-printed-breadboard-can-fit-mcus-with-no-wasted-pins</link><pubDate>Fri, 20 Mar 2026 08:22:39 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fd7375f5-d4c2-46b4-bc98-e3b23cb2201d</guid><dc:creator>Andrew J</dc:creator><slash:comments>2</slash:comments><description>&lt;p&gt;It&amp;rsquo;s an interesting idea. &amp;nbsp;Would an easier approach be to cut a pre-made breadboard down the middle so the two parts can be separated to the required distance? It should be possible 3d-print a holder to put them in to keep them steady which wouldn&amp;rsquo;t require the same level of precision.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29596&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Arduino Launches New Board Integrated With AI - VENTUNO Q</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/arduino-launches-new-board-integrated-with-ai---ventuno-q</link><pubDate>Tue, 10 Mar 2026 06:43:41 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:5e5e4c43-b2c2-4e08-9f51-2f08622d6aca</guid><dc:creator>dixonselvan</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;Impressive development! Looking forward to explore this board.&amp;nbsp;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29571&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: I wrote a hands-on Raspberry Pi Pico 2 project book — free review copies for embedded developers</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/i-wrote-a-hands-on-raspberry-pi-pico-2-project-book-free-review-copies-for-embedded-developers</link><pubDate>Wed, 04 Mar 2026 15:24:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:789caa8f-db02-4484-9084-a725cbe939fd</guid><dc:creator>micheal.embedded</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;im sorry just updated the github&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29561&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Infosec Developer Emulates X86 Processer Using CSS</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/infosec-developer-emulates-x86-processer-using-css</link><pubDate>Sat, 28 Feb 2026 19:19:30 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:dfe19035-c7b5-4b0a-977c-05e8ff2732c7</guid><dc:creator>DAB</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Very interesting.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29545&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Infosec Developer Emulates X86 Processer Using CSS</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/infosec-developer-emulates-x86-processer-using-css</link><pubDate>Sat, 28 Feb 2026 09:29:33 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:dfe19035-c7b5-4b0a-977c-05e8ff2732c7</guid><dc:creator>Andrew J</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Astounding.&amp;nbsp;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29545&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Infosec Developer Emulates X86 Processer Using CSS</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/infosec-developer-emulates-x86-processer-using-css</link><pubDate>Fri, 27 Feb 2026 22:22:19 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:dfe19035-c7b5-4b0a-977c-05e8ff2732c7</guid><dc:creator>dougw</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Very cool...&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29545&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Availability of Bare-Die (KGD) MCU and Sub-GHz Transceiver (Standalone or Integrated)</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/availability-of-bare-die-kgd-mcu-and-sub-ghz-transceiver-standalone-or-integrated</link><pubDate>Sat, 21 Feb 2026 13:19:07 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:55619a33-8df1-45e0-98f8-40265d37df20</guid><dc:creator>BigG</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;span class="T286Pc" data-sfc-cp="" data-complete="true"&gt;TI CC1352 uses M4F / CC1354 uses M33. BGA package available&amp;nbsp;(DSBGA)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="T286Pc" data-sfc-cp="" data-complete="true"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="T286Pc" data-sfc-cp="" data-complete="true"&gt;&lt;/span&gt;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29537&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Availability of Bare-Die (KGD) MCU and Sub-GHz Transceiver (Standalone or Integrated)</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/availability-of-bare-die-kgd-mcu-and-sub-ghz-transceiver-standalone-or-integrated</link><pubDate>Sat, 21 Feb 2026 11:13:57 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:55619a33-8df1-45e0-98f8-40265d37df20</guid><dc:creator>shabaz</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;There was an answer to that here:&lt;/p&gt;
&lt;p&gt;&lt;a href="/technologies/embedded/f/embedded-forum/56658/find-wireless-arm-mcu" data-e14adj="t"&gt;https://community.element14.com/technologies/embedded/f/embedded-forum/56658/find-wireless-arm-mcu&lt;/a&gt;&lt;/p&gt;
&lt;img src="https://community.element14.com/aggbug?PostID=29537&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Polpotronics Launches PicoIDE, An Emulator for Retro Hardware</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/polpotronics-launches-picoide-an-emulator-for-retro-hardware</link><pubDate>Thu, 12 Feb 2026 16:00:10 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:74b06dc3-fd4d-410d-94b5-08ebe4ce18e6</guid><dc:creator>dougw</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;It would be great if it could actually read floppies and transfer the contents to FLASH.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=29520&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Improving User Experience with QR Codes for Microcontrollers!</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/improving-user-experience-with-qr-codes-for-microcontrollers</link><pubDate>Sun, 08 Feb 2026 02:59:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:959a497a-63d7-46d9-a017-48d7e7667d5e</guid><dc:creator>SuperMichael</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;I grow peaches. I want to sell them by the lb self service.&lt;/p&gt;
&lt;p&gt;My idea is to connect a scail that outputs weight over serial connection to a micro controller. Then calculate the price. The I would like to imbed that price into a (mailto) along with my email. I&amp;#39;d then like to display that mailto as a QR code.Mailto will populate the senders email automatically. I will then send an e transfer request to that email.&lt;/p&gt;
&lt;p&gt;customer puts the peaches on the scail, they scan the QR with there phone, click link , email app opens, click send, they get a notification on there bank app to approve e transfer.&lt;/p&gt;
&lt;p&gt;Or should I do price by peach and my email for e transfer? Probably better...&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=26975&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Working with the Renesas RA4M1 Microcontroller</title><link>https://community.element14.com/technologies/embedded/b/blog/posts/working-with-the-renesas-ra4m1-microcontroller</link><pubDate>Tue, 16 Dec 2025 04:44:27 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:5f299423-e65f-406b-9226-caeb9741e796</guid><dc:creator>Diego56</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;What about using plain C instead of C++?&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=25823&amp;AppID=7&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item></channel></rss>