Skip to content

Instantly share code, notes, and snippets.

@Manoj-nathwani
Created August 27, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Manoj-nathwani/53e25c0a2aeeb0f69625d6af519a21b7 to your computer and use it in GitHub Desktop.
Save Manoj-nathwani/53e25c0a2aeeb0f69625d6af519a21b7 to your computer and use it in GitHub Desktop.
Pi Zero + blinkytape

https://desertbot.io/blog/ssh-into-pi-zero-over-usb

SSH into the pi

$ ssh pi@raspberrypi.local

Change the default password

$ passwd

Update the pi

$ sudo apt-get update
$ sudo apt-get upgrade

Install python stuffs

$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py $ python get-pip.py

Install dependencies

$ pip install blinkytape $ pip install pyserial

Testing a hello world app

$ wget https://raw.githubusercontent.com/Blinkinlabs/BlinkyTape_Python/master/flash_example.py
$ python flash_example.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment