Added build version to web interface, WiFi reset button

This commit is contained in:
Djuri 2023-08-23 20:22:55 +02:00
parent fdd32456bc
commit df184bb4ec
10 changed files with 2805 additions and 1345 deletions

8
scripts/git_rev.py Normal file
View file

@ -0,0 +1,8 @@
import subprocess
revision = (
subprocess.check_output(["git", "rev-parse", "HEAD"])
.strip()
.decode("utf-8")
)
print("'-DGIT_REV=\"%s\"'" % revision)