ArduinoUNO-Q/package.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
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": {}
}