Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas Ballmann 65e4e0702f use fixed colors for the wifi face 3 years ago

@ -1,34 +0,0 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build APP
on:
push:
paths:
- 'app/**'
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
strategy:
matrix:
node-version: [12.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run-script build

@ -1,40 +0,0 @@
# This is a basic workflow to help you get started with Actions
name: Build Firmware
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
paths-ignore:
- 'app/**'
# pull_request:
# branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest # ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Install library dependencies
run: pio lib -g install 1
- name: Run PlatformIO
run: platformio run
# run: pio run -e esp32

@ -6,11 +6,9 @@
[![Generic badge](https://img.shields.io/badge/APP-1.0-orange.svg?logo=vuetify)]()
[![Generic badge](https://img.shields.io/badge/3D_Housing-1.0-orange.svg?logo=makerbot)](https://www.thingiverse.com/thing:4724292)
[![Build Firmware](https://github.com/paperdash/device-epd/actions/workflows/firmware.yml/badge.svg)](https://github.com/paperdash/device-epd/actions/workflows/firmware.yml)
[![Build APP](https://github.com/paperdash/device-epd/actions/workflows/app.yml/badge.svg)](https://github.com/paperdash/device-epd/actions/workflows/app.yml)
![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)
## Open Source E-Paper Display Platform
* 🌍 [Website](https://paperdash.io/) - Learn more about paperdash.io
@ -100,4 +98,4 @@ $ platformio run --target uploadfs
# alternative, create spiffs.bin
$ platformio run --target buildfs
```
```

@ -19,7 +19,7 @@ void showFaceWifi()
GFXcanvas1 *canvas = displayGetCanvas();
// render
canvas->drawBitmap(0, 0, imageSTA, 640, 384, COLOR_BG, COLOR_FG);
canvas->drawBitmap(0, 0, imageSTA, 640, 384, 0x0000, 0xFFFF);
// update screen
displayFlush();

Loading…
Cancel
Save