Last active
December 16, 2024 22:59
-
-
Save good-idea/9ae1412b976c0fe23bcb59b00bbf6173 to your computer and use it in GitHub Desktop.
Onboarding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Onboarding | |
Connect to Wifi* | |
connect -> Check for Firmware Updates | |
skip -> Continue | |
Check for Firmware Updates | |
firmware check pending* | |
check finds new update -> firmware update needed | |
check finds no update -> no firmware update needed | |
no firmware update needed | |
continue -> Check for Software Updates | |
firmware update needed | |
accept -> Firmware Download Pending | |
Firmware Download Pending | |
download fails -> Firmware Download Error | |
download completes -> Firmware Download Ready | |
Firmware Download Ready | |
install -> Device Reset | |
Firmware Download Error | |
retry -> Firmware Download Pending | |
Device Reset | |
reset complete -> Check for Firmware Updates | |
Check for Software Updates | |
software check pending* | |
check finds new update -> software update needed | |
check finds no update -> no software update needed | |
no software update needed | |
continue -> Continue | |
software update needed | |
accept -> Firmware Download Pending | |
Continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment