Skip to content

Commit

Permalink
Remove submodules and remove no longer needed dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rvdbreemen committed Feb 11, 2023
1 parent db010f2 commit 188dc93
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 15 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- dev
- dev-remove-gitsubmods
- main
- actions
- make-tweaks
Expand Down
21 changes: 21 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
[submodule "Arduino/libraries/pubsubclient"]
path = Arduino/libraries/pubsubclient
url = https://github.com/knolleary/pubsubclient
[submodule "Arduino/libraries/WiFiManager"]
path = Arduino/libraries/WiFiManager
url = https://github.com/tzapu/WiFiManager
[submodule "Arduino/libraries/TelnetStream"]
path = Arduino/libraries/TelnetStream
url = https://github.com/jandrassy/TelnetStream
[submodule "Arduino/libraries/aceTime"]
path = Arduino/libraries/aceTime
url = https://github.com/bxparks/AceTime
[submodule "Arduino/libraries/Time"]
path = Arduino/libraries/Time
url = https://github.com/PaulStoffregen/Time.git
[submodule "Arduino/libraries/ArduinoJson"]
path = Arduino/libraries/ArduinoJson
url = https://github.com/bblanchon/ArduinoJson
[submodule "Arduino/packages/esp8266"]
path = Arduino/packages/esp8266
url = https://github.com/esp8266/Arduino.git
[submodule "Arduino/libraries/DallasTemperature"]
path = Arduino/libraries/DallasTemperature
url = https://github.com/milesburton/Arduino-Temperature-Control-Library
[submodule "Arduino/libraries/OneWire"]
path = Arduino/libraries/OneWire
url = https://github.com/PaulStoffregen/OneWire.git
1 change: 1 addition & 0 deletions Arduino/libraries/ArduinoJson
Submodule ArduinoJson added at 1360b6
1 change: 1 addition & 0 deletions Arduino/libraries/DallasTemperature
Submodule DallasTemperature added at 4a0ccc
1 change: 1 addition & 0 deletions Arduino/libraries/OneWire
Submodule OneWire added at 0fa5e7
1 change: 1 addition & 0 deletions Arduino/libraries/TelnetStream
Submodule TelnetStream added at 16c07e
1 change: 1 addition & 0 deletions Arduino/libraries/WiFiManager
Submodule WiFiManager added at 16bd0f
1 change: 1 addition & 0 deletions Arduino/libraries/pubsubclient
Submodule pubsubclient added at 2d228f
1 change: 1 addition & 0 deletions Arduino/packages/esp8266
Submodule esp8266 added at 2843a5
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CLI := arduino-cli
PLATFORM := esp8266:esp8266
CFGFILE := arduino-cli.yaml
ESP8266URL := https://github.com/esp8266/Arduino/releases/download/3.0.2/package_esp8266com_index.json
LIBRARIES := libraries/WiFiManager libraries/ArduinoJson libraries/PubSubClient libraries/TelnetStream libraries/AceTime libraries/Time libraries/OneWire libraries/DallasTemperature
LIBRARIES := libraries/WiFiManager libraries/ArduinoJson libraries/PubSubClient libraries/TelnetStream libraries/AceTime libraries/OneWire libraries/DallasTemperature
BOARDS := arduino/package_esp8266com_index.json
# PORT can be overridden by the environment or on the command line. E.g.:
# export PORT=/dev/ttyUSB2; make upload, or: make upload PORT=/dev/ttyUSB2
Expand Down Expand Up @@ -83,9 +83,9 @@ libraries/TelnetStream:
libraries/AceTime:
$(CLI) lib install Acetime@2.0.1

libraries/Time:
$(CLI) lib install --git-url https://github.com/PaulStoffregen/Time
# https://github.com/PaulStoffregen/Time/archive/refs/tags/v1.6.1.zip
# libraries/Time:
# $(CLI) lib install --git-url https://github.com/PaulStoffregen/Time
# # https://github.com/PaulStoffregen/Time/archive/refs/tags/v1.6.1.zip

libraries/OneWire:
$(CLI) lib install OneWire@2.3.6
Expand Down
2 changes: 1 addition & 1 deletion networkStuff.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include <LittleFS.h>

//Use the NTP SDK ESP 8266
#include <time.h>
//#include <time.h>
extern "C" int clock_gettime(clockid_t unused, struct timespec *tp);

enum NtpStatus_t {
Expand Down
18 changes: 9 additions & 9 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
#define _VERSION_MAJOR 0
#define _VERSION_MINOR 10
#define _VERSION_PATCH 1
#define _VERSION_BUILD 2043
#define _VERSION_GITHASH "c8970c8"
#define _VERSION_PRERELEASE beta
#define _VERSION_BUILD 2044
#define _VERSION_GITHASH "db010f2"
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
#define _VERSION_DATE "11-02-2023"
#define _VERSION_TIME "01:21:13"
#define _VERSION_TIME "09:30:33"
#define _SEMVER_CORE "0.10.1"
#define _SEMVER_BUILD "0.10.1+2043"
#define _SEMVER_GITHASH "0.10.1+c8970c8"
#define _SEMVER_FULL "0.10.1-beta+c8970c8"
#define _SEMVER_NOBUILD "0.10.1-beta (11-02-2023)"
#define _VERSION "0.10.1-beta+c8970c8 (11-02-2023)"
#define _SEMVER_BUILD "0.10.1+2044"
#define _SEMVER_GITHASH "0.10.1+db010f2"
#define _SEMVER_FULL "0.10.1+db010f2"
#define _SEMVER_NOBUILD "0.10.1 (11-02-2023)"
#define _VERSION "0.10.1+db010f2 (11-02-2023)"
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver

0 comments on commit 188dc93

Please sign in to comment.