Go to file
2021-09-02 11:43:43 +02:00
app show devices specs under system 2021-06-06 16:35:42 +02:00
assets weekday bugfix #20 2020-03-11 21:19:08 +01:00
data #54 fixed some todos 2021-01-08 20:58:19 +01:00
doc #54 optimize svg 2021-01-12 20:25:01 +01:00
include clean up code 2021-05-16 09:43:10 +02:00
lib use fixed colors for the wifi face 2021-05-22 12:33:19 +02:00
src #49 captive portal added 2021-02-06 22:03:31 +01:00
test Initial commit 2020-02-10 12:24:04 +01:00
.editorconfig editorconfig - use spaces for vue files 2020-11-17 22:46:07 +01:00
.gitignore update git ignore 2020-10-01 21:29:14 +02:00
.travis.yml Initial commit 2020-02-10 12:24:04 +01:00
git_rev_macro.py #40 make firmware data accessible - missing file 2020-11-01 16:20:51 +01:00
LICENSE Add LICENSE 2021-01-16 09:38:15 +00:00
partitions_pd.csv code clean up and small improvements 2020-05-20 12:52:07 +02:00
platformio.ini fix deps and platform config 2020-12-27 16:29:10 +01:00
README.md made with vue badge added 2021-09-02 11:43:43 +02:00

paperdash.io

Software License Generic badge Generic badge Generic badge Generic badge MadeWithVueJs.com shield

ForTheBadge built-with-love

Open Source E-Paper Display Platform

  • 🌍 Website - Learn more about paperdash.io
  • 📡 Discover - Find devices in your local network
  • 🛠 Case - 3D Model
  • 👍 Like us on Instagram

Face Calendar Face Picture APP

Goals

  • Make E-Paper displays accessible to all kind of developers
  • Easy and always update able
  • Usable also without developer background
  • Deliver the best user experience
  • Should work Out-of-the-box
  • Using standard parts to built

Features

Firmware

  • OTA update
  • REST API
  • JPEG decoder (some limitations)
  • PNG decoder (work in progress)
  • Out-of-the-box faces
    • Current weather condition and forecast (https://openweathermap.org/ api key requried)
    • Calendar view with random picture
    • Today view with fullscreen random picture
  • Wifi STA fallback if connection failed

Web APP

  • ESP-32 optimized vue.js Web APP
  • Material Design Framework
  • First run setup wizard
  • Screen preview of epd
  • Basic PWA possibility

API examples

# Get device stats as json
$ curl http://paperdash-epd.local/stats

# Download current image display
$ curl http://paperdash-epd.local/api/device/screen > current.bmp

# Send an image to display
$ curl -F '=@data/faceToday.jpg;filename=dithering' http://paperdash-epd.local/api/device/screen

Getting started

Necessary parts to build the project

ESP-32 firmware

The whole architecture was inspired from the arduino concept with a setup() and loop() function. This is the reason why everything is broken down into separate modules below /lib. Each module has basically a setupXXX() and loopXXX() method.

Build (with PlatformIO)

$ pio run --environment esp32

# update esp
$ platformio run --target upload

Web APP

Based on state of the art technologie Vue.js + Vuetify + Webpack

Build

$ yarn --cwd app
$ yarn --cwd app build

# update esp
$ platformio run --target uploadfs

# alternative, create spiffs.bin
$ platformio run --target buildfs