ArduinoUNO-Q/config.example.json
Edwin Noorlander 29dd118dc3 Initial Arduino UNO Q template with LED Matrix functionality
- Complete MPU-MCU communication setup
- LED Matrix text display with configurable parameters
- Configuration management with personal data protection
- Git template with .gitignore for sensitive data
- Automated build and deployment scripts
- SSH key management and service scripts
2025-11-13 12:26:47 +01:00

26 lines
648 B
JSON

{
"arduino_uno_q": {
"hostname": "YOUR_UNOQ_IP_ADDRESS",
"user": "arduino",
"port": 22,
"ssh_key": "~/.ssh/arduino_unoq_key"
},
"build": {
"fqbn": "arduino:zephyr:unoq",
"sketch_path": "src/mcu/unoq_sketch/unoq_sketch.ino",
"build_dir": "build",
"output_dir": "build/output"
},
"paths": {
"python_script": "src/mpu/main.py",
"mcu_binary": "build/output/unoq_sketch.ino.bin",
"cmd_pipe": "/tmp/unoq_cmd.pipe",
"status_file": "/tmp/unoq_status.json"
},
"led_matrix": {
"default_text": "Hallo World",
"default_speed": 150,
"default_time": 5000,
"default_direction": 0
}
}