Skip to content

Commit

Permalink
v2.1 release (#45)
Browse files Browse the repository at this point in the history
* material design icons
* settings menu
* fahrenheit
* efuse factory params
* updated platform to espressif32@6.1.0
* updated GxEPD2 to v1.5.1
* ported app state machine to new implementation
  • Loading branch information
nplan committed Apr 25, 2023
1 parent 56233a2 commit 21c93d9
Show file tree
Hide file tree
Showing 43 changed files with 2,295 additions and 985 deletions.
9 changes: 9 additions & 0 deletions Firmware/HomeButtonsArduino/dependencies.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dependencies:
idf:
component_hash: null
source:
type: idf
version: 4.4.4
manifest_hash: dcf4d39b94252de130019eadceb989d72b0dbc26b552cfdcbb50f6da531d2b92
target: esp32s2
version: 1.0.0
5 changes: 3 additions & 2 deletions Firmware/HomeButtonsArduino/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[env]
build_unflags = -std=gnu++11
platform = espressif32@5.3.0
platform = espressif32@6.1.0
board = homebuttons_rev1.0
framework = arduino, espidf
upload_protocol = esptool
Expand All @@ -19,12 +19,13 @@ upload_port = /dev/cu.usbmodem01
monitor_port = /dev/cu.usbmodem101
monitor_speed = 115200
monitor_filters = esp32_exception_decoder, colorize
extra_scripts = pre:pre_script.py
lib_deps =
knolleary/PubSubClient@2.8
bblanchon/ArduinoJson@6.20.0
https://github.com/tzapu/WiFiManager.git#v2.0.13-beta
adafruit/Adafruit SHTC3 Library@1.0.1
zinggjm/GxEPD2@1.5.0
zinggjm/GxEPD2@1.5.1
ricmoo/QRCode@0.0.1
olikraus/U8g2_for_Adafruit_GFX@1.8.0
https://github.com/Neargye/semver.git#v0.3.0
Expand Down
15 changes: 15 additions & 0 deletions Firmware/HomeButtonsArduino/pre_script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python

import os


def delete_sdkconfig_files():
try:
os.remove("sdkconfig.release")
os.remove("sdkconfig.debug")
print("Deleted sdkconfig.release and sdkconfig.debug files")
except:
pass


delete_sdkconfig_files()
9 changes: 9 additions & 0 deletions Firmware/HomeButtonsArduino/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,12 @@ CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP=y
CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE=y

CONFIG_LWIP_DHCP_DOES_ARP_CHECK=n

CONFIG_SPIFFS_OBJ_NAME_LEN=56

CONFIG_MBEDTLS_DYNAMIC_BUFFER=y
CONFIG_MBEDTLS_DYNAMIC_FREE_PEER_CERT=y
CONFIG_MBEDTLS_DYNAMIC_FREE_CONFIG_DATA=y
CONFIG_MBEDTLS_DYNAMIC_FREE_CA_CERT=y

CONFIG_EFUSE_CUSTOM_TABLE=y
Loading

0 comments on commit 21c93d9

Please sign in to comment.