Basic example to set up, read and write GPIOs in the beaglebone using Python.
Gerardo Marx fdc8778454 Gpios lecture example done
.gitignore adding the .gitignore file
Readme.md Gpios lecture example done
gpio.py Gpios lecture example done
main.py Testing functions

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.