From 4587f989b6d479034a64b2411c1c9964cdad7261 Mon Sep 17 00:00:00 2001 From: Michael Lynch Date: Tue, 18 Aug 2020 17:54:06 -0400 Subject: [PATCH] Fix name of KEYBOARD_PATH env variable in README (#141) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8e9be0a88..fddd4050d 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ To enable TinyPilot's Git hooks, run: To run TinyPilot on a non-Pi machine, run: ```bash -PORT=8000 KEYBOARD_INTERFACE=/dev/null ./app/main.py +PORT=8000 KEYBOARD_PATH=/dev/null ./app/main.py ``` ## Options @@ -134,7 +134,7 @@ TinyPilot accepts various options through environment variables: |----------------------|--------------|-------------| | `HOST` | `0.0.0.0` | Network interface to listen for incoming connections. | | `PORT` | `8000` | HTTP port to listen for incoming connections. | -| `KEYBOARD_INTERFACE` | `/dev/hidg0` | Path to keyboard HID interface. | +| `KEYBOARD_PATH` | `/dev/hidg0` | Path to keyboard HID interface. | ## Upgrades