Saturday, January 29, 2011
Pinguino in the Microchip's Academic Program Newsletter
Pinguino is presented in the last Microchip Academic Program Newsletter. Yet another way to support this project for Microchip.
You can download the letter on the Microchip website.
Have fun
JP
Libellés :
pinguino general
Tuesday, January 11, 2011
Python Pinguino object
A Pinguino object for processing was developped by Stephane Cousot. Now a similar object exist with Python !!
Yeison Cardona wrote this object to use Pinguino with Python without knowledge of C programming. The pinguino side software use CDC to communicate with the computer. The computer use python to drive outputs, read analog inputs and many other things.
It is very simple to use, this is a simple example to blink 2 leds:
http://code.google.com/p/pinno-processing/
Yeison Cardona wrote this object to use Pinguino with Python without knowledge of C programming. The pinguino side software use CDC to communicate with the computer. The computer use python to drive outputs, read analog inputs and many other things.
It is very simple to use, this is a simple example to blink 2 leds:
from pynguino import PinguinoProcessingMore info on the project website:
import time
pinguino=PinguinoProcessing()
print pinguino.Conect('/dev/ttyACM0') # Choose the port for Pinguino
led1=1
led2=7
tempo=0.2
while True:
time.sleep(tempo)
pinguino.digitalWrite(led1,"high")
pinguino.digitalWrite(led2,"low")
time.sleep(tempo)
pinguino.digitalWrite(led1,"low")
pinguino.digitalWrite(led2,"high")
http://code.google.com/p/pinno-processing/
Libellés :
On the web
Sunday, January 2, 2011
Happy new year 2011 !!
Hi Guys,
2010 was a very good year for Pinguino and it's a pleasure to see how this project evolve. I remember the first version, it is not so far, and I am pleased to see that the beta 9-05, even if it is not perfect, is a working version and help to build many different things. This job was done with many contributions, reports and ideas. Each user, in its own way, is a contributor and help to make this tool more friendly and powerful.
I announced, a long time ago, Pinguino could be ported to 32 bits Microchip micro-controller, and now it's done. This feature don't stop the 8 bits development, but it's a new major improvement for this platform. I think 2011 should be again a good year for Pinguino.
Many thanks to you, guys.
I wish you a fantastic year, keep cool and stay connected with us.....
And if you are a new user, Welcome !!
2010 was a very good year for Pinguino and it's a pleasure to see how this project evolve. I remember the first version, it is not so far, and I am pleased to see that the beta 9-05, even if it is not perfect, is a working version and help to build many different things. This job was done with many contributions, reports and ideas. Each user, in its own way, is a contributor and help to make this tool more friendly and powerful.
I announced, a long time ago, Pinguino could be ported to 32 bits Microchip micro-controller, and now it's done. This feature don't stop the 8 bits development, but it's a new major improvement for this platform. I think 2011 should be again a good year for Pinguino.
Many thanks to you, guys.
I wish you a fantastic year, keep cool and stay connected with us.....
And if you are a new user, Welcome !!
PinguinoX Preview
Libellés :
pinguino general
Subscribe to:
Posts (Atom)