We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe45f35 commit f5c7b59Copy full SHA for f5c7b59
src/server/services/Servo.js
@@ -56,6 +56,7 @@ class ServoService {
56
57
moveRight() {
58
if (this.position <= servo.pos.right) {
59
+ this.logService.log('fail', `[Services.Servo] Max servo position, not executing to prevent damage!`);
60
return;
61
}
62
@@ -67,6 +68,7 @@ class ServoService {
67
68
69
moveLeft() {
70
if (this.position >= servo.pos.left) {
71
72
73
74
0 commit comments