In computers, all the information is represented in 0s and 1s, binary pattern must assign letters and other symbols or characters. Standard representation of this pattern was established in 1960 who names as ASCII which is stands for American Standard Code for Information Interchange. The great advantage of this system
Category: PIC16f4550 Microcontroller
How to interface DC motor with PIC microcontroller?
How to interface DC motor with PIC microcontroller? How to interface DC motor with PIC microcontroller? DC motors are electrical devices that run on DC electricity. DC converts electrical energy into mechanical energy. They are used in wide range of Read More …
What is the Flag Register of PIC Microcontroller?
What is the Flag Register of PIC Microcontroller? What is the Flag Register of PIC Microcontroller? In general, PIC flag register is an 8-bit register. It is also referred to as status register. Even though status register is 8-bits wide, Read More …
What are the Rotate Instructions in PIC Microcontroller?
What are the Rotate Instructions in PIC Microcontroller? Rotate instructions: In many applications, there is a need to perform a bitwise rotation of an operand. In the PIC18 there are 4 rotation instructions. They allow a program to rotate a Read More …
Discuss the characteristics of ADC in detail
ADC stands for analog to digital converter. It is a widely used electrical component. It converts an analog signal into its digital representation. The main component of any digital circuit that needs to process an analog signal is an ADC. The devices which use an ADC to convert analog signals into digital numbers are known as ADC devices. A microcontroller can understand and process only digital numbers. It cannot process analog signals.
What are the Practical Applications of Embedded Systems?
Introduction to Embedded Systems In this article I have discussed What are the Practical Applications of Embedded Systems and their designs? Before understanding the applications of embedded systems, lets see what are the embedded systems? How they are designed? What Read More …
Interfacing of seven segment display with pic16F877A microcontroller
Introduction Write a program forInterfacing of seven segment display with pic16F877A microcontroller using mikroC Pro. In this tutorial, I will guide you how to create a first project on mikroC Pro software for designing a counter using PIC16F877A microcontroller. First Read More …
How to calculate the time delays in PIC Programming?
Calculating the time Delays in PIC Programming In this article I will explain how to calculate the time delays of delay routines in PIC microcontroller programming. Two factors that affect the delay size are: the oscillator frequency and the number Read More …
What are the differences between RISC and CISC architecture?
Differentiate between CISC and RISC? In this article you will learn about major differences between RISC and CISC architecture. First lets see what is the RISC and CISC architecture. RISC: RISC is the abbreviation of Reduced Instruction Set Computer; it Read More …
What are the conditional and unconditional branches in PIC microcontroller ?
Conditional and Unconditional Branches What are the conditional and unconditional branches in PIC microcontroller ? Branching in the microcontroller is used for performing a task repeatedly. Repetition can be done either by checking a condition or without testing any condition. Read More …