es
Feedback
Embedded Systems

Embedded Systems

Ir al canal en Telegram

News, articles, guides, analytics, projects and startups from the embedded industry. Topics of the channel: ◽️ machine learning ◽️ internet of things ◽️ embedded software ◽️ advanced electronics ◽️ new engineering ideas ⤵️ Share and subscribe!

Mostrar más

📈 Análisis del canal de Telegram Embedded Systems

El canal Embedded Systems (@embedded_system) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 13 709 suscriptores, ocupando la posición 9 374 en la categoría Tecnologías y Aplicaciones y el puesto 47 en la región Países Bajos.

📊 Métricas de audiencia y dinámica

Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 13 709 suscriptores.

Según los últimos datos del 21 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 109, y en las últimas 24 horas de 3, conservando un alto alcance.

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 11.38%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 6.11% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 561 visualizaciones. En el primer día suele acumular 838 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 9.
  • Intereses temáticos: El contenido se centra en temas clave como programming, microcontroller, battery, pcb, pico.

📝 Descripción y política de contenido

El autor describe el recurso como un espacio para expresar opiniones subjetivas:
News, articles, guides, analytics, projects and startups from the embedded industry. Topics of the channel: ◽️ machine learning ◽️ internet of things ◽️ embedded software ◽️ advanced electronics ◽️ new engineering ideas ⤵️ Share and subscribe!

Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 22 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.

13 709
Suscriptores
+324 horas
-127 días
+10930 días
Archivo de publicaciones
+3
🤖 Transforming a 3D printer into a soldering machine Surface-mount technology has been a fantastic force multiplier for electronics in general and for hobbyists in particular. But sometimes you’ve got no choice but to use through-hole components, meaning that even if you can take advantage of SMDs for most of the design, you still might need to spend a little time with soldering iron in hand. Author added a bracket to the Longer LK4 printer to hold a soldering iron, and a guide for solder wire. The solder is handled by a more-or-less standard extruder, which feeds it into the joint once it’s heated by the iron. The secret sauce here is probably the fixturing, with 3D-printed jigs that hold the through-hole connectors in a pins-up orientation on the bed of the printer. With the PCB sitting on top of the connectors, it’s just a matter of teaching the X-Y-Z position of each joint, applying heat, and advancing the solder with the extruder. More information: Project review Original video #robots #articles

+3
💻 Foxglove Studio - open source visualization & debugging tool for robotics Use customizable layouts to arrange interactive visualizations, and quickly understand what your robot is doing. Foxglove Studio comes with a rich suite of built-in panels that can be arranged into the perfect layout for your task: ▫️ Display your robot in a 3D scene—complete with point clouds, TFs, and a world map. ▫️ Display images from multiple camera feeds, and overlay relevant bounding boxes and labels. ▫️ Plot message values over time, or plot an array of values at each timestamp. ▫️ Track and detect changes in your robot's state. ▫️ Inspect incoming ROS messages in tabular format. ▫️ Drill down into your ROS messages to better understand and debug the state of your robot. More information... #robots #software

📚 Ethem Mining - Machine Learning for Beginners (2019) This book is written in beginner friendly language to help you to understand the ins and outs of machine learning! It will teach you: ▫️ The basics of machine learning ▫️ How machine learning is beneficial in today’s world ▫️ The different approaches to machine learning ▫️ The concept of big data analysis ▫️ The link between big data and machine learning ▫️ The different machine learning algorithms ▫️ The concept of artificial neural networks #books #machine_learning #artificial_intelligence #beginner

+3
📟 Mini Raspberry Pi Server With Built In UPS Cool project of a mini Raspberry Pi server with a built-in UPS and OLED stats display. A Raspberry Pi makes a great server for a NAS or for media streaming, home automation, or even a home security hub for your cameras. All of these projects would benefit from having a built-in UPS to ensure that the Pi is kept running in the event of a power interruption. The mini server could last around one hour and a half with one 2,500 mAh. The UPS and associated battery could also power an additional portable display, so you could potentially make it a portable mini PC with two batteries of greater capacity. More information... #projects #raspberry #IoT #3d_modeling

📊 Gallery of Python's Matplotlib graphs with pieces of code Matplotlib - plotting library for the Python programming languag
+3
📊 Gallery of Python's Matplotlib graphs with pieces of code Matplotlib - plotting library for the Python programming language and its numerical mathematics extension NumPy. Super useful site with all the possible to create graphs with the most popular Python plotting library. All the necessary codes can be downloaded after clicking on the desirable graph. Can be used for depicting and analyzing the data from your projects. More information... #python #programming

📚 Alexander Barkalov, Larysa Titarenko, Małgorzata Mazurkiewicz - Foundations of Embedded Systems (2019) The book begins by discussing the distinctive features of ESs, above all their cybernetic-physical character, and how they can be designed to deliver the required performance with a minimum amount of hardware. In turn, it presents a range of design methodologies. Considerable attention is paid to the hardware implementation of computational algorithms. It is shown that different parts of complex ESs could be implemented using models of finite state machines (FSMs). Also, field-programmable gate arrays (FPGAs) are very often used to implement different hardware accelerators in ESs. The book pays considerable attention to design methods for FPGA-based FSMs, before the closing section turns to programmable logic controllers widely used in industry. #books #design

💻 uLisp - Lisp for microcontrollers uLisp is a version of the Lisp programming language specifically designed to run on micr
💻 uLisp - Lisp for microcontrollers uLisp is a version of the Lisp programming language specifically designed to run on microcontrollers with a limited amount of RAM, from the Arduino Uno based on the ATmega328 up to the Teensy 4.0/4.1. You can use exactly the same uLisp program, irrespective of the platform. Because uLisp is an interpreter you can type commands in, and see the effect immediately, without having to compile and upload your program. This makes it an ideal environment for learning to program, or for setting up simple electronic devices. Lisp is also an ideal language for learning about fundamental programming concepts. It incorporates string handling, list processing, and garbage collection, and so is also an excellent language for expressing complex ideas, such as teaching a robot to solve mazes or finding the shortest route on a map. More information... #programming #lisp

📚 Smaller C: Lean Code for Small Machines (2021) Author Marc Loy shows you how to write clean, maintainable C code from scratch. This language and its cousin, C++, are still widely used to write low-level code for device drivers or operating systems. By understanding C syntax and its quirks, you'll gain an enduring computer language literacy that will help you pick up new languages and styles more easily. ▫️ Learn C fundamentals, such as data types, flow control, and functions ▫️ Explore memory management including how programs work on small devices ▫️ Understand answers provided in online forums such as Reddit or Stack Overflow ▫️ Write efficient, custom C code that's both readable and maintainable ▫️ Analyze the performance of your code and weigh optimizations ▫️ Evaluate third-party libraries for use in your own projects ▫️ Create your own libraries to share with others #books #programming #clean_c #beginner

🎬 What Actually is Embedded C/C++? Is it different from C/C++? Short analytical video. There's a lot of misinformation out there about what embedded C actually is, how it is (or isn't) different from C, and author made this video to clear things up. https://youtu.be/KQBBWvY-s0o #video #programming #cpp

📚 Andy King - Programming the Internet of Things (2021) Learn how to program the Internet of Things with this hands-on guide. By breaking down IoT programming complexities in step-by-step, building-block fashion, author and educator Andy King shows you how to design and build your own full-stack, end-to-end IoT solution - from device to cloud. This practical book walks you through tooling, development environment setup, solution design, and implementation. ▫️ Design an end-to-end solution that implements an IoT use case ▫️ Set up an IoT-centric development and testing environment ▫️ Organize your software design by creating abstractions in Python and Java ▫️ Use MQTT, CoAP, and other protocols to connect IoT devices and services ▫️ Create a custom JSON-based data format that's consumable across a range of platforms and services ▫️ Use cloud services to support your IoT ecosystem and provide business value for stakeholders #books #IoT #programming

📥 Building a Linux system for the STM32MP1 Series of articles that describes how to build an embedded Linux device based on
📥 Building a Linux system for the STM32MP1 Series of articles that describes how to build an embedded Linux device based on the STM32MP1 platform, using the Buildroot build system. Buildroot is a set of Makefiles and script that automates the process of download the source code of the different software components, extract them, configure them, build them and install them. The hardware platform used in these articles is the STM32MP157-DK2. More information... #articles #linux #operating_systems #software #stm32

+3
🔮 A Python Controlled Moon Phase Lamp Powered by Raspberry Pi Zero Nice project of a smart lamp with popular microcontroller and a program written in Python. All key moments are explained in the video and article of the project. It is a snapology origami sphere, has a NeoPixel ring for a light and is driven by a Raspberry Pi Zero. It also has a huge variety of light programs including a gentle sunrise for the morning, and a drifting off program which dips from blue and settles at a low level as a night light. More information... #projects #python #raspberry #zero

📘 Operating Systems Notes Short article with key moments to remember about operating systems. Here are some rough notes auth
📘 Operating Systems Notes Short article with key moments to remember about operating systems. Here are some rough notes author put together as part of revision for a university course. They are heavily based on the course lecture notes by Kevin Elphinstone and Leonid Ryzhyk. All diagrams are sourced from those lecture notes, some of which are in turn from the text book, A. Tannenbaum, Modern Operating Systems. More information... #articles #operating_systems

📟 Reverse Engineering the M6 Smart Fitness Bracelet Interesting article describing the process of reverse engineering of the
+3
📟 Reverse Engineering the M6 Smart Fitness Bracelet Interesting article describing the process of reverse engineering of the popular fitness bracelet. Following a year and a half of sitting inside the house, author set out to improve his wellbeing by getting a new fitness tracker. It worked out better than he expected - hacking on it kept him busy for a couple of months - at the small price of making him sitting inside the house even harder. Before starting, author stated his goals as follows. He wanted to: ▫️ Understand its hardware. ▫️ Figure out how to talk to it. ▫️ Dump its stock firmware. ▫️ Get it to run custom code, ideally making use of its: GPIO pins, color display, Bluetooth low energy (BLE) capabilities. Author documented the process of going through these goals in the following article. More information... #reverse #hardware

📚 Cameron Coward - A Beginner’s Guide to 3D Modeling: A Guide to Autodesk (2019) This book is a project-based, straightforward introduction to computer-aided design (CAD). You’ll learn how to use Autodesk Fusion 360, the world’s most powerful free CAD software, to model gadgets, 3D print your designs, and create realistic images just like an engineering professional—with no experience required! You’ll learn how to: ▫️ Design a moving robotic arm, a door hinge, a teapot, and a 20-sided die. ▫️ Create professional technical drawings for manufacturing and patent applications. ▫️ Model springs and other complex curves to create realistic designs. ▫️ Use basic Fusion 360 tools like Extrude, Revolve, and Hole. ▫️ Master advanced tools like Coil and Thread. #books #3d_modeling #design

+3
📥 Embox - configurable operating system for embedded systems Embox main idea is using Linux software everywhere including MCUs. Imagine, you need a single application in the embedded system, but you want to use some libraries (Qt, OpenCV, etc). In the Linux case, you need high-performance hardware. In Embox case you can use the software as bare-metal including the only required system parts. In other words, Embox is util which allows creating a special distributive for your exact purpose. Although there are kernel, network, file system, standard POSIX library etc. you can accurately configure every module. Therefore it will include only those parts that you wish. Embox allows you to: ▫️ use low power hardware ▫️ use boards with small resources ▫️ use existing software ▫️ develop your software on Linux ▫️ care less about security because static linking disables executing external software More information... #operating_systems #software

📚 Gareth Halfacree, Ben Everard - Get started with MicroPython on Raspberry Pi Pico (2021) In Get Started with MicroPython on Raspberry Pi Pico, you will learn how to use the beginner-friendly language MicroPython to write programs and connect hardware to make your Raspberry Pi Pico interact with the world around it. Using these skills, you can create your own electro‑mechanical projects, whether for fun or to make your life easier. ▫️ Set up your Raspberry Pi Pico and start using it ▫️ Start writing programs using MicroPython ▫️ Control and sense electronic components ▫️ Discover how to use Pico’s unique Programmable IO ▫️ Make a reaction game, burglar alarm, temperature gauge, and many more #books #python #raspberry #pico

🎬 Development of a Rocket with landing feature Incredibly interesting video explaining the process of building of a rocket with ability of landing vertically (like SpaceX rockets). Would be extremely useful for control engineers as author talks a lot about data analysis. Moreover, the electronics and programming parts are also discussed in a video. https://youtu.be/YixmPK26upk #video #design #control

📚 MagPi (July 2021) The latest copy of the official Raspberry Pi magazine. 50 pages of projects & tutorials. Inside The MagPi magazine #107: ▫️ Become a Raspberry Pi genius. Gain a deeper understanding of Raspberry Pi and learn essential maintenance techniques. ▫️ Make a weather watcher. Use Raspberry Pi and an e-ink display to tap into a Weather API and build an always-on weather watcher. ▫️ Recreate the Mars helicopter. One maker has used NASA’s F prime open-source operating system (being used to control Ingenuity on Mars) with an off-the-shelf drone. ▫️ Brilliant handheld projects. Discover these ‘big builds’ that you can make in a small space. ▫️ Add vinyl decals to your arcade machine. KG’s incredible arcade machine starts to take shape with the artwork attached. Learn to make an arcade machine that looks as good as it plays. ▫️ Marty the Robot v2. We review this two-legged walking robot controlled by Raspberry Pi. ▫️ ...and more! #books #raspberry #magpi

+3
🤖 Arduino based SCARA Robot In this tutorial we will learn how to build an Arduino based SCARA Robot The robot has 4 degrees of freedom and it’s driven by 4 NEMA 17 stepper motors. Additionally, it has a small servo motor for controlling the end effector or the robot gripper in this case. The brain of this SCARA robot is an Arduino UNO board which is paired with a CNC shield and four A4988 stepper drivers for controlling the motors. More information... #projects #arduino #robots #3d_modeling