PIC18F27J53 Pinguino compatible USB stick
The picstick_27j53 is a small PCB that can be connected directly into a USB connector. It is based on the LeoStick (Arduino Compatible) form factor and the hardware is identical to the PIC18F47J53 Pinguino except that the 28pin PIC is used instead of the 40pin.
The picstick_27j53 was created to add to the ever growing choice of PIC alternatives to Arduino. There are no surface mount components, so the picstick_27j53 is easy to build.
The PIC18F27J53 must be programmed with the Pinguino Bootloader as described in the Pinguino Basics page.
This project uses Bootloader_v4.14_18f27j53_X8MHz.hex.
Blinking led test, blink.pde
void setup()
{
pinMode(USERLED, OUTPUT);
}
void loop()
{
toggle(USERLED);
delay(500);
}
This project was designed with Eagle 7.2.0, Sketchup 15.3.331 and EagleUp 4.5.
This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](<http://creativecommons.org/licenses/by-sa/4.0/).
Original design by: Pinguino.
Modified by: https://github.com/kaza007