summaryrefslogtreecommitdiffstats
path: root/movement/README.md
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-10-19 13:33:11 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-10-19 13:46:25 -0400
commit75be6219142a7333fb62ac91fb6abaaf648077e4 (patch)
tree018f832b95fd36057e74697848bb4f588a9c28b2 /movement/README.md
parent52c5747d2e873d4946d211c548c03498b72c1fb5 (diff)
downloadSensor-Watch-75be6219142a7333fb62ac91fb6abaaf648077e4.tar.gz
Sensor-Watch-75be6219142a7333fb62ac91fb6abaaf648077e4.tar.bz2
Sensor-Watch-75be6219142a7333fb62ac91fb6abaaf648077e4.zip
movement settings: add timeout and LED duration
Diffstat (limited to 'movement/README.md')
-rw-r--r--movement/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/movement/README.md b/movement/README.md
index e4eeb1c4..009234f8 100644
--- a/movement/README.md
+++ b/movement/README.md
@@ -158,10 +158,10 @@ case EVENT_MODE_BUTTON_UP:
break;
```
-Similarly in response to the user releasing the LIGHT button, we tell Movement to illuminate the LED. Movement does not do this automatically, in case your watch face UI has another use for the LIGHT button.
+Similarly in response to the user pressing the LIGHT button, we tell Movement to illuminate the LED. Movement does not do this automatically, in case your watch face UI has another use for the LIGHT button.
```c
-case EVENT_LIGHT_BUTTON_UP:
+case EVENT_LIGHT_BUTTON_DOWN:
movement_illuminate_led();
break;
```