Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Esp32s3 #112

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
18b7895
Update README
lewisxhe Aug 17, 2023
e04676b
Added board dxf
lewisxhe Aug 29, 2023
a4c1097
Update README
lewisxhe Nov 24, 2023
3cc6add
Merge branch 'esp32s3' of https://github.com/Xinyuan-LilyGO/LilyGo-EP…
lewisxhe Nov 24, 2023
e268ede
Add factory firmware
lewisxhe Nov 27, 2023
409f0bd
Merge branch 'esp32s3' of https://github.com/Xinyuan-LilyGO/LilyGo-EP…
lewisxhe Nov 27, 2023
04df63c
Update README
lewisxhe Dec 11, 2023
2dc8313
Fix ini file syntax error
lewisxhe Jan 6, 2024
917b4ba
Add touch description
lewisxhe Jan 6, 2024
a114a19
Add GT911 Touch plane example
lewisxhe Jan 6, 2024
ec67b6a
Change the directory structure to adapt to ArduinoIDE2
lewisxhe Feb 1, 2024
fc442aa
fix dir
lewisxhe Feb 1, 2024
3db7d10
Update examples
lewisxhe Apr 8, 2024
084408c
Added boards dir
lewisxhe Apr 8, 2024
8af6d0d
Rename dir
lewisxhe Apr 8, 2024
f73822d
Fix compilation warning
lewisxhe Apr 8, 2024
21bb8fd
Rename sch
lewisxhe Apr 8, 2024
52369b1
Update action
lewisxhe Apr 8, 2024
54ff127
Update README
lewisxhe Apr 8, 2024
2a5e5f3
Added platformio.ini
lewisxhe Apr 8, 2024
49d1760
Update library.properties
lewisxhe Apr 8, 2024
868e607
Added Syntax Coloring Map
lewisxhe Apr 8, 2024
254527b
Fix Arduino IDE dependencies https://github.com/Xinyuan-LilyGO/LilyGo…
lewisxhe Apr 20, 2024
d35c008
Update version
lewisxhe Apr 20, 2024
b51ce12
Update README
lewisxhe Apr 22, 2024
16aabe9
Merge branch 'esp32s3' of https://github.com/Xinyuan-LilyGO/LilyGo-EP…
lewisxhe Apr 22, 2024
c1c071c
Added Style3
lewisxhe Jul 1, 2024
2bbbba0
Added V2.4 sch
lewisxhe Aug 12, 2024
f2cb4e1
add V2.4 24-01-15 sch
puboy7 Aug 12, 2024
7e3a52e
Delete schematic/Screen-4.7-S3-V2.4 24-01-15.pdf
puboy7 Aug 12, 2024
54becb5
Add sleep test https://github.com/Xinyuan-LilyGO/LilyGo-EPD47/issues/130
lewisxhe Sep 20, 2024
575e953
Merge branch 'esp32s3' of https://github.com/Xinyuan-LilyGO/LilyGo-EP…
lewisxhe Sep 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/arduino_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Arduino_CI

on:
workflow_dispatch:
pull_request:
push:
paths:
- "examples/**"
- "src/**"
- ".github/workflows/arduino_ci.yml"
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
examples:
- examples/button/button.ino
- examples/demo/demo.ino
- examples/drawExample/drawExample.ino
- examples/drawImages/drawImages.ino
- examples/grayscale_test/grayscale_test.ino
- examples/screen_repair/screen_repair.ino
- examples/spi_driver/spi_driver.ino
- examples/touch/touch.ino
- examples/wifi_sync/wifi_sync.ino

env:
EXAMPLES: ${{matrix.examples}}

steps:
- uses: actions/checkout@v3

- name: Install Arduino Ci
run: |
wget https://downloads.arduino.cc/arduino-cli/arduino-cli_latest_Linux_64bit.tar.gz -O arduino-cli.tar.gz ;
sudo tar xf arduino-cli.tar.gz -C /usr/local/bin arduino-cli ;
arduino-cli config init ;
arduino-cli config add board_manager.additional_urls https://espressif.github.io/arduino-esp32/package_esp32_index.json ;
arduino-cli core update-index ;
arduino-cli core install esp32:esp32@2.0.14 ;

arduino-cli lib install "SensorLib"
arduino-cli lib install "Button2"

- name: Build examples
run: |
cd $GITHUB_WORKSPACE ;
arduino-cli compile -besp32:esp32:esp32s3:CDCOnBoot=cdc,FlashSize=16M,PartitionScheme=app3M_fat9M_16MB,PSRAM=opi --library . $PWD/$EXAMPLES ;
41 changes: 0 additions & 41 deletions .github/workflows/button.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/demo.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/drawImages.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/grayscale_test.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Close inactive issues
on:
schedule:
- cron: "30 1 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
days-before-pr-stale: 1
days-before-pr-close: 1
repo-token: ${{ secrets.GITHUB_TOKEN }}
Loading
Loading