SlideShare a Scribd company logo
1 of 39
PIC MICROCONTROLLER
PROGRAMMING
BASED ON MIKROC
Difference from A
microprocessor?
• To communicate microprocessor with
peripheral environment, special circuits must
be used.
Internal Structure
Description
• PIC – “Peripheral Interface Controller”
• Made by Microchip Technology
• Most popular by industry developers and
hobbyists
– Low cost (cents to dollars)
– Availability
– Extensive application notes
– Serial programming
4
Internal Units description
REGISTER
• An electronic circuit which can memorize the
state of one byte
SFR(Special Function Register)
• Registers whose function is predetermined by
the manufacturer of the microcontroller
• Examples are timers, A/D converter,
oscillators ,etc
INPUT / OUTPUT PORTS
• Microcontroller has one or more registers
(called ports) connected to the microcontroller
pins.
• Can change a pin function as you wish
MEMORY UNIT
• Memory is part of the microcontroller used for
data storage.
• Types
1.MROM,
2.OTP ROM, 3.UV EP
ROM, 4.FLASH MEM
5. EEPROM, 6. RAM
INTERRUPT
• Most programs use interrupts in their regular
execution
• The signal which informs the central processor
unit about such an event is called an
INTERRUPT.
CENTRAL PROCESSOR UNIT (CPU)
• Instruction decoder decodes program
instructions and runs other circuits based on
this
• Accumulator is a kind of working desk used
for storing all data upon which some
operation should be performed (addition,
shift/move etc.)
• ALU
OSCILLATOR
• Enable harmonic and synchronous operation of
all circuits within the microcontroller.
• Usually configured so as to use quartz crystal or
ceramic resonator for frequency stability
• but it can also operate as a stand-alone circuit
(like RC oscillator).
TIMERS/COUNTERS
• To measure time between two events, it is
sufficient to count up pulses generated by the
oscillator. This is exactly what the timer does.
• ‘Stopwatches’ commonly 8- or 16-bit SFRs the
contents of which is automatically incremented
by each coming pulse.
HOW DOES THE TIMER OPERATE?
• It is easy to measure short time intervals, up to
256 microsecond in this mode
•To measure time intervals greater than 256 micro
size we use two modified methods
Using a pre Scaler
Using
Interrupt
COUNTERS
• If the timer receives pulses form the
microcontroller input pin, then it turns into a
counter.
• The only difference is that in this case pulses
to be counted come over the microcontroller
input pin and their duration (width) is mostly
undefined.
A/D CONVERTER
• Converts continuous signals to discrete digital
numbers or circuit converts an analogue value
into a binary number and passes it to the CPU
for further processing.
Basic path of processing codes
Tools required for programming
• Micro C IDE
• USB PIC Programmer drivers
• USB PIC Programmer
IDE FOR MIKROC PRO FOR PIC
• HNKKKKHH
COMPILER’S TOOLS AND LIBRARIES
• USART TERMINAL
• EEPROM EDITOR
• ASCII CHART
• SEVEN SEGMENT EDITOR
• LCD CUSTOM CHARACTER
• GRAPHIC LCD BITMAP GENERATOR
• LIBRARIES
SEVEN SEGMENT EDITOR
PIC 16F877A LAYOUT
Analog I/O
UART
I2C
PORTA
http://www.mikroe.com/eng/chapters/view/74/pic-basic-book-chapter-1-
world-of-microcontrollers/
24
FEATURES OF PIC 16F887A
• RISC architecture
– Only 35 instructions to learn
– All single-cycle instructions except branches
• Operating frequency 0-20 MHz
• Precision internal oscillator
– Factory calibrated
– Software selectable frequency range of 8MHz to 31KHz
• Power supply voltage 2.0-5.5V
– Consumption: 220uA (2.0V, 4MHz), 11uA (2.0 V, 32 KHz) 50nA
(stand-by mode)
• Power-Saving Sleep Mode
• Brown-out Reset (BOR) with software control option
• 35 input/output pins
– High current source/sink for direct LED drive
• 256 bytes EEPROM memory
– Data can be written more than 1.000.000 times
• 368 bytes RAM memory
• A/D converter:
– 14-channels
– 10-bit resolution
• 3 independent timers/counters
• Watch-dog timer
• Analogue comparator module with
– Two analogue comparators
– Fixed voltage reference (0.6V)
– Programmable on-chip voltage reference
• PWM output steering control
• Enhanced USART module
– Supports RS-485, RS-232 and LIN2.0
– Auto-Baud Detect
• Master Synchronous Serial Port (MSSP)
– supports SPI and I2C mode
BASIC CONNECTION OF A PIC
Basic codes of MikroC
• TRISB=0; means that all the pins of PORTB is set
as output. If it is set as 1 then all the pins will be
configured as input.
• PORTB=0; means that all the pins of PORTB is
Logic low. If it is set as 1 then all the pins will be
set as Logic high state.
• ANSELA = 0; Configure PORTA pins as digital.
ANSELA = 0b00000101; Means that RA0/C12IN0-
and RA2/C2IN+ pins are analog inputs.
• ANSELH=0; Configure PORTB pins as digital.
• TRISC.F0 = 1; Makes 0th bit of PORTC Input
• TRISC.F5 = 0; Makes 5th bit of PORTC Output
• PORTB.F3 = 1; Makes 3ed bit of PORTB at Logic
High
• PORTB.F7 = 0; Makes 7th bit of PORTB at Logic
Low
Simple MikroC program for blinking an
LED
Interfacing DC Motor with PIC
Microcontroller using L293D
• Control Signals and Motor Status
RB0/IN1 RB2/IN2 Motor
Status LOW LOW Stops
LOW HIGH ANT-CLK
HIGH LOW CLK
HIGH HIGH CLK
CCP(Capture/Compare/PWM) Module
• Three modes-Capture, compare , PWM
• PWM
• Signals with varying duty cycle.
• Importance in power control circuits.
• /* In this example, PWM module is initialized and set to give a pulse train of 50%
dutycycle.
For this purpose, functions PWM1_Init(), PWM1_Start() and PWM1_Set_Duty()
are used.
All of them are already contained in the mikroC PRO for PIC PWM library and just
need to
be copied to the program. */
unsigned short duty_c; // Define variable duty_c
void initMain() {
ANSEL = ANSELH = 0; // All I/O pins are configured as digital
PORTC = TRISC = 0; // Initial state of port C output pins
PWM1_Init(5000); // PWM module initialization (5KHz)
}
void main() {
initMain();
duty_c = 127; // Initial value of duty-cycle
PWM1_Start(); // Start PWM1 module
PWM1_Set_Duty(duty_c); // Set PWM duty-cycle to 50%
...
SERIAL COMMUNICATION
MODULES
• EUSART
Enhanced Universal Synchronous Asynchronous
Receiver Transmitter (EUSART)module is a serial I/O
communication peripheral unit.
• also known as Serial
Communications Interface (SCI)
• contains all clock generators,
shift registers and data buffers
necessary to perform an input/output serial data
transfer
• In order to enable data transmission via
EUSART module it is necessary to define the
state of the following pins-RX , TX
• RX-Receiver
• TX-Transmitter
/* In this example, internal EUSART module is initialized and set to send back the
message immediately after receiving it. Baude rate is set to 9600 bps. The
program
uses UART library routines UART1_init(), UART1_Write_Text(),
UART1_Data_Ready(),
UART1_Write() and UART1_Read().*/
char uart_rd;
void main() {
ANSEL = ANSELH = 0; // Configure AN pins as digital
C1ON_bit = C2ON_bit = 0; // Disable comparators
UART1_Init(9600); // Initialize UART module at 9600 bps
Delay_ms(100); // Wait for UART module to become stable
UART1_Write_Text("Start");
while (1) { // Endless loop
if (UART1_Data_Ready()) { // If data is received,
uart_rd = UART1_Read(); // read the received data,
UART1_Write(uart_rd); // and send data back via UART
}`
}
END
BY

More Related Content

What's hot

Introduction to AVR Microcontroller
Introduction to AVR Microcontroller Introduction to AVR Microcontroller
Introduction to AVR Microcontroller Mahmoud Sadat
 
System-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design ChallengesSystem-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design Challengespboulet
 
Arm cortex-m4 programmer model
Arm cortex-m4 programmer modelArm cortex-m4 programmer model
Arm cortex-m4 programmer modelMohammed Gomaa
 
Introduction to pic microcontroller
Introduction to pic microcontrollerIntroduction to pic microcontroller
Introduction to pic microcontrollerSiva Kumar
 
Arduino Programming Software Development
Arduino Programming Software DevelopmentArduino Programming Software Development
Arduino Programming Software DevelopmentSanjay Kumar
 
Pic microcontroller architecture
Pic microcontroller architecturePic microcontroller architecture
Pic microcontroller architectureJamia Hamdard
 
Real time image processing in fpga
Real time image processing in fpgaReal time image processing in fpga
Real time image processing in fpgaSneha Nidhi
 
Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)Aarav Soni
 
Introduction to the Arduino
Introduction to the ArduinoIntroduction to the Arduino
Introduction to the ArduinoWingston
 
Serial Communication Interfaces
Serial Communication InterfacesSerial Communication Interfaces
Serial Communication Interfacesanishgoel
 

What's hot (20)

Introduction to AVR Microcontroller
Introduction to AVR Microcontroller Introduction to AVR Microcontroller
Introduction to AVR Microcontroller
 
Uart
UartUart
Uart
 
System-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design ChallengesSystem-on-Chip Design, Embedded System Design Challenges
System-on-Chip Design, Embedded System Design Challenges
 
Arm cortex-m4 programmer model
Arm cortex-m4 programmer modelArm cortex-m4 programmer model
Arm cortex-m4 programmer model
 
I2C Protocol
I2C ProtocolI2C Protocol
I2C Protocol
 
ARM Processors
ARM ProcessorsARM Processors
ARM Processors
 
I2C Protocol
I2C ProtocolI2C Protocol
I2C Protocol
 
Pcie basic
Pcie basicPcie basic
Pcie basic
 
Introduction to pic microcontroller
Introduction to pic microcontrollerIntroduction to pic microcontroller
Introduction to pic microcontroller
 
PCI express
PCI expressPCI express
PCI express
 
Arduino Programming Software Development
Arduino Programming Software DevelopmentArduino Programming Software Development
Arduino Programming Software Development
 
Arm architecture
Arm architectureArm architecture
Arm architecture
 
Pic microcontroller architecture
Pic microcontroller architecturePic microcontroller architecture
Pic microcontroller architecture
 
Lin bus
Lin busLin bus
Lin bus
 
ARM Processor
ARM ProcessorARM Processor
ARM Processor
 
Real time image processing in fpga
Real time image processing in fpgaReal time image processing in fpga
Real time image processing in fpga
 
Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)Timer counter in arm7(lpc2148)
Timer counter in arm7(lpc2148)
 
Introduction to the Arduino
Introduction to the ArduinoIntroduction to the Arduino
Introduction to the Arduino
 
Fpga Knowledge
Fpga KnowledgeFpga Knowledge
Fpga Knowledge
 
Serial Communication Interfaces
Serial Communication InterfacesSerial Communication Interfaces
Serial Communication Interfaces
 

Similar to PIC-MICROCONTROLLER TUTORIALS FOR BEGINNERS

Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerRup Chowdhury
 
microcontroller board ppt
microcontroller board pptmicrocontroller board ppt
microcontroller board pptshashank tiwari
 
Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]
Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]
Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]akmalKhan55
 
Peripherals and interfacing
Peripherals  and interfacingPeripherals  and interfacing
Peripherals and interfacingRAMPRAKASHT1
 
Embedded systems and robotics by scmandota
Embedded systems and robotics by scmandotaEmbedded systems and robotics by scmandota
Embedded systems and robotics by scmandotascmandota
 
AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080
AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080
AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080Vivek Venugopal
 
Pic microcontroller [autosaved] [autosaved]
Pic microcontroller [autosaved] [autosaved]Pic microcontroller [autosaved] [autosaved]
Pic microcontroller [autosaved] [autosaved]gauravholani
 
Lecture on PIC-1.pptx
Lecture on PIC-1.pptxLecture on PIC-1.pptx
Lecture on PIC-1.pptxgodfrey35
 
8051 microcontroller and embedded training (sahil gupta 9068557926)
8051 microcontroller and embedded training  (sahil gupta   9068557926)8051 microcontroller and embedded training  (sahil gupta   9068557926)
8051 microcontroller and embedded training (sahil gupta 9068557926)Sahil Gupta
 
EE6008 MCBSD - Introduction to PIC Micro controller
EE6008 MCBSD - Introduction to PIC Micro controller EE6008 MCBSD - Introduction to PIC Micro controller
EE6008 MCBSD - Introduction to PIC Micro controller pavihari
 
PIC 16F877 micro controller by Gaurav raikar
PIC 16F877 micro controller by Gaurav raikarPIC 16F877 micro controller by Gaurav raikar
PIC 16F877 micro controller by Gaurav raikarGauravRaikar3
 
microcontroller 8051 17.07.2023.pdf
microcontroller 8051 17.07.2023.pdfmicrocontroller 8051 17.07.2023.pdf
microcontroller 8051 17.07.2023.pdf818Farida
 
embedded system introduction to microcontrollers
embedded system introduction to microcontrollersembedded system introduction to microcontrollers
embedded system introduction to microcontrollersBarER4
 
Bluetooth Home Automation
Bluetooth Home AutomationBluetooth Home Automation
Bluetooth Home AutomationApoorv Gupta
 

Similar to PIC-MICROCONTROLLER TUTORIALS FOR BEGINNERS (20)

Introduction to PIC.pptx
Introduction to PIC.pptxIntroduction to PIC.pptx
Introduction to PIC.pptx
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontroller
 
microcontroller board ppt
microcontroller board pptmicrocontroller board ppt
microcontroller board ppt
 
Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]
Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]
Share 'speed control_of_dc_motor_using_microcontroller.pptx'[1][1]
 
Embedded systemsc
Embedded systemscEmbedded systemsc
Embedded systemsc
 
Peripherals and interfacing
Peripherals  and interfacingPeripherals  and interfacing
Peripherals and interfacing
 
Embedded systems and robotics by scmandota
Embedded systems and robotics by scmandotaEmbedded systems and robotics by scmandota
Embedded systems and robotics by scmandota
 
AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080
AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080
AN INTEGRATED FOUR-PORT DC-DC CONVERTER-CEI0080
 
Pic microcontroller [autosaved] [autosaved]
Pic microcontroller [autosaved] [autosaved]Pic microcontroller [autosaved] [autosaved]
Pic microcontroller [autosaved] [autosaved]
 
Lecture on PIC-1.pptx
Lecture on PIC-1.pptxLecture on PIC-1.pptx
Lecture on PIC-1.pptx
 
8051 microcontroller and embedded training (sahil gupta 9068557926)
8051 microcontroller and embedded training  (sahil gupta   9068557926)8051 microcontroller and embedded training  (sahil gupta   9068557926)
8051 microcontroller and embedded training (sahil gupta 9068557926)
 
embedded system
embedded systemembedded system
embedded system
 
plc_scada.pptx
plc_scada.pptxplc_scada.pptx
plc_scada.pptx
 
Ee6008 mcbsd notes
Ee6008 mcbsd notesEe6008 mcbsd notes
Ee6008 mcbsd notes
 
EE6008 MCBSD - Introduction to PIC Micro controller
EE6008 MCBSD - Introduction to PIC Micro controller EE6008 MCBSD - Introduction to PIC Micro controller
EE6008 MCBSD - Introduction to PIC Micro controller
 
EE6008 MBSD
EE6008  MBSDEE6008  MBSD
EE6008 MBSD
 
PIC 16F877 micro controller by Gaurav raikar
PIC 16F877 micro controller by Gaurav raikarPIC 16F877 micro controller by Gaurav raikar
PIC 16F877 micro controller by Gaurav raikar
 
microcontroller 8051 17.07.2023.pdf
microcontroller 8051 17.07.2023.pdfmicrocontroller 8051 17.07.2023.pdf
microcontroller 8051 17.07.2023.pdf
 
embedded system introduction to microcontrollers
embedded system introduction to microcontrollersembedded system introduction to microcontrollers
embedded system introduction to microcontrollers
 
Bluetooth Home Automation
Bluetooth Home AutomationBluetooth Home Automation
Bluetooth Home Automation
 

Recently uploaded

Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...soginsider
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projectssmsksolar
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfRagavanV2
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 

Recently uploaded (20)

Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 

PIC-MICROCONTROLLER TUTORIALS FOR BEGINNERS

  • 2. Difference from A microprocessor? • To communicate microprocessor with peripheral environment, special circuits must be used.
  • 4. Description • PIC – “Peripheral Interface Controller” • Made by Microchip Technology • Most popular by industry developers and hobbyists – Low cost (cents to dollars) – Availability – Extensive application notes – Serial programming 4
  • 5. Internal Units description REGISTER • An electronic circuit which can memorize the state of one byte
  • 6. SFR(Special Function Register) • Registers whose function is predetermined by the manufacturer of the microcontroller • Examples are timers, A/D converter, oscillators ,etc
  • 7. INPUT / OUTPUT PORTS • Microcontroller has one or more registers (called ports) connected to the microcontroller pins. • Can change a pin function as you wish
  • 8. MEMORY UNIT • Memory is part of the microcontroller used for data storage. • Types 1.MROM, 2.OTP ROM, 3.UV EP ROM, 4.FLASH MEM 5. EEPROM, 6. RAM
  • 9. INTERRUPT • Most programs use interrupts in their regular execution • The signal which informs the central processor unit about such an event is called an INTERRUPT.
  • 10. CENTRAL PROCESSOR UNIT (CPU) • Instruction decoder decodes program instructions and runs other circuits based on this • Accumulator is a kind of working desk used for storing all data upon which some operation should be performed (addition, shift/move etc.) • ALU
  • 11. OSCILLATOR • Enable harmonic and synchronous operation of all circuits within the microcontroller. • Usually configured so as to use quartz crystal or ceramic resonator for frequency stability • but it can also operate as a stand-alone circuit (like RC oscillator).
  • 12. TIMERS/COUNTERS • To measure time between two events, it is sufficient to count up pulses generated by the oscillator. This is exactly what the timer does. • ‘Stopwatches’ commonly 8- or 16-bit SFRs the contents of which is automatically incremented by each coming pulse.
  • 13. HOW DOES THE TIMER OPERATE? • It is easy to measure short time intervals, up to 256 microsecond in this mode •To measure time intervals greater than 256 micro size we use two modified methods
  • 14. Using a pre Scaler Using Interrupt
  • 15. COUNTERS • If the timer receives pulses form the microcontroller input pin, then it turns into a counter. • The only difference is that in this case pulses to be counted come over the microcontroller input pin and their duration (width) is mostly undefined.
  • 16. A/D CONVERTER • Converts continuous signals to discrete digital numbers or circuit converts an analogue value into a binary number and passes it to the CPU for further processing.
  • 17.
  • 18. Basic path of processing codes
  • 19. Tools required for programming • Micro C IDE • USB PIC Programmer drivers • USB PIC Programmer
  • 20.
  • 21. IDE FOR MIKROC PRO FOR PIC • HNKKKKHH
  • 22. COMPILER’S TOOLS AND LIBRARIES • USART TERMINAL • EEPROM EDITOR • ASCII CHART • SEVEN SEGMENT EDITOR • LCD CUSTOM CHARACTER • GRAPHIC LCD BITMAP GENERATOR • LIBRARIES
  • 24. PIC 16F877A LAYOUT Analog I/O UART I2C PORTA http://www.mikroe.com/eng/chapters/view/74/pic-basic-book-chapter-1- world-of-microcontrollers/ 24
  • 25.
  • 26. FEATURES OF PIC 16F887A • RISC architecture – Only 35 instructions to learn – All single-cycle instructions except branches • Operating frequency 0-20 MHz • Precision internal oscillator – Factory calibrated – Software selectable frequency range of 8MHz to 31KHz • Power supply voltage 2.0-5.5V – Consumption: 220uA (2.0V, 4MHz), 11uA (2.0 V, 32 KHz) 50nA (stand-by mode) • Power-Saving Sleep Mode • Brown-out Reset (BOR) with software control option • 35 input/output pins – High current source/sink for direct LED drive
  • 27. • 256 bytes EEPROM memory – Data can be written more than 1.000.000 times • 368 bytes RAM memory • A/D converter: – 14-channels – 10-bit resolution • 3 independent timers/counters • Watch-dog timer • Analogue comparator module with – Two analogue comparators – Fixed voltage reference (0.6V) – Programmable on-chip voltage reference • PWM output steering control • Enhanced USART module – Supports RS-485, RS-232 and LIN2.0 – Auto-Baud Detect • Master Synchronous Serial Port (MSSP) – supports SPI and I2C mode
  • 29. Basic codes of MikroC • TRISB=0; means that all the pins of PORTB is set as output. If it is set as 1 then all the pins will be configured as input. • PORTB=0; means that all the pins of PORTB is Logic low. If it is set as 1 then all the pins will be set as Logic high state. • ANSELA = 0; Configure PORTA pins as digital. ANSELA = 0b00000101; Means that RA0/C12IN0- and RA2/C2IN+ pins are analog inputs. • ANSELH=0; Configure PORTB pins as digital.
  • 30. • TRISC.F0 = 1; Makes 0th bit of PORTC Input • TRISC.F5 = 0; Makes 5th bit of PORTC Output • PORTB.F3 = 1; Makes 3ed bit of PORTB at Logic High • PORTB.F7 = 0; Makes 7th bit of PORTB at Logic Low
  • 31. Simple MikroC program for blinking an LED
  • 32. Interfacing DC Motor with PIC Microcontroller using L293D • Control Signals and Motor Status RB0/IN1 RB2/IN2 Motor Status LOW LOW Stops LOW HIGH ANT-CLK HIGH LOW CLK HIGH HIGH CLK
  • 33.
  • 34. CCP(Capture/Compare/PWM) Module • Three modes-Capture, compare , PWM • PWM • Signals with varying duty cycle. • Importance in power control circuits.
  • 35. • /* In this example, PWM module is initialized and set to give a pulse train of 50% dutycycle. For this purpose, functions PWM1_Init(), PWM1_Start() and PWM1_Set_Duty() are used. All of them are already contained in the mikroC PRO for PIC PWM library and just need to be copied to the program. */ unsigned short duty_c; // Define variable duty_c void initMain() { ANSEL = ANSELH = 0; // All I/O pins are configured as digital PORTC = TRISC = 0; // Initial state of port C output pins PWM1_Init(5000); // PWM module initialization (5KHz) } void main() { initMain(); duty_c = 127; // Initial value of duty-cycle PWM1_Start(); // Start PWM1 module PWM1_Set_Duty(duty_c); // Set PWM duty-cycle to 50% ...
  • 36. SERIAL COMMUNICATION MODULES • EUSART Enhanced Universal Synchronous Asynchronous Receiver Transmitter (EUSART)module is a serial I/O communication peripheral unit. • also known as Serial Communications Interface (SCI) • contains all clock generators, shift registers and data buffers necessary to perform an input/output serial data transfer
  • 37. • In order to enable data transmission via EUSART module it is necessary to define the state of the following pins-RX , TX • RX-Receiver • TX-Transmitter
  • 38. /* In this example, internal EUSART module is initialized and set to send back the message immediately after receiving it. Baude rate is set to 9600 bps. The program uses UART library routines UART1_init(), UART1_Write_Text(), UART1_Data_Ready(), UART1_Write() and UART1_Read().*/ char uart_rd; void main() { ANSEL = ANSELH = 0; // Configure AN pins as digital C1ON_bit = C2ON_bit = 0; // Disable comparators UART1_Init(9600); // Initialize UART module at 9600 bps Delay_ms(100); // Wait for UART module to become stable UART1_Write_Text("Start"); while (1) { // Endless loop if (UART1_Data_Ready()) { // If data is received, uart_rd = UART1_Read(); // read the received data, UART1_Write(uart_rd); // and send data back via UART }` }