Go Language Enhances Embedded System Development Efficiency

Go Language Enhances Embedded System Development Efficiency

Embedded system development usually requires working in resource-constrained environments, such as devices with limited memory and computing power. In such scenarios, the choice of programming language is crucial. Go language (Golang) is becoming a powerful tool for embedded development due to its efficiency, simplicity, and support for concurrency. Today, I will introduce you to some … Read more

Dog Barks and Plays with Embedded – I2C Protocol Analysis

Dog Barks and Plays with Embedded - I2C Protocol Analysis

0x00 Introduction Hacking embedded products has always been a hot topic. More and more attackers are targeting IoT embedded devices. Unlike traditional software security research, this type of research often requires a combination of relevant hardware knowledge and devices. In this article, Wang Wang will share practical cases and corresponding tool usage for the I2C … Read more

Animated Guide to Common Embedded Communication Protocols: SPI, I²C, UART, Infrared

Animated Guide to Common Embedded Communication Protocols: SPI, I²C, UART, Infrared

These animated diagrams of signal waveforms in electronic systems help us understand the mechanics of transmission. 1 SPI Transmission ▲ Figure 1 SPI Data Transmission ▲ Figure 1.2 SPI Data Transmission (2) ▲ Figure 1.3 SPI Timing Signal 2 I²C Transmission ▲ Figure 1.2.1 I2C Bus and Addressing Method 3 UART Transmission ▲ Figure 1.3.1 … Read more

Animated Guide to Common Embedded Communication Protocols: SPI, I²C, UART, Infrared…

Animated Guide to Common Embedded Communication Protocols: SPI, I²C, UART, Infrared...

This article is sourced from the Breadboard Community These animated diagrams of signal waveforms in electronic display systems help us understand the mechanisms of transmission. 1 SPI Transmission ▲ Figure 1 SPI Data Transmission ▲ Figure 1.2 SPI Data Transmission (2) ▲ Figure 1.3 SPI Timing Signal 2 I²C Transmission ▲ Figure 1.2.1 I2C Bus … Read more

Common Embedded Communication Protocols Explained

Common Embedded Communication Protocols Explained

I am Lao Wen, an embedded engineer who loves learning. Follow me to become even better together! Compiled by | strongerHuang WeChat Official Account | strongerHuang UART, SPI, I2C and other serial communications are very common methods in embedded development. The underlying communication principles are not difficult, but many beginners struggle to learn them. Today, … Read more

Animated Explanation of Common Embedded Communication Protocols: SPI, I²C, UART, Infrared…

Animated Explanation of Common Embedded Communication Protocols: SPI, I²C, UART, Infrared...

These animated diagrams of signal waveforms in electronic systems help us understand the mechanism of transmission. 1 SPI Transmission ▲ Figure 1 SPI Data Transmission ▲ Figure 1.2 SPI Data Transmission (2) ▲ Figure 1.3 SPI Timing Signal 2 I²C Transmission ▲ Figure 1.2.1 I2C Bus and Addressing Method 3 UART Transmission ▲ Figure 1.3.1 … Read more

Common Hardware Interview Questions on Communication Protocols

Common Hardware Interview Questions on Communication Protocols

Image Source: www.parlezvoustech.com 1. Common Hardware Communication Protocols? Serial Communication Protocols UART (Universal Asynchronous Receiver Transmitter): An asynchronous serial communication protocol that does not require a clock signal, commonly used for simple point-to-point communication. SPI (Serial Peripheral Interface): A synchronous serial communication protocol, typically used for high-speed communication between microcontrollers and external devices such as … Read more

Simulating MicroPython Programs in Proteus

Simulating MicroPython Programs in Proteus

As many may know, Proteus is an EDA software that supports the simulation of microcontrollers. It has previously been used to simulate 51, AVR, PIC, MSP430, etc. Over time, it has gradually added support for Arduino, Raspberry Pi, and STM32. In the latest version (v8.17 sp4), Proteus has started to support MicroPython simulation. Below, I … Read more

Raspberry Pi OLED Screen Driver and Display Issues

Raspberry Pi OLED Screen Driver and Display Issues

Submitted by Curious Bin, thank you~ Recently, while learning about the Raspberry Pi, I encountered a problem when driving the OLED screen, which was display issues. After two days of troubleshooting, I discovered that the driver chip for this OLED is not SSD1306 but SH1106. Therefore, using the Adafruit_Python_SSD1306 library results in display issues. There … Read more