https://github.com/dmowcomber/arduinokeyboardexamples
An Arduino media keyboard for the Arduino Pro Micro
https://github.com/dmowcomber/arduinokeyboardexamples
Last synced: 2 months ago
JSON representation
An Arduino media keyboard for the Arduino Pro Micro
- Host: GitHub
- URL: https://github.com/dmowcomber/arduinokeyboardexamples
- Owner: dmowcomber
- Created: 2020-09-27T17:30:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T05:47:59.000Z (over 4 years ago)
- Last Synced: 2025-02-01T23:31:38.217Z (4 months ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arduinoMediaKeyboard
An Arduino keyboard examples for the Arduino Pro Micro# Compile an example
```
arduino-cli compile --fqbn arduino:avr:leonardo
```# Get Arduino USB device
```
usbDevice=$(arduino-cli board list | grep usb | awk '{print $1}')
```# Upload to the Arduino
```
arduino-cli upload -p $usbDevice --fqbn arduino:avr:leonardo
```