Skip to content
Snippets Groups Projects
Commit f2fa9cb1 authored by mhby1g21's avatar mhby1g21
Browse files

changed servo constrain angle from 0:180 to 30:150

parent 23a4bfc8
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ void processCommand(String command) {
int angle = angleStr.toInt();
// Constrain angle to valid range
angle = constrain(angle, 0, 180);
angle = constrain(angle, 30, 150);
// Update finger position based on command
if (finger == "index") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment