Upgrade to Pro — share decks privately, control downloads, hide ads and more …

What can I do with that Raspberry Pi?

What can I do with that Raspberry Pi?

Did you get one for Christmas but never used it? Here are 3 ideas:
1. Media Center
2. Hardware fun
3. All those DOS games you used to love

Paul McGrath

June 10, 2017
Tweet

More Decks by Paul McGrath

Other Decks in Programming

Transcript

  1. Hello world in hardware: import RPi.GPIO as GPIO ## Import

    GPIO library GPIO.setmode(GPIO.BOARD) ## Use board pin numbering GPIO.setup(7, GPIO.OUT) ## Setup GPIO Pin 7 to OUT GPIO.output(7,True) ## Turn on GPIO pin 7