Skip to main content

Python framework for robotics and physical computing.

Project description

Join the chat at https://gitter.im/zorg-framework/zorg

Zorg is a Python framework for robotics and physical computing. It is based on Cylon.js, a JavaScript framework for robotics.

Getting started

Installation

All you need to get Zorg up and running is the zorg package:

pip install zorg

You may need to `copy the source <https://github.com/gunthercox/zorg/archive/master.zip>`__ if your device does not support `pip <https://pip.pypa.io/en/stable/>`__.

You should also install the packages for the hardware you are looking to support. In our examples, we will be using the Intel Edison and an LED, so we need the edison and gpio packages:

pip install zorg-gpio zorg-edison

Examples

Intel Edison and an LED

This example controls an LED connected to the Intel Edison and blinks it once every 500 milliseconds. This program should be run on the Intel Edison itself.

import zorg

def work (my):
    while True:
        # Toggle the LED
        my.led.toggle()

        # Wait 100ms before doing it again
        time.sleep(0.1)

robot = zorg.robot({
    "connections": {
        "edison": {
            "adaptor": "zorg_edison.Edison",
        },
    },
    "devices": {
        "led": {
            "connection": "edison",
            "driver": "zorg_gpio.Led",
            "pin": 13, # 13 is the on-board LED
        }
    },
    "name": "example", # Give your robot a unique name
    "work": work, # The method (on the main level) where the work will be done
})

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zorg-0.0.1.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

zorg-0.0.1-py2-none-any.whl (8.2 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page