diff --git a/.gitignore b/.gitignore
index 326e9d9..6fb3674 100644
--- a/.gitignore
+++ b/.gitignore
@@ -77,4 +77,6 @@ dist/
.pioenvs
.piolibdeps
-.vscode/.ipch
\ No newline at end of file
+.vscode/.ipch
+
+.pio
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4f36709..e123e35 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -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
\ No newline at end of file
+ - pio run --target clean
+ - pio run
\ No newline at end of file
diff --git a/platformio.ini b/platformio.ini
index cdaf4a1..694707c 100644
--- a/platformio.ini
+++ b/platformio.ini
@@ -1,15 +1,14 @@
[common]
framework = arduino
-platform = espressif8266
+platform = platformio/espressif8266@2.6.3
board = esp12e
upload_speed = 921600
monitor_baud = 115200
lib_deps =
- Hash
- TaskScheduler
- SPIFFS
+ arkhipenko/TaskScheduler@^3.8.5
ArduinoJson@5.13.4
- https://gitlab.com/wirelos/sprocket-lib.git#develop
+ #symlink://../../core
+ https://gitlab.com/wirelos/sprocket-lib.git#master
[env:basic]
src_filter = +<*> - +
@@ -19,7 +18,6 @@ upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud}
framework = ${common.framework}
lib_deps = ${common.lib_deps}
- ESP8266mDNS
[env:basic_esp01]
platform = ${common.platform}
@@ -29,7 +27,6 @@ src_filter = +<*> - +
upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud}
lib_deps = ${common.lib_deps}
- ESP8266mDNS
[env:basic_esp32]
src_filter = +<*> - +
@@ -39,4 +36,3 @@ upload_speed = ${common.upload_speed}
monitor_baud = ${common.monitor_baud}
framework = ${common.framework}
lib_deps = ${common.lib_deps}
- ESPmDNS
\ No newline at end of file
diff --git a/src/examples/basic/config.h b/src/examples/basic/config.h
index 859d343..62dbcb8 100644
--- a/src/examples/basic/config.h
+++ b/src/examples/basic/config.h
@@ -14,8 +14,8 @@
#define SPROCKET_MODE 1
#define AP_SSID "Th1ngs4p"
#define AP_PASSWORD "th3r31sn0sp00n"
-#define STATION_SSID "tErAx1d"
-#define STATION_PASSWORD "ramalamadingdong"
+#define STATION_SSID "your-wifi"
+#define STATION_PASSWORD "your-wifi-password"
#define HOSTNAME "standalone-node"
#define CONNECT_TIMEOUT 10000