Commit Graph

313 Commits (0bdc5615465a0d7be2660a477a1c80750e1b3251)

Author SHA1 Message Date
Elías A. Angulo Klein 0bdc561546 Update platformio.ini 2024-07-22 07:47:15 +02:00
Elías Angulo 67e3735bae
Update v3.actions.yml 2024-07-22 06:20:57 +02:00
Elías Angulo a29002514d
Update main.actions.yml 2024-07-22 06:20:34 +02:00
Elías Angulo 3d8236aac2
Update dev.actions.yml 2024-07-22 06:20:16 +02:00
Elías Angulo 4abca7373d
Update main.actions.yml 2024-07-22 06:16:57 +02:00
Elías Angulo 735c0751c9
Update v3.actions.yml 2024-07-22 06:16:24 +02:00
Elías Angulo 83cd39e1cc
Update dev.actions.yml 2024-07-22 06:14:53 +02:00
Elías A. Angulo Klein c7b67f31b5 Merge branch 'master' of https://github.com/crossplatformdev/Watchy 2024-07-22 03:54:03 +02:00
Elías A. Angulo Klein 211abb2ab2 Added PipBoy 2024-07-22 02:54:49 +02:00
Elías Angulo fb1c5a9b38
Merge pull request #6 from crossplatformdev/custom
Custom
2024-07-22 02:41:57 +02:00
Elías A. Angulo Klein ddf69e79c7 Make gmtOffset effectively displayed. 2024-07-22 02:41:06 +02:00
Elías A. Angulo Klein f63f561b52 Formatting and some better management of timezones array 2024-07-22 02:39:43 +02:00
Elías Angulo 2a2fb3e5c2
Merge pull request #5 from crossplatformdev/moonphase
Moonphase
2024-07-22 00:25:49 +02:00
Elías A. Angulo Klein 0422175d12 Added Moon Phase menu app. 2024-07-22 00:18:51 +02:00
Elías Angulo c515c75811
Merge pull request #4 from crossplatformdev/master
Merge
2024-07-21 22:37:16 +02:00
Elías A. Angulo Klein 261390a3fb Added MoonPhase library 2024-07-21 22:05:30 +02:00
Elias A. Angulo Klein af190654ee Added platformio.ini and updated gitignore. 2024-07-20 01:06:50 +02:00
Elías Angulo 1fe685a9f3
Merge branch 'sqfmi:master' into master 2024-07-15 01:52:10 +02:00
SQFMI 9f3accdb07
Update library.json 2024-07-13 22:36:45 -04:00
SQFMI e5fce3b38b
Update README.md 2024-07-12 22:27:49 -04:00
Elías Angulo 25e43ca365
Merge pull request #1 from crossplatformdev/custom
Custom
2024-07-08 09:37:13 +02:00
Elías A. Angulo Klein a9a71698a6 Set GMT timezone in run time and location based timezone in compile time. 2024-07-08 09:11:41 +02:00
Elías Angulo e32eb01bb2
Merge branch 'sqfmi:master' into custom 2024-07-07 22:37:28 +02:00
SQFMI 71457b5f32 updated version in config.h 2024-07-06 21:59:09 -04:00
SQFMI cee857bac2 add to GHA 2024-07-06 16:20:25 -04:00
SQFMI c1c9ddc6a3 update GHA for v3 2024-07-06 15:58:31 -04:00
SQFMI d1c6d90598
fix GHA builds 2024-07-06 15:48:27 -04:00
Elías Angulo 992df52ba7
Merge branch 'sqfmi:master' into custom 2024-07-06 16:21:18 +02:00
SQFMI 9e6325e6d8 Add USB detection 2024-07-06 01:38:48 -04:00
Elías A. Angulo Klein 4aecc1599b Added functions get and is for darkMode 2024-07-05 19:22:12 +02:00
Elías A. Angulo Klein 2b1679446c Just one update on render for everything. 2024-07-05 19:21:51 +02:00
SQFMI 9c0b7e6b45
arduino-platform: esp32:esp32@2.0.17 2024-07-04 14:32:57 -04:00
SQFMI 819b3319aa
arduino-platform: esp32:esp32@2.0.17 2024-07-04 14:32:39 -04:00
SQFMI b21516f9ee merged fixes for compilation issues 2024-07-04 14:21:04 -04:00
SQFMI d7bb52d34c
Merge pull request #256 from OlegGirko/fix_btn_mask_size
Use correct 64-bit integer size for button masks.
2024-07-04 13:07:03 -04:00
Oleg Girko 1e07dc53d4 Use correct 64-bit integer size for button masks.
The esp_sleep_get_ext1_wakeup_status() function returns 64-bit value.
Hence, masks this value is checked against should be 64-bit as well.
Especially, this is important because UP_BTN_MASK for Watchy V2 does not
fit inside 32-bit integer (it's bit 35).

This change fixes this problem by using BIT64 macro instead of BIT one.

Signed-off-by: Oleg Girko <ol@infoserver.lv>
2024-07-04 17:28:06 +01:00
SQFMI 2705fca5ba
Merge pull request #254 from OlegGirko/fix_esp32_compat
Improve portability between different versions of Arduino-ESP32.
2024-07-03 12:24:05 -04:00
Oleg Girko 74b38547fe Improve portability between different versions of Arduino-ESP32.
The BLECharacteristic::getValue() method returns std::string in
older versions of Arduino core for the ESP32 and String in newer
versions.

However, the return value is used in a way that both classes support:
using only length() and c_str() methods.

Hence, replacing explicit type name with auto keyword makes the code
compatible with older and newer versions.

Signed-off-by: Oleg Girko <ol@infoserver.lv>
2024-07-03 16:58:35 +01:00
SQFMI 41d8917c76 Fix issue with display SPI pins 2024-07-02 17:23:50 -04:00
SQFMI 7747dcc645 Add support for Watchy V3 and fixed compilation errors with arduion-esp32 v3.0.x 2024-07-02 00:50:47 -04:00
SQFMI 667d86737d
Update main.actions.yml 2024-04-03 16:15:58 -04:00
SQFMI d65738fbaa
Update main.actions.yml 2024-04-03 16:09:29 -04:00
SQFMI 2dd98737fb
Update main.actions.yml 2024-04-03 16:08:09 -04:00
SQFMI 5a5b343737
fix path in GH actions 2024-04-03 15:57:14 -04:00
sqfmi 2da3fd9ede add board revision function 2024-04-03 15:10:09 -04:00
SQFMI acbb6eeece
Compile for different board revisions 2024-04-03 14:55:30 -04:00
sqfmi c1c95f9587 use chip icon 2024-04-02 22:59:02 -04:00
sqfmi bd1657e9c7 Save last used IP and SSID 2024-04-02 22:55:19 -04:00
sqfmi fbbcaabbd1 updated IP 2024-04-02 14:56:24 -04:00
SQFMI e9854a7fa2
Merge pull request #230 from denics/master
Check if wifi and change weather icon
2024-04-02 14:23:00 -04:00