E-Paper-Calendar/README.md

48 lines
2.5 KiB
Markdown
Raw Normal View History

2018-08-26 23:56:49 +02:00
# Raspberry-Pi-Google-Calendar-with-E-Paper-display
2018-08-27 00:46:07 +02:00
A python script for the rpi zero w to sync events from any online calendar to a beautiful E-Paper Display, get live weather data and much more.
2018-08-27 00:15:18 +02:00
2018-08-28 12:46:57 +02:00
### News: Added Support for Raspbian Stretch lite. To get this up and running on raspbian stretch lite, follow the instructions just below.
2018-08-27 00:15:18 +02:00
#Place image of the calendar here
## Main features
2018-08-27 00:43:22 +02:00
* Display the date and a full monthly calendar
* Syncronise events from any online calendar (like google, yahoo etc.)
* Get live weather data (including temperature, humidity, etc.) using openweathermap api
2018-08-27 00:15:18 +02:00
## Hardware required
2018-08-27 00:41:35 +02:00
* 7.5" E-Paper Display (Black, White, Red) with driver hat from waveshare (https://www.waveshare.com/product/7.5inch-e-paper-hat-b.htm)
* Raspberry Pi Zero W (without headers)
* 90° angled 2x20 Pin GPIO headers
* MicroSD card (min. 4GB)
* MicroUSB cable
2018-08-27 00:43:22 +02:00
* 3d-printer (you can also appoint any 3d-printing service)
* Soldering iron
2018-08-27 00:15:18 +02:00
2018-08-27 00:36:07 +02:00
## Setup
2018-08-27 16:03:47 +02:00
### Getting the Raspberry Pi Zero W ready
2018-08-27 16:47:33 +02:00
1. Set up Wifi on the Raspberry Pi Zero W by copying the file **wpa_supplicant.conf** to the /boot directory and adding your Wifi details in that file.
2. Create a simple text document named **ssh** in the boot directory to enable ssh.
3. Expand the filesystem in the Terminal with **`sudo raspi-config --expand-rootfs`**
4. Enable SPI by entering **`sudo sed -i s/#dtparam=spi=on/dtparam=spi=on/ /boot/config.txt`** in the Terminal
5. Set the correct timezone with **`sudo dpkg-reconfigure tzdata`**, selecting the correct continent and then the capital of your country.
6. Reboot to apply changes
2018-08-27 16:03:47 +02:00
2018-08-28 12:52:05 +02:00
### Installing required packages for python 3.5
Execute the following command in the Terminal to install all required packages. This will work on both, Raspbian Stretch with Desktop and Raspbian Stretch lite.
2018-08-28 02:15:03 +02:00
**`curl -sSL https://raw.githubusercontent.com/aceisace/Raspberry-Pi-Google-Calendar-with-E-Paper-display/master/Packages-installer | bash`**
2018-08-27 00:36:07 +02:00
### Customising the main script
2018-08-28 02:14:37 +02:00
Once the packages are installed, navigate to the home directory, open 'E-Paper-Master' and open the file 'stable.py' inside the Calendar folder.
3 Main Details are needed to get running:
1. A valid ical URL. Use the export funtion in google calendar to create a ical url link and paste it in the url section
2. A valid openweathermap API-Key is required. This key can be optained for free with an account on openweathermap
3. Your city's name and your country code (so the correct weather can be displayed) (e.g. `New York, US`)
2018-08-27 00:54:59 +02:00
#### Contact
2018-08-28 12:53:45 +02:00
* Website: ace-laboratory.com
* email: aceisace63@yahoo.com
2018-08-27 00:54:59 +02:00