pin versions

This commit is contained in:
2025-08-14 20:02:26 +02:00
parent 8226feaba8
commit 8730f73d86
4 changed files with 13 additions and 15 deletions

2
.gitignore vendored
View File

@@ -78,3 +78,5 @@ dist/
.piolibdeps .piolibdeps
.vscode/.ipch .vscode/.ipch
.pio

View File

@@ -1,4 +1,4 @@
image: python:2.7-stretch image: python:3.12.10
stages: stages:
- build - build
@@ -8,7 +8,7 @@ before_script:
examples: examples:
stage: build stage: build
image: python:2.7-stretch image: python:3.12.10
script: script:
- pio run -t clean - pio run --target clean
- pio run - pio run

View File

@@ -1,15 +1,14 @@
[common] [common]
framework = arduino framework = arduino
platform = espressif8266 platform = platformio/espressif8266@2.6.3
board = esp12e board = esp12e
upload_speed = 921600 upload_speed = 921600
monitor_baud = 115200 monitor_baud = 115200
lib_deps = lib_deps =
Hash arkhipenko/TaskScheduler@^3.8.5
TaskScheduler
SPIFFS
ArduinoJson@5.13.4 ArduinoJson@5.13.4
https://gitlab.com/wirelos/sprocket-lib.git#develop #symlink://../../core
https://gitlab.com/wirelos/sprocket-lib.git#master
[env:basic] [env:basic]
src_filter = +<*> -<examples/> +<examples/basic/> src_filter = +<*> -<examples/> +<examples/basic/>
@@ -19,7 +18,6 @@ upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud} monitor_baud = ${common.monitor_baud}
framework = ${common.framework} framework = ${common.framework}
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
ESP8266mDNS
[env:basic_esp01] [env:basic_esp01]
platform = ${common.platform} platform = ${common.platform}
@@ -29,7 +27,6 @@ src_filter = +<*> -<examples/> +<examples/basic/>
upload_speed = ${common.upload_speed} upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud} monitor_baud = ${common.monitor_baud}
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
ESP8266mDNS
[env:basic_esp32] [env:basic_esp32]
src_filter = +<*> -<examples/> +<examples/basic/> src_filter = +<*> -<examples/> +<examples/basic/>
@@ -39,4 +36,3 @@ upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud} monitor_baud = ${common.monitor_baud}
framework = ${common.framework} framework = ${common.framework}
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
ESPmDNS

View File

@@ -14,8 +14,8 @@
#define SPROCKET_MODE 1 #define SPROCKET_MODE 1
#define AP_SSID "Th1ngs4p" #define AP_SSID "Th1ngs4p"
#define AP_PASSWORD "th3r31sn0sp00n" #define AP_PASSWORD "th3r31sn0sp00n"
#define STATION_SSID "tErAx1d" #define STATION_SSID "your-wifi"
#define STATION_PASSWORD "ramalamadingdong" #define STATION_PASSWORD "your-wifi-password"
#define HOSTNAME "standalone-node" #define HOSTNAME "standalone-node"
#define CONNECT_TIMEOUT 10000 #define CONNECT_TIMEOUT 10000