Skip to main content

A module intended to abstract away a lot of the complexity of using the GPIO and PiCamera for beginner programmers.

Project description

EasyAsPi

This project aims to remove a lot of the complexity of dealing with the GPIO and PiCamera for beginner level programmers working with the Raspberry Pi.

This project has been initially developed for use within my own classes that I teach but I hope it might find use for others too.

PROJECT HOME

GETTING STARTED

This assumes you have a Raspberry Pi (and a PiCamera to use that functionality). All code tested on Raspberry Pi model 3, PiCamera model 2, running Raspbian 2018-06-29.

INSTALL

pip install easyaspi

USAGE

At present, the project supports LEDs, buttons, ultrasonics and the PiCamera. This list of tools is expected to grow as need arises.

Note: This library will set the default GPIO pin layout mode to BCM.

LEDs

  • Create the LED object
import easyaspi
led = easyaspi.LED( pin_number )
  • Turn an LED on
led.set(True)
  • Turn an LED off
led.set(False)

BUTTONs

  • Create the Button object
import easyaspi
button = easyaspi.Button( pin_number )
  • Retrieve if the button is being pressed
button_state = button.get()
  • Set an event callback for button presses
# Note: The function definition for the callback requires the state parameter even though it should always be set to True to indicate the button is currently pressed.

def was_pressed(state):
   print("Button was pressed!")

button.on_press(was_pressed)
  • Remove an event callback
button.remove_on_press()            # Remove any event listener for this button

ULTRASONIC

  • Create the Ultrasonic variable
import easyaspi
ultra = easyaspi.Ultrasonic( trigger_pin_number, echo_pin_number )
  • Retrieve the distance in centimeters
distance = ultra.get_distance()

PICAMERA

  • Create the Camera object
import easyaspi
camera = easyaspi.Camera()
  • Take a photo (without a message)
camera.photo("myphoto.png")
  • Take a photo (with a message)
camera.photo("myphoto.png", "my message")
  • Start video recording
camera.record("myvideo.h264", "my message")
  • Check to see if camera is recording video
recording_state = camera.recording      # Returns True or False
  • Stop video recording
camera.stop()
  • Close the camera preview window when finished
camera.preview(False)

AUTHOR

LICENSE

MIT License (C) 2018 Paul Baumgarten

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

easyaspi-2018.3.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

easyaspi-2018.3-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file easyaspi-2018.3.tar.gz.

File metadata

  • Download URL: easyaspi-2018.3.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for easyaspi-2018.3.tar.gz
Algorithm Hash digest
SHA256 ccc2b90355e861e242d4df79e188583255b5a3a4b0bae1644a53be5042e70838
MD5 d66d050177a6122030db905bfb777ecb
BLAKE2b-256 247f298c6f547304310b93608c7daa2660ee6f92252cd6c465c8b71a76b8f3b0

See more details on using hashes here.

File details

Details for the file easyaspi-2018.3-py3-none-any.whl.

File metadata

  • Download URL: easyaspi-2018.3-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for easyaspi-2018.3-py3-none-any.whl
Algorithm Hash digest
SHA256 1f3c3febf636318554f313d14c3a443176e00c390e2e0214405456d50d8b0f6c
MD5 9f670a772f28cc103e1f876fdc5605a4
BLAKE2b-256 65589eca43a173358826c6eb1a51883b7c220b5bb1443f011432103edff229fc

See more details on using hashes here.

Supported by

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