Compare commits

...

13 Commits

Author SHA1 Message Date
Elías Angulo 9fb4ad9946
Merge af190654ee into 58e909afed 2024-07-19 23:07:22 +00:00
Elias A. Angulo Klein af190654ee Added platformio.ini and updated gitignore. 2024-07-20 01:06:50 +02:00
SQFMI 58e909afed Merge branch 'master' into dev 2024-07-04 14:41:41 -04:00
sqfmi a07903f7b2 Merge branch 'master' into dev 2024-04-02 14:25:06 -04:00
sqfmi ef2d57f737 Merge branch 'dev' of https://github.com/sqfmi/Watchy into dev 2024-04-02 14:19:35 -04:00
sqfmi fbdaacd287 Merge branch 'master' into dev 2024-04-02 14:18:46 -04:00
SQFMI 99cacd26a9
Merge pull request #233 from Sudrien/master
Switch from CityID to Lat an Lon, expose sunrise and sunset
2024-04-02 14:16:04 -04:00
SQFMI b90b4a1af1 removed binaries 2023-04-29 12:35:05 -04:00
SQFMI 8d0ca659c9
Merge pull request #227 from wjgeorge/dev
remove old binaries
2023-04-29 12:31:14 -04:00
wjgeorge 9a383133b3 Merge branch 'dev' of https://github.com/wjgeorge/Watchy into dev 2023-04-28 21:54:52 -04:00
wjgeorge d312d2ba29 remove old binaries fixes #224 2023-04-28 21:54:03 -04:00
SQFMI ffc7de15b8 Add WiFi info to About Watchy 2023-04-28 15:33:15 -04:00
SQFMI 9c50085077 Add offline sensor read icon
Added new icon to indicate internal sensor reading when not connected to WiFi
2023-04-28 14:59:41 -04:00
11 changed files with 49 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
.pio/
.vscode/
app/bin/
app/pde.jar
build/macosx/work/

Binary file not shown.

Binary file not shown.

Binary file not shown.

47
platformio.ini Normal file
View File

@ -0,0 +1,47 @@
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:base]
platform = espressif32@6.7.0
framework = arduino
;CDC enabled on boot:
build_flags = -DCDC_ENABLED
;erase flash before upload:
;upload_flags = --erase-all
;upload speed:
upload_speed = 115200
;upload port (put yours here):
upload_port = COM7
;upload_port = /dev/ttyACM0 for linux
board_build.partitions = default_8MB.csv
monitor_speed = 115200
lib_deps =
Adafruit GFX Library
Arduino_JSON
DS3232RTC
NTPClient
https://github.com/orbitalair/Rtc_Pcf8563.git#master
https://github.com/ZinggJM/GxEPD2.git#master
https://github.com/tzapu/WiFiManager.git#master
[env:esp32-s3-devkitc-1]
; This is for v3
extends = env:base
board = esp32-s3-devkitc-1
board_build.mcu = esp32s3
framework = arduino
[env:esp32-pico-devkitm-2]
; This is for v1, v1.5, v2
extends = env:base
board = esp32-pico-devkitm-2
framework = arduino