Please bookmark this link !!

Sergio Alvarez from Colombia did a great job on his blog. A lot of useful example to build and use Pinguino:
- a step by step description to build Pinguino on a test board,
- What is sometime troobleshoothing with windows,
- How to use an I2C ultrasonic range finder ( this one could be integrated in the pinguino tutorial with sergio acknoledgement )

and a lot of well documented things.

And maybe a good way to learn spanish !!

Simple example with Processing

I wrote this simple example to help users to associate Processing and Pinguino.
Communication is managed by Stephane Cousot Library and USB link.
Stephane example program is loaded in the Pinguino with the IDE.
A led is connected on PIN 0 of Pinguino.


// How to blink a led on PIN 0 with processing
// Jean-pierre Mandon 2010

import hypermedia.pinguino.*; // import library

Pinguino board; // pinguino object

void setup() {

size( 380, 180 ); // size the window application
board = new Pinguino( this ); // connect to Pinguino board

}

void draw() {

background(0);

fill(0);
if (board.digitalRead(0)==Pinguino.LOW)
board.digitalWrite(0,Pinguino.HIGH); // PIN 0 = 1
else
{ board.digitalWrite(0,Pinguino.LOW); // PIN 0 = 0
fill(255,0,0);
}
rect(170,70,40,40);
delay(100);

}

Stephane processing Library can be downloaded here.
The pinguino side program is here.

Pinguino Venezuela

Joan Espinoza started a great project to develop Pinguino in Venezuela. This is the link to the Website.


Joan presented his project during the DevCamp event in february 2010.


His goal is to develop and promote Pinguino project for electronics, programmers and students in Venezuela. This community offer help to incorporate a multi-support language for the Pinguino IDE.

Thanks Joan and all Venezuelan users, this is yet another initiative to expand use of Pinguino and make it simpler for everyone.

PinguinoVE on twitter.
PinguinoVE website.