Skip to content

Commit 3c58f59

Browse files
committed
chore: add hardware requirements to readme
1 parent 849ace5 commit 3c58f59

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,14 @@ graph TD
3636
- Go program for handling Bluetooth input and USB HID output
3737
- Systemd service for automatic startup
3838

39-
## Prerequisites
39+
## Requirements & Compatibility
40+
41+
### Hardware
42+
- **Tested on:** Raspberry Pi Zero W 2
43+
- **Should work on:** Any Single Board Computer (SBC) with USB OTG or USB host capabilities
44+
- **Key requirement:** Device must be able to act as a USB gadget
45+
46+
### Software Prerequisites
4047

4148
Before building and running the project, ensure you have the following installed:
4249

Taskfile.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ tasks:
3737
- echo "Cleaning..."
3838
- rm -f bin/{{.BINARY_NAME}}
3939
- echo "Done"
40-
40+
# verbose tests
4141
test:
4242
desc: Run tests
4343
cmds:
4444
- echo "Running tests..."
45-
- go test ./...
45+
- go test ./... -v
4646

4747
run:
4848
desc: Run the application locally

0 commit comments

Comments
 (0)