Skip to content

refactor: reduce delay between slot menu opening and touch detection #17

refactor: reduce delay between slot menu opening and touch detection

refactor: reduce delay between slot menu opening and touch detection #17

Workflow file for this run

name: PlatformIO Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Fetch Library Dependencies
run: pio pkg install
- name: Create Mock arduino_secrets.h File
run: echo -e "#define SECRET_SSID \"MOCK_SSID\"\n#define SECRET_PASS \"MOCK_PASS\"\n#define SERVER_IP \"127.0.0.1\"\n" > include/arduino_secrets.h
- name: Build PlatformIO Project
run: pio run