Skip to content

Commit

Permalink
Fix setup arduino versions, create new release, and lower refresh rate
Browse files Browse the repository at this point in the history
  • Loading branch information
LArkema committed Feb 18, 2024
1 parent 2c825e3 commit 453423d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile-sketches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
sed -i -E "/SECRET_WMATA_API_KEY_2/s/[0-9a-f]{32}/${{ secrets.WMATA_API_KEY_2 }}/" ${config};
done
- name: Install Arduino Cli
uses: arduino/setup-arduino-cli@v1
uses: arduino/setup-arduino-cli@v1.1.2
- name: Install boards and libraries
run: |
arduino-cli core update-index --additional-urls https://arduino.esp8266.com/stable/package_esp8266com_index.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Arduino CLI
uses: arduino/setup-arduino-cli@v1
uses: arduino/setup-arduino-cli@v1.1.2
- name: Install packages and boards
run: |
arduino-cli core update-index --additional-urls https://arduino.esp8266.com/stable/package_esp8266com_index.json
Expand Down
4 changes: 2 additions & 2 deletions DCTransistor-Bidirectional/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <ESP8266httpUpdate.h>

//Version string. Changes with every software version
#define VERSION "1.1.11"
#define VERSION "1.1.12"

/*
* USER CONFIGURATION VALUES
Expand All @@ -37,7 +37,7 @@
#define PRINT

//Number of seconds to wait between requests to WMATA server (WMATA updates every ~20, per documentation)
#define WAIT_SEC 20
#define WAIT_SEC 15

//Name of WiFi Network (SSID) Board Creates when unable to connect to wifi
#define WIFI_NAME "DCTransistor"
Expand Down
4 changes: 2 additions & 2 deletions DCTransistor/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <ESP8266httpUpdate.h>

//Version string. Changes with every software version
#define VERSION "1.1.11"
#define VERSION "1.1.12"

/*
* USER CONFIGURATION VALUES
Expand All @@ -37,7 +37,7 @@
//#define PRINT

//Number of seconds to wait between requests to WMATA server (WMATA updates every ~20, per documentation)
#define WAIT_SEC 20
#define WAIT_SEC 15

//Name of WiFi Network (SSID) Board Creates when unable to connect to wifi
#define WIFI_NAME "DCTransistor"
Expand Down

0 comments on commit 453423d

Please sign in to comment.