A physical computing framework
Project description
Gadgets provides a way to control physical devices with python on a Beaglebone or a Raspberry PI (Raspberry Pi only has gpio and spi switch functionality for now). It provides an easy way to create a system that:
Controls devices with the gpio, pwm, adc, and 1-wire interfaces
Has an easy to use User Interface
Can be distributed across many devices
Uses RCL (Robot Command Language)
Can run methods (a sequece of RCL commands)
Gadgets provides several classes that are useful for controlling various devices. They are:
Switch
Valve
Heater
Cooler
Motor
The simplest one is Switch. Here is an example of how to set up a gadgets system that uses Switch to control multiple devices.
The first thing to do is define the switches you are going to use with a dictionary
>>> from gadgets.pins.beaglebone import pins >>> from gadgets import get_gadgets >>> arguments = { ... "locations": { ... "living room": { ... "light": { ... "type": "switch", ... "pin": pins["gpio"][8][3] ... }, ... "back yard": { ... "sprinklers": { ... "type": "switch", ... "pin": pins["gpio"][8][11], ... }, ... }, ... }, ... }>>> gadgets = get_gadgets(arguments) >>> gadgets.start()
The above definition assumes you have connected some switch (perhaps a transistor or a relay) to port 8, pin 3 on the Beaglebone, and perhaps a transistor connected to port 8, pin 11. The transistor would then be connected to the solenoid valve that turns on the sprinklers (you will probably not be able to connect the solenoid directly to your Beaglebone because it would draw too much current and probably uses 24V AC).
One way you can turn on the light that you defined above is to open another terminal and start a python prompt.
>>> from gadgets import Sockets >>> s = Sockets() >>> s.send("turn on living room light")
The light you have connected to the Beaglebone should now turn on.
>>> s.send("turn off living room light")
This, of course, turns the light off. These two commands are examples of RCL (Robot Command Language).
To turn on the sprinklers in the back yard for 15 minutes, you would send this command:
>>> s.send("turn on back yard sprinklers for 15 minutes")
You can also control the gadgets by using the built in curses based user-interface. See gadgets.ui for more details.
CHANGES
- 0.3.1, 7/25/2013 -
added a request-response mechanism so the status of the system can be requested. Added a reference to the iphone interface to the docs.
- 0.3.0, 7/18/2013 -
improved the ‘command mode’ of the ui improved the note taking dialog of the ui changed the greenhouse example to reflect my current greenhouse setup
- 0.2.3, 5/28/2013 -
added ‘–commad’ to the gadgets console script fixed a few bugs added an example for watering the grass
- 0.2.2, 4/24/2013 -
fixed a bug in the shift register switch
- 0.2.1, 4/24/2013 -
fixed the curses user interface
- 0.2.0, 4/23/2013 -
added support for raspberry pi gpio
- 0.1.1, 3/6/2013 -
added a momentary option for switch, so that it only turns on for a small amount of time
changed README.md to README.txt so it will show up on pypi
added gadgets.devices.Button. It monitors a gpio input pin and pushes a status update when it changes
- 0.1.0, 2/26/2013 -
changed the way thermometer works and how it is configured for get_gadgets
added XBee IO for Switch
- 0.0.2, 2/16/2013 -
added a shift register switch
0.0.1, 2/12/2013 - first version
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file gadgets-0.3.1.tar.gz
.
File metadata
- Download URL: gadgets-0.3.1.tar.gz
- Upload date:
- Size: 44.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a8974e6b0e3f00a89f6b5f01766e0ea4f66abf1b9eb4afcc53a106328adae51 |
|
MD5 | d562b2d4c790bdb0f2a3d9abdee1df0c |
|
BLAKE2b-256 | aa34ff2d525ccb87301c0f896c11d59997b762d929dffd83c417fd3a09e55c2e |