Lithium ION
Published © GPL3+

Getting Started with PIC Microcontroller

It is the new series on PIC microcontroller in which we will learn basic PIC programming and hardware implementation to advance level.

BeginnerProtip1 hour261
Getting Started with PIC Microcontroller

Story

Read more

Schematics

Schematic connection to PIC

Code

code file

Assembly x86
void main() {
     TRISB = 0;
     for(;;) {
     PORTB = 0XFF;
     Delay_ms(1000);
     PORTB = 0;
     Delay_ms(1000);
}
}


// Download the compiler from here:
// https://www.mikroe.com/mikroc-pic

// PIC kit 3 download
// https://drive.google.com/file/d/1h8sKc69PuWKozUjKmTzmBGTYX-g9jI_9/view

Credits

Lithium ION
59 projects • 38 followers
A passionate electronics DIY boy. Currently improving in Embedded systems, soldering and programming.
Contact

Comments

Please log in or sign up to comment.