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
This commit is contained in:
2025-11-13 12:26:47 +01:00
commit 29dd118dc3
31 changed files with 2138 additions and 0 deletions

67
.gitignore vendored Normal file
View File

@@ -0,0 +1,67 @@
# Personal configuration files
config.json
config.local.json
.env
.secrets
# SSH keys and certificates
*.pem
*.key
*.crt
*.p12
id_rsa*
id_ed25519*
arduino_unoq_key*
# Build artifacts
build/
*.bin
*.hex
*.elf
*.map
*.tmp
# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
# Virtual environments
venv/
env/
.venv/
# IDE files
.vscode/settings.json
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
*.tmp
# Logs
*.log
logs/
# Temporary files
tmp/
temp/
*.bak
# Node modules (if using npm)
node_modules/
# Arduino IDE files
*.hardware
*.tools
# Zephyr build files
zephyr/
build/