I2C and SPI Bus Analysis and Applications

I2C and SPI Bus Analysis and Applications

” KE CHUANG YANG FAN “ “I2C and SPI Bus Analysis and Applications” ——I2C and SPI Bus Analysis and Applications In order to inspire students’ enthusiasm for technology and help them better understand and learn about serial communication knowledge, the Student Science and Technology Association of the School of Automation and Information Engineering (hereinafter referred … Read more

Linux Tools i2c-tool and memtool32 for Register Operations

Linux Tools i2c-tool and memtool32 for Register Operations

Linux | Red Hat Certified | IT Technology | Operations Engineer 👇Join our technical exchange QQ group with the remark 【Public Account】 for faster access 1. First, download the i2c-tool and memtool32 tools directly to the development board for use: 2. i2cdetect command: This command is used to scan for devices on the i2c bus … Read more

Differences of STM8 I2C Compared to Other Interfaces

Differences of STM8 I2C Compared to Other Interfaces

Compared to STM32, the STM8 series microcontrollers, although less well-known, hold a certain position in industrial control and embedded systems due to their efficient performance and rich peripheral interfaces, among which the I2C (Inter-Integrated Circuit) interface plays an important role. This article will analyze the characteristics of the STM8 I2C interface and explain its advantages … Read more

Mastering I2C/SPI Communication Protocols

Mastering I2C/SPI Communication Protocols

Communication Protocol What are the differences between synchronous vs asynchronous and serial vs parallel? Communication protocols are fundamental skills that are applicable everywhere. However, very few people can confidently say they fully understand a specific communication protocol. Often, we only use part of the protocol. Hardware Engineer Growth Plan Phase IV: Hard Sound UP Master … Read more

Understanding the I²C Bus Timing in Embedded Systems

Understanding the I²C Bus Timing in Embedded Systems

The I²C bus is very common in embedded systems, but recently in a group (possibly a beginner group) communication, I was quite surprised that many people do not even understand the I²C bus basics. Today, I will explain the timing of the I²C bus. Many electronic engineers should know about the I²C bus from EEPROM … Read more

Basics of Bus – I2C Bus

Basics of Bus - I2C Bus

Introduction When it comes to driver development, we must mention the bus; the bus is the bridge for data transmission between devices. Computers categorize buses into three types: data bus, address bus, and control bus, which are collectively referred to as the system bus. Generally, the system bus, internal bus, and external bus are known … Read more

Understanding the I2C Bus

Understanding the I2C Bus

1. Overview The I2C bus is a very popular and powerful bus, commonly used for communication between one (or multiple) master devices and one or more slave devices. Figure 1 shows that various peripherals can share this bus, which only requires two wires to connect to the processor. This is one of the biggest advantages … Read more

Detailed Overview of I2C and SPI Communication Protocols

There are many serial communication protocols, among which I2C and SPI are very well-known.I2C and SPI are both bus protocols that allow users to perform short-distance serial data transmission. I2C is a two-wire communication protocol developed by Philips (now NXP), while SPI was developed by Motorola. These two protocols are commonly used in electronic devices … Read more

Raspberry Pi I2C Communication Tutorial

Raspberry Pi I2C Communication Tutorial

Click the above “Mechanical and Electronic Engineering Technology” to follow us 1. What is I2C Communication I2C (Inter-Integrated Circuit) is a serial communication protocol used for transferring data between integrated circuits (ICs). It was developed by Philips (now NXP Semiconductors) in the 1980s and has become a widely adopted communication standard in various electronic devices. … Read more

Microcontroller Driving LCD Programming Approach

Microcontroller Driving LCD Programming Approach

Source | Roof Ridge Sparrow | strongerHuang There are many methods for microcontrollers to drive LCDs, and many accompanying examples are available online. However, among the thousands of examples online, which one is your “no.1”? Today, I would like to share an approach to driving LCDs with microcontrollers in an object-oriented manner. Overview of LCD … Read more