Embedded GUI Design: Prototyping GUIs on RTOS Devices vs. Mobile Platforms

August 15, 2025 6 min read


Designing embedded graphical user interfaces (GUIs) for devices such as medical monitors, smart thermostats, and automotive tuners demands unique strategies compared to mobile platforms. These devices operate under strict limits for CPU, memory, power, and display, unlike mobile apps that rely on powerful hardware. Drawing on a decade of experience in embedded systems for companies like Express Logic, Novanta, COBB Tuning, Microsoft, and WiSuite USA, I focus on early interactive prototyping to clarify requirements and test usability under real constraints. This article explains key differences in designing GUIs for real-time operating systems like ThreadX versus Android or iOS, and outlines strategies for achieving reliable performance, predictable memory use, and a smooth transition from prototype to product.

What Sets Embedded GUIs Apart?

Embedded GUIs are made for devices with limited computing power, memory, and display size, such as a 480x600 touchscreen on an appliance or an 800x480 medical display. Because of these limits, layouts, graphics, and input handling need to be carefully optimized for fast response and steady memory use. For example, with just 32 KB of RAM, the system may only allow a screen redraw time of 150 ms, which affects how responsive the device feels. Unlike Android and iOS, which offer flexible tools and frameworks, many embedded products use real-time operating systems like Eclipse ThreadX or PX5 RTOS. These systems keep response times predictable by using priority-based scheduling and small kernels. In this context, prototyping is not just about looks—it’s the main way to test navigation, animation, and graphics pipelines against the device’s limits before moving to hardware and RTOS integration.

Mobile vs. Embedded GUI Design: A Comparison

The table below summarizes key platform differences in graphics, programming languages, and resource limits that influence design methods for mobile and embedded GUIs.

Feature Mobile Devices (Android & iOS) Embedded Systems
Resolutions High DPI
(1080p — 4K)
Low DPI
(480×600 — 800×480)
Fonts Font sizes and faces, without limits Each font size/face as separate asset
Graphics Formats SVG, JPG, PNG, GIF, WEBP PNG (8/24-bit), GIF
Animations SVG animations, CSS/JavaScript PNG sprite sheets, GIF animations
Touch & Input Multi-touch, gestures, haptics Single-touch
OS Android, iOS with SDKs RTOS (e.g., PX5 RTOS, RTOSX KERNEL, Eclipse ThreadX, FREERTOS)
Scaling Dynamic scaling (zoom, rotation, resolution changes) Fixed at 100% scale, no resizing or rotation.
Memory Management High RAM
4 GB – 16 GB
Ultra-low RAM
32 KB – 512 KB
Dev Languages Swift, Kotlin, Java, Dart (Flutter), JavaScript (React Native) C, C++, Rust, MicroPython

Embedded GUIs require efficient custom designs, while mobile platforms benefit from hardware that allows more visual flexibility. Recognizing these distinctions guides better design decisions.

Showcasing High-End GUI Designs

Here are a few examples of my custom GUI designs and prototypes for different embedded systems. These show how thoughtful visual design and early prototyping can make development go more smoothly:

WiSuite Thermostat GUI: A 5-inch and 7-inch touchscreen interface offering multilingual support, HVAC control, humidity monitoring, and real-time weather data. Optimized PNGs and clickable HTML/CSS prototypes showcase a user-friendly layout with a Green mode, supporting WiSuite’s technology that reduces energy costs by 40% in hospitality settings while enhancing guest satisfaction.

Touchscreen thermostat interface for WiSuite
Touchscreen thermostat interface with weather integration and a clean, multilingual layout, 5-inch and 7-inch models.

COBB Tuning Accessport GUI: A touchscreen interface for automotive enthusiasts, featuring boost control and RPM monitoring. Over 100 high-fidelity screens designed, built with Embedded Wizard were prototyped to align with hardware limits.

A touchscreen interface for automotive enthusiasts
Designed for performance on the go, the Accessport GUI tuner, with boost control, data logging, and RPM monitoring.

Novanta Medical GUI: A custom 800×480-pixel Linux-based touchscreen GUI for clinical use, designed in Adobe Illustrator to create a user-focused interface. Optimized PNG-based icons and graphics, including EKG and Pulse animations, ensure visual clarity and efficiency. Detailed specifications delivered for seamless integration with QML on Reach Technology’s embedded controller.

Linux-based touchscreen GUI for clinical use
Medical GUI for an embedded Linux LCD touchscreen controller, displaying patient vitals in real time.

Eclipse ThreadX GUIs: Six reference GUIs for Azure RTOS GUIX Studio, covering automotive, consumer, medical, hospitality, white goods, and industrial controls, designed within 480×600-pixel constraints. Interactive prototypes showcased fluid interactions. These reference designs, ranging from smartwatch interfaces to medical device dashboards, served as developer templates. Test drive a web-based prototypes on the Artenergy website.

Six reference GUIs for Azure RTOS GUIX

Azure RTOS GUIX designed for embedded and IoT systems—covering medical, automotive, consumer, hospitality, white goods, and industrial control.

Key Insights from a Decade of Embedded GUI Design

My work emphasizes design and prototyping:

  1. User-Centric Design: Clear interfaces, like Novanta’s medical GUI, reduce errors in critical settings.
  2. Constraints Drive Innovation: Low resolutions (e.g., 480×600) inspire efficient PNG-based designs, as seen in ThreadX projects.
  3. Prototyping is Essential: Using HTML/CSS prototypes, like we did for Azure RTOS GUIX, gives us a clear plan and lets us test real interactions early. This helps us spot problems sooner and save on development costs. Our approach reduced extra work, supported the engineering team, and became a strong selling point for clients.
  4. RTOS Ensures Precision: ThreadX delivers lag-free performance and seamless wifi connectivity critical for WiSuite’s energy-saving GUI.
  5. Collaboration Fuels Success: Working with engineers ensures designs, like those for Microsoft, are both beautiful and functional.

“On a small screen, every pixel is precious and must be applied with precision”

Design and Prototyping Process

In our process, prototyping is a way to reduce risk. It helps make sure the GUI works within real device limits and makes it easier to hand off to engineering.

  • Research: Analyze user tasks and hardware budgets (for example, 32 KB RAM, display resolution, CPU class, storage, and input method) to set explicit performance and memory envelopes before visuals are drafted. This step identifies worst-case screens, update rates, font/icon needs, and asset pipelines, ensuring layout and animation choices never exceed target ceilings.
  • Define Elements: Map screen flows and layouts using Adobe Illustrator or other vector tools, applying a content-first hierarchy that prioritizes clarity and usability within the target resolution constraints. Specify critical parameters such as hit-area sizes, typographic sizes, and grid spacing optimized for embedded touchscreen interaction. Each screen should document intended widget types, anticipated dynamic states (e.g., disabled, active), and error or fallback conditions to prevent scope creep and reduce ambiguities during development and testing.
  • Simplify: Remove non-essential elements, compress hierarchy depth, and replace heavy effects with lightweight affordances to minimize draw calls, texture memory, and state complexity. This trims both RAM/FLASH usage and timing variance, helping the GUI stay deterministic under load.
  • Prototype: Build interactive HTML/CSS prototypes using SVG assets to enable rapid iteration on stroke, color, motion, and density without raster re-exports. Validate with W3C checks and structured hallway testing to catch contrast, hit-target, and focus-order issues early, and time-critical interactions (touch-to-response, transition durations) to align with the device’s latency budget.
  • Deliver: Export approved visuals as optimized, transparent PNGs. Provide a zipped, versioned asset pack with consistent naming conventions, states, and densities. Include a concise specification: screen map, widget behaviors, timing guidance, color and type values. Host the package on secure pages to ensure a single source and reduce implementation errors.

Visualizing the Comparison

An interactive chart illustrates the relative capabilities of mobile versus embedded GUI design, highlighting differences in resolutions, memory, graphics formats, and animations.

Conclusion

Designing embedded GUIs is fundamentally different from building for mobile platforms. Success depends on visuals optimized for constrained hardware and on rigorous prototyping to validate performance, memory use, and usability before committing to implementation. You can explore all six Azure RTOS GUIX reference prototypes on the Artenergy Embedded GUI Design gallery.

If you’d like quick feedback or a detailed review of your embedded GUI design, feel free to share a current challenge or bottleneck you're experiencing via a quick email to . This approach can spark a detailed discussion and help us ensure your interface delivers both clarity and responsiveness on real-world devices.


Sergey Martinov
Written bySergey Martinov
Co-founder of Artenergy