USART communication using PIC microcontroller: Learning PIC Microcontrollers [Chapter 12]

In this chapter, we’ll explore the versatile world of USART communication using PIC, a vital link between devices like PCs and microcontrollers. UART (Universal Asynchronous Receiver/Transmitter) or USART facilitates seamless serial data exchange, supporting full-duplex transmission and reception asynchronously. Additionally, it can operate in half-duplex mode synchronously. Get ready for Read more

Internal Temperature of STM32

Sometimes, we need to measure or check the internal temperature of the microcontrollers for safety reasons. So, in this article, I’ll cover how to measure the Internal Temperature of STM32 microcontrollers using the STM32CubeIDE compiler. So let’s begin. Why need to measure Internal Temperature? The answer is simple, for safety. Read more

Save String in the EEPROM

In this article, we are going to see how we can store String in the EEPROM of a microcontroller and recall those strings to print on display or use it for different purposes. Usually, we use ROM as the main memory and RAM for variables. But this technique will save Read more