Implement the mars rover control

This commit is contained in:
Pascal Le Merrer 2026-03-01 23:13:02 +01:00
commit ae2c125e2e
7 changed files with 582 additions and 0 deletions

14
devbox.json Normal file
View file

@ -0,0 +1,14 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.16.0/.schema/devbox.schema.json",
"packages": ["zig@latest"],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}