mirror of
https://gitlab.com/wirelos/sprocket-plugin-irc.git
synced 2025-12-14 05:36:50 +01:00
pin versions
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -69,4 +69,5 @@ typings/
|
||||
.gcc-flags.json
|
||||
.pioenvs
|
||||
.piolibdeps
|
||||
data/config.json
|
||||
data/config.json
|
||||
.pio
|
||||
@@ -1,4 +1,4 @@
|
||||
image: python:2.7-stretch
|
||||
image: python:3.12.10
|
||||
|
||||
stages:
|
||||
- build
|
||||
@@ -8,7 +8,7 @@ before_script:
|
||||
|
||||
examples:
|
||||
stage: build
|
||||
image: python:2.7-stretch
|
||||
image: python:3.12.10
|
||||
script:
|
||||
- pio run -t clean
|
||||
- pio run -e basic
|
||||
- pio run --target clean
|
||||
- pio run
|
||||
@@ -2,10 +2,10 @@
|
||||
"stationMode": 1,
|
||||
"hostname": "sprocket",
|
||||
"apSSID": "sprocket",
|
||||
"apPassword": "th3r31sn0Sp00n",
|
||||
"apPassword": "somethingSneaky",
|
||||
"connectTimeout": 20000,
|
||||
"stationSSID": "MyAP",
|
||||
"stationPassword": "th3r31sn0Sp00n",
|
||||
"stationPassword": "somethingSneaky",
|
||||
"meshSSID": "whateverYouLike",
|
||||
"meshPassword": "somethingSneaky",
|
||||
"meshPort": 5555,
|
||||
|
||||
@@ -1,28 +1,24 @@
|
||||
[platformio]
|
||||
env_default = basic
|
||||
default_envs = basic
|
||||
|
||||
[common]
|
||||
framework = arduino
|
||||
platform = espressif8266
|
||||
platform = platformio/espressif8266@2.6.3
|
||||
board = esp12e
|
||||
upload_speed = 921600
|
||||
monitor_baud = 115200
|
||||
monitor_speed = 115200
|
||||
lib_deps =
|
||||
Hash
|
||||
TaskScheduler
|
||||
SPIFFS
|
||||
ArduinoJson
|
||||
ArduinoOTA
|
||||
https://gitlab.com/wirelos/sprocket-lib.git#develop
|
||||
https://gitlab.com/wirelos/sprocket-network-wifi.git
|
||||
arkhipenko/TaskScheduler@^3.8.5
|
||||
bblanchon/ArduinoJson@5.13.4
|
||||
fredimachado/ArduinoIRC@^0.2.0
|
||||
https://gitlab.com/wirelos/sprocket-lib.git#master
|
||||
https://gitlab.com/wirelos/sprocket-network-wifi.git#master
|
||||
|
||||
[env:basic]
|
||||
src_filter = +<*> -<examples/> +<examples/basic/>
|
||||
build_src_filter = +<*> -<examples/> +<examples/basic/>
|
||||
platform = ${common.platform}
|
||||
board = ${common.board}
|
||||
upload_speed = ${common.upload_speed}
|
||||
monitor_baud = ${common.monitor_baud}
|
||||
monitor_speed = ${common.monitor_speed}
|
||||
framework = ${common.framework}
|
||||
lib_deps = ${common.lib_deps}
|
||||
ESP8266mDNS
|
||||
ArduinoIRC
|
||||
Reference in New Issue
Block a user