Basic example to set up, read and write GPIOs in the beaglebone using Python.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Gerardo Marx fdc8778454 Gpios lecture example done 10 months ago
.gitignore adding the .gitignore file 10 months ago
Readme.md Gpios lecture example done 10 months ago
gpio.py Gpios lecture example done 10 months ago
main.py Testing functions 10 months ago

Readme.md

Introduction

This basic library is used in python as follows:

import gpio as gpio
gpio.writeVal(gpio.GPIO60,"out", "1")

The main.py script shows the creation of the function and its usage in the python self file.