initial commit

This commit is contained in:
2023-07-05 15:22:14 +02:00
commit e339e924dc
38 changed files with 10057 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export async function bootLoader() {
//Sends the bootloader command to the charachorder via the serial API
await sendCommandString("BOOTLOADER")
await readGetNone()
}
export async function reboot() {
//Sends the restart command to the charachorder via the serial API
await sendCommandString("RESTART")
await readGetNone()
}