Skip to content

Commit

Permalink
Merge pull request #827 from OpenEVSE/library_update
Browse files Browse the repository at this point in the history
Library updates
  • Loading branch information
jeremypoulter committed May 8, 2024
2 parents cd74b35 + 26a9d8e commit 3acace0
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: PlatformIO Dependabot

on:
workflow_dispatch: # option to manually trigger the workflow
schedule:
# Runs every day at 00:00
- cron: '0 0 * * *'

permissions:
contents: read
pull-requests: write

jobs:
dependabot:
runs-on: ubuntu-latest
name: run PlatformIO Dependabot
steps:
- name: Checkout
uses: actions/checkout@v4
- name: run PlatformIO Dependabot
uses: peterus/platformio_dependabot@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
10 changes: 5 additions & 5 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ default_envs = openevse_wifi_v1
[common]
lib_deps =
bblanchon/ArduinoJson@6.20.1
jeremypoulter/ArduinoMongoose@0.0.18
jeremypoulter/ArduinoMongoose@0.0.20
jeremypoulter/Micro Debug@0.0.5
jeremypoulter/ConfigJson@0.0.6
jeremypoulter/OpenEVSE@0.0.14
jeremypoulter/ESPAL@0.0.3
jeremypoulter/ESPAL@0.0.4
jeremypoulter/StreamSpy@0.0.1
jeremypoulter/MicroTasks@0.0.3
matth-x/ArduinoOcpp@0.3.0
Expand Down Expand Up @@ -161,7 +161,7 @@ gfx_display_build_flags =
#platform = https://github.com/platformio/platform-espressif32.git#feature/stage
#platform = https://github.com/platformio/platform-espressif32.git#develop
#platform = espressif32@1.11.1
platform = espressif32@6.4.0
platform = espressif32@6.6.0
#framework = arduino, espidf
framework = arduino
lib_deps = ${common.lib_deps}
Expand Down Expand Up @@ -315,7 +315,7 @@ build_flags =
-D RESET_ETH_PHY_ON_BOOT=1
-D RX2=16
-D TX2=32
board_build.extra_flags = "-DARDUINO_ESP32_GATEWAY=\'F\'"
board_build.extra_flags = "-DARDUINO_ESP32_GATEWAY_F"
upload_speed = 921600

[env:olimex_esp32-gateway-e]
Expand All @@ -324,7 +324,7 @@ upload_speed = 921600
extends = env:olimex_esp32-gateway-f
build_flags =
${env:olimex_esp32-gateway-f.build_flags}
board_build.extra_flags = "-DARDUINO_ESP32_GATEWAY=\'E\'"
board_build.extra_flags = "-DARDUINO_ESP32_GATEWAY_E"

[env:olimex_esp32-gateway-e_dev]
extends = env:olimex_esp32-gateway-e
Expand Down

0 comments on commit 3acace0

Please sign in to comment.