Giter Site home page Giter Site logo

led's Introduction

led

A Simple Intel Galileo LED Control Script in Python

I had a bit of trouble finding information on blinking an LED on the Intel Galileo Gen 2 using python and wanted to share a script that blinks an LED.

This uses MRAA to perform all the real tasks.

Which does the following:

Initialize the pin

pin = mraa.Gpio(X) # where X is the pin number

Set it to output mode

pin.dir(MRAA.DIR_OUT) 

Turn it on or off (0/1)

pin.write(1) # Turn on
pin.write(0) # Turn off

But it is just wrapped in a script which will do this for you.

Simple use:

root@galileo:~# ./led.py 1 
Blinking LED 1
Using delay 10 and for 0 attempts
Turning LED 1 on, for 10 seconds, count 0.

root@galileo:~ ./led.py --help
usage: led.py [-h] [--count COUNT] [--delay DELAY] [--version] pinNumber

Simple LED Blinker for Galileo

positional arguments:
  pinNumber      Specify the pin number, i.e. 0-13

optional arguments:
  -h, --help     show this help message and exit
  --count COUNT  Number of times to execute, default infinity
  --delay DELAY  Number of seconds to wait between readings, default 10
  --version      show program's version number and exit

Possible Wiring: alt tag

led's People

Contributors

joemcmanus avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.