8000 GitHub - jamestiotio/gpiozero at v0.3.0
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A simple interface to GPIO devices with Raspberry Pi

License

Notifications You must be signed in to change notification settings

jamestiotio/gpiozero

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gpiozero

A simple interface to everyday GPIO components used with Raspberry Pi

A work in progress

Motivation

The "hello world" program in Java is at least 5 lines long, and contains 11 jargon words which students are taught to ignore.

The "hello world" program in Python is one simple line. However, the "hello world" of physical computing in Python (flashing an LED) is similar to the Java program: 6 lines of code to flash an LED.

Young children and beginners shouldn't need to sit and copy out several lines of text they're told to 658D ignore. They should be able to read their code and understand what it means.

Install

Install with pip:

sudo pip install gpiozero
sudo pip-3.2 install gpiozero

Usage

Example usage for flashing an LED:

from gpiozero import LED
from time import sleep

led = LED(2)

while True:
    led.on()
    sleep(1)
    led.off()
    sleep(1)

Development

This project is being developed on GitHub. Join in:

  • Provide suggestions
  • Help design the API
  • Contribute to the code

Alternatively, email suggestions and feedback to ben@raspberrypi.org

About

A simple interface to GPIO devices with Raspberry Pi

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.6%
  • Makefile 0.4%
0