Close
0%
0%

Pizilla

Pizilla - bringing you time , weather forecast and radar for your location in a very angry way

Similar projects worth following
Meet Pizilla. This project was originally the PiClock and published in Hackaday.
I hacked the code and came up with my own design. This is perfect for a older pi just collecting dust and a monitor sitting in the back closet.

View project log

  • 1
    Setting up the Raspberry Pi 4

    This is a excellent tutorial for those who are just starting out with the Raspberry Pi 4. The tutorial is presented by the Raspberry Pi Foundation and can be found here.

  • 2
    Install some software for Pizilla
    cd PiClock
    cd Clock
    cp ApiKeys-example.py ApiKeys.py
    sudo nano ApiKeys.py

    You need to install a couple of packages:

    sudo apt-get install python-qt4
    
    pip install rpi_ws281x
    
    git clone https://github.com/n0bel/PiClock.git
    
    
  • 3
    Get a Darksky and Mapbox key

    First you need Mapbox key from  here. The Darksky key  from here.  This will tell Pizilla  what you current weather  and forecast should be and set up the radar on your clock. Once you have them to need to be included in the config file.

    cd PiClock
    cd Clock
    cp ApiKeys-example.py ApiKeys.py
    nano ApiKeys.py

    Now you can edit the ApiKeys.py to include the keys:

    dsapi = 'YOUR DARKSKY API KEY'

    mbapi = 'YOUR MAPBOX ACCESS TOKEN'

    We need to get our  Latitude and Longitude. I found mine in Google Maps.

    cd PiClock
    cd Clock
    cp Config-Example.py Config.py
    sudo nano Config.py
    

View all 4 instructions

Enjoy this project?

Share

Discussions

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates