Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pre-commit-install: uv
@$(UVX) pre-commit install > /dev/null

.PHONY: sync-time
sync-time: uv ## Syncs th time from your computer to the PROVES Kit board
sync-time: uv ## Syncs the time from your computer to the PROVES Kit board
$(UVX) --from git+https://github.com/proveskit/sync-time@1.0.0 sync-time

.PHONY: fmt
Expand Down
9 changes: 7 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
except ImportError:
import board

import os

import lib.pysquared.functions as functions
import lib.pysquared.nvm.register as register
import lib.pysquared.pysquared as pysquared
Expand All @@ -40,8 +42,11 @@
colorized=False,
)

logger.info("Booting", software_version=__version__, published_date="November 19, 2024")

logger.info(
"Booting",
hardware_version=os.uname().version,
software_version=__version__,
)
loiter_time: int = 5

try:
Expand Down