Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

PIC mini project Board

PIC mini Project Board

www.researchdesignlab.com

Page 1

Table of Contents

PIC mini project Board

Overview ....................................................................................................................................................... 3
Features ........................................................................................................................................................ 3
Circuit Diagram ............................................................................................................................................. 4
Pin Configuration .......................................................................................................................................... 5
Codes............................................................................................................................................................. 6
MP LAB(HI-TECH_C) ............................................................................................................................. 6
mikroC PRO .............................................................................................................................................. 7
Related Products........................................................................................................................................... 9

www.researchdesignlab.com

Page 2

Overview

PIC mini project Board

PICs are popular with both industrial developers and hobbyists alike due to their low cost, wide
availability, large user base, extensive collection of application notes, availability of low cost or free
development tools, and serial programming (and re-programming with flash memory) capability. They
are also commonly used in educational programming .
With this board you can develop and prototype with any of Microchip's 40 pin PIC microcontrollers.The
board have User button and status LED

Features

PIC Development Board for Microchip


PIC Series.
Quartz crystal 20 MHz.
External Tx,Rx, GND
On board programming ISP.
Power indicator LED.
Reset Switch for the IC.
Colour :RED

www.researchdesignlab.com

Page 3

PIC mini project Board


Circuit Diagram

www.researchdesignlab.com

Page 4

Pin Configuration

PIC mini project Board

It consist of 4 port with each port having 8 pin (0 to 7)


port are named as port A,B,C,D

TX, RX and GND is used to provide serial communication UART


PGD , PGC, RST this pins are used to connect the ISP programmer for programming the PIC

www.researchdesignlab.com

Page 5

Codes

PIC mini project Board

MP LAB(HI-TECH_C)
1. LED Blinking
http://researchdesignlab.com/pic-mplab-led-code.html
2. UART
http://researchdesignlab.com/pic-mplab-uart-code.html
3. GSM
http://researchdesignlab.com/pic-mplab-gsm-code.html
4. 7 SEGMENT CODE
http://researchdesignlab.com/pic-mplab-7segment-code.html
5. LCD
http://researchdesignlab.com/pic-mplab-lcd-code.html
6. KEYPAD
http://researchdesignlab.com/pic-mplab-keypad-code.html
7. ADC
http://researchdesignlab.com/pic-mplab-adc-code.html
8. PWM
http://researchdesignlab.com/pic-mplab-pwm-code.html
9. RELAY
http://researchdesignlab.com/pic-mplab-relay-code.html
10. RTC
http://researchdesignlab.com/pic-mplab-rtc-code.html
11. I2C
http://researchdesignlab.com/pic-mplab-i2c-code.html

www.researchdesignlab.com

Page 6

PIC mini project Board

mikroC PRO
1. LED Blinking
void main() {

TRISA = 0x00;
TRISB = 0x00;
TRISC = 0x00;
TRISD = 0x00;
do {
PORTA = 0x00;
PORTB = 0x00;
PORTC = 0x00;
PORTD = 0x00;
Delay_ms(1000);

// set direction to be output


// set direction to be output
// set direction to be output
// set direction to be output

// Turn OFF LEDs on PORTA


// Turn OFF LEDs on PORTB
// Turn OFF LEDs on PORTC
// Turn OFF LEDs on PORTD
// 1 second delay

PORTA = 0xFF;
// Turn ON LEDs on PORTA
PORTB = 0xFF;
// Turn ON LEDs on PORTB
PORTC = 0xFF;
// Turn ON LEDs on PORTC
PORTD = 0xFF;
// Turn ON LEDs on PORTD
Delay_ms(1000); // 1 second delay
} while(1);
// Endless loop
}

2. UART
http://researchdesignlab.com/pic-uart-code
3. PWM
http://researchdesignlab.com/pic-pwm-code
4. KEYPAD
http://researchdesignlab.com/pic-keypad-code
5. LCD
http://researchdesignlab.com/pic-lcd-code

www.researchdesignlab.com

Page 7

PIC mini project Board

6. RTC
http://researchdesignlab.com/pic-rtc-code

7. ADC
http://researchdesignlab.com/pic-adc-code
8. 7 SEGMENT CODE
http://researchdesignlab.com/7-segment-pic-code.html

www.researchdesignlab.com

Page 8

Related Products

FT232 BreakOut Board

PIC Development Board


module

www.researchdesignlab.com

PIC mini project Board


ISP ATMEL ATMEGA Programmer

GSM GPRS SIM 900A

Page 9

You might also like