- Principal.cs/Designer.cs: WinForms KVM host app (.NET 8) Global mouse/keyboard hooks, edge detection, BT serial protocol, clipboard paste via Ctrl+V, PT-BR ABNT2 layout translation - KVMote.ino: Arduino Leonardo sketch (HC-06 BT, USB HID) Non-blocking state machine, LED RGB feedback, full protocol support - KVMote.csproj/sln: project files with System.IO.Ports NuGet - .gitignore: C#/Visual Studio standard exclusions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
341 B
Plaintext
33 lines
341 B
Plaintext
# Visual Studio
|
|
.vs/
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# Build output
|
|
bin/
|
|
obj/
|
|
|
|
# NuGet
|
|
*.nupkg
|
|
*.snupkg
|
|
packages/
|
|
project.lock.json
|
|
project.fragment.lock.json
|
|
artifacts/
|
|
|
|
# Publish output
|
|
publish/
|
|
|
|
# Roslyn / analyzers
|
|
*.aps
|
|
|
|
# OS
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.DS_Store
|
|
|
|
# Claude Code settings (local only)
|
|
.claude/settings.local.json
|