Articles of Tutorials, DIY projects and coding of various microcontroller architechtures and family. Controllers such as 8051,PIC,AVR & ARM microcontrollers
I2C (Inter Integrated Circuit) also known as TWI (Two wire Interface) is a bus interface connection that is used in many devices such as Sensors, RTC and EEPROM. Unlike SPI this protocol only uses two wires to establish the connection… Read more
Voting or polling machines is one of the finest example for the application of a Microcontroller. This project brings you the design and programming of building a very simple, cost effective polling machines which can do great job for elections… Read more
SPI ( Synchronous Peripheral Interface) is one of the important protocols used in Microcontrollers to establish serial communication between two devices. This protocol was widely used in many devices since the data transfer rate is pretty high than other protocols… Read more
UART or serial communication is one of the important protocol used by the Microcontrollers to transmit and receive data from the external devices. Almost every controller is equipped with this protocol to make transmission and reception easier just using two… Read more
Plant watering system evolved through various stages where primitive irrigation systems possess many drawbacks as it fails to conserve water and human energy. So introducing Automation in it can help us to overcome these drawbacks and pave way to conserve… Read more
ADC holds an important significance in every Microcontroller since it allows user to measure the external analog parameters and gives the result in digital form. Almost every advanced Microcontroller is equipped with ADC and so does ARM series controllers. This… Read more
Serial communication(UART) serves an important purpose of communicating with the external devices just using two pins (RX and TX). This tutorial focuses on Programming UART aka Serial communication in ARM7 Microcontrollers. I assume that you are familiar with the working… Read more