Pinguino beta 3 Windows

How to install Pinguino on Windows:

- download and install Python 2.5.2
- download and install wxpython 2.8
- download and install pyusb
- download and install libusb-win32

sometimes, libusb need to be installed again to work fine.

download the Microchip modified driver on hackinglab
Extract the driver in a new folder.
Connect your pinguino and when windows ask for a driver, select the driver folder.

Download Pinguino Last Release

extract pinguino in a new folder, go to the folder and right click on Pinguino betaX.py
then click on launch with and select python

Variables initialisation in Pinguino

/* DEPRECATED */
/* modified in beta 5 */

Initialisation of variables must be done in the setup() loop instead of head of the program.

In Pinguino you must do this:

int led1;

void setup()
{
led1=1;
}

Pinguino do not accept

int led1=1;

We are trying to fix this bug………………….

Pinguino on MAC OS X

Pinguino IDE is based on Python 2.5. This is the step by step procedure to work with it:

- download and install Python 2.5.2 ( http://www.python.org/download/releases/2.5.2/ )
- download and install WxPython 2.8 ( sourceforge )
- download and install libusb binaries ( MAC OS X 10.4 , MAC OS X 10.5 )

- download Pinguino Last Release

Go to pinguino folder and right click on pinguinobetaX.py, open with python launcher 2.5.2.