- 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
26 lines
801 B
JSON
26 lines
801 B
JSON
{
|
|
"name": "arduino-uno-q",
|
|
"version": "1.0.0",
|
|
"description": "Arduino UNO Q project with MCU and MPU support",
|
|
"main": "src/mcu/main.ino",
|
|
"scripts": {
|
|
"build": "./build.sh",
|
|
"upload": "./upload.sh",
|
|
"deploy": "npm run build && npm run upload",
|
|
"monitor": "arduino-cli monitor",
|
|
"setup": "./setup_ssh.sh",
|
|
"status": "./scripts/status.sh",
|
|
"logs": "./scripts/logs.sh",
|
|
"restart": "./scripts/restart.sh",
|
|
"stop": "./scripts/stop.sh"
|
|
},
|
|
"keywords": ["arduino", "uno-q", "stm32", "linux", "mcu", "mpu"],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/arduino/uno-q-examples"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {}
|
|
} |