Friday, June 24, 2011

Development board for PIC16F628A, PIC16F88, PIC16F1827, and PIC16F1847 microcontrollers

I recently made a second version of my old 18-pin PIC development board with much more peripheral chips.This board is best suitable for doing experiments with enhanced mid-range PIC microcontrollers, such as PIC16F1827 and PIC16F1847. The board has I/O port expander, external EEPROM, temperature sensor, Quad OpAmp, digital potentiometer chips, and many more features.




Check out the details of the development board HERE.

1 comments:

  1. Dear Sir,
    Please I need your help. I am new to Microcontrollers. I am using PIC 16F628A with miKroC. I am trying to blink leds on portb in continous loop after i press a pushbutton at PORTA.F7. the leds blink till the pusbutton is pressed but stop if i release it. i am using push to on tactile switch. i dont want to use on off pushbutton.

    void main() {


    TRISB = 0b00010000; // PORTB all output
    TRISA = 0b11111111; // PORTA All inputs,

    do {
    if (Button(&PortA,7 , 20, 0)) {
    if (!PORTA.F7) {
    PORTB = 0b00001111;
    delay_ms(250);
    PORTB = 0b00000000;
    delay_ms(250);
    }
    while (!PORTA.F7); // Wait till the button is released

    }
    }while(1);
    }
    please please help !
    regards,
    Naren
    my email is naren309@gmail.com

    ReplyDelete

Microcontroller-based Embedded Systems Design