Jan Zumwalt
Published © CC BY-NC-SA

PIC18f4550 Pinguino Board

Make your own PIC18f4550 Pinguino board in 1 hour.

IntermediateProtip3,567
PIC18f4550 Pinguino Board

Things used in this project

Hardware components

pinguino
×1
Linear Regulator (7805)
Linear Regulator (7805)
×1
9V battery (generic)
9V battery (generic)
×1
Female Header 8 Position 1 Row (0.1")
Female Header 8 Position 1 Row (0.1")
×1
1N4007 – High Voltage, High Current Rated Diode
1N4007 – High Voltage, High Current Rated Diode
×1
RFduino DIP
RFduino DIP
×1
Capacitor 22 pF
Capacitor 22 pF
×1
Capacitor 100 nF
Capacitor 100 nF
×1
Capacitor 220 µF
Capacitor 220 µF
×1
20MHz Crystal
×1

Story

Read more

Code

Code snippet #1

Plain text
// test Pinguino, blink on board led
void setup()  {               // run once
    pinMode(USERLED, OUTPUT);
}
 
void loop()  {               // loop forever
    toggle(USERLED);         // toggle led on/off
    delay(50);               // wait 1/20sec
}

Credits

Jan Zumwalt

Jan Zumwalt

9 projects • 14 followers
Retired aerospace engineer, aviation pilot, mechanic

Comments