Skip to content

Commit

Permalink
Fixed power-down meteostation mode
Browse files Browse the repository at this point in the history
  • Loading branch information
OSi (Ondrej Sienczak) committed Sep 10, 2024
1 parent 7fa2b09 commit 8efa82f
Show file tree
Hide file tree
Showing 18 changed files with 688 additions and 701 deletions.
8 changes: 5 additions & 3 deletions esp32/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,11 @@ def copy(self, p):
cmd = (
f"rm -Rf {dst}",
f"mkdir -p {dst if src.is_dir() else dst.parent}",
f'rsync -avL --exclude="__pycache__" "{src}/." "{dst}/."'
if src.is_dir()
else f'cp "{src}" "{dst}"',
(
f'rsync -avL --exclude="__pycache__" "{src}/." "{dst}/."'
if src.is_dir()
else f'cp "{src}" "{dst}"'
),
)

for c in cmd:
Expand Down
Binary file modified esp32/micropython.bin
Binary file not shown.
Loading

0 comments on commit 8efa82f

Please sign in to comment.