ANN Nanpy 0.9.4

Andrea Stagi stagi.andrea at gmail.com
Sat May 2 13:33:12 CEST 2015


Hi,

I'm happy to announce Nanpy 0.9.4 release.
https://pypi.python.org/pypi/nanpy/0.9.4

This release includes some bug fixing and rtscts parameter support for
SerialManager, if you're experiencing some problems with Nanpy on Raspberry
Pi please set it to True (here an example:
https://github.com/DjangoBeer/minecraftpi-hack/blob/master/altimeter/altimeter.py#L13
).

How to start using Nanpy: http://nanpy.github.io/

With Nanpy you can easily use your Arduino board writing Python code from
any device:

    a = ArduinoApi()
    a.pinMode(13, a.OUTPUT)
    a.digitalWrite(13, a.HIGH)

We support OneWire, Lcd, Stepper, Servo, DallasTemperature and many more
libraries… Let’s try to connect our 16x2 lcd screen on pins 7, 8, 9, 10,
11, 12 and show your first “Hello world”!

    from nanpy import Lcd

    lcd = Lcd([7, 8, 9, 10, 11, 12], [16, 2])
    lcd.printString('Hello World!')

Nanpy is an open source project, you can follow our work on Github
https://github.com/nanpy

There are several project made with Nanpy, an old RC car now powered by
Raspberry Pi and Arduino and controlled via Android (
https://www.youtube.com/watch?v=iepyMyFNtjk
https://github.com/chickenfootcar), Smart Gardening (
https://www.youtube.com/watch?v=n6hN1xkelKA), Minecraft Altimeter (
https://www.youtube.com/watch?v=HP8vbUTTDto
https://github.com/DjangoBeer/minecraftpi-hack/tree/master/altimeter)

-- 
Andrea Stagi (@4stagi) - DeveLover @Nephila
Job profile: http://linkedin.com/in/andreastagi
Website: http://4spills.blogspot.it/
Github: http://github.com/astagi


More information about the Python-announce-list mailing list