Re: [Tutor] Pyduino

2009-09-07 Thread Luke Paireepinart
man, here I am always complaining about people replying directly to me, and I go and do it to Joshua!meant to send this to the list. sorry! -- Forwarded message -- From: Luke Paireepinart Date: Tue, Sep 8, 2009 at 3:53 AM Subject: Re: [Tutor] Pyduino To: Joshua Harper You woul

Re: [Tutor] Pyduino

2009-09-07 Thread Chris Fuller
There are a few projects attempting something like this, but it is not easy to get a language like Python running on the minimalist resources found in a microcontroller. Google "python microcontroller" (without the quotes).. you could also try the plural form to see if that brings up other hits

Re: [Tutor] Pyduino

2009-09-07 Thread bob gailer
Joshua Harper wrote: I just bought an arduino and id like to use python instead of the arduino language, any tips, tutorials, anything, i googled but there isnt much on it really.. about 3,000,000 results? -- Bob Gailer Chapel Hill NC 919-636-4239 _

[Tutor] Pyduino

2009-09-07 Thread Joshua Harper
I just bought an arduino and id like to use python instead of the arduino language, any tips, tutorials, anything, i googled but there isnt much on it really... -- - JH ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription option

Re: [Tutor] Pack/Unpack hacking

2009-09-07 Thread Tino Dai
In general, xxx.pyc is the compiled Python bytecode for xxx.py, so > struct.py is the source for struct.pyc. > > Looking at struct.py, it's entire contents is > from _struct import * > from _struct import _clearcache > > This is a pretty common idiom in the std lib for modules that are > implemente