Skip to content

Commit fe7dfd9

Browse files
authored
FIX added sensor.handleB()
1 parent 0dd52e1 commit fe7dfd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/motion_control/torque_voltage_control/hall_sensor/voltage_control/voltage_control.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ HallSensor sensor = HallSensor(2, 3, 4, 11);
1818
// Interrupt routine intialisation
1919
// channel A and B callbacks
2020
void doA(){sensor.handleA();}
21-
void doB(){();}
21+
void doB(){sensor.handleB();}
2222
void doC(){sensor.handleC();}
2323

2424
void setup() {
@@ -106,4 +106,4 @@ void serialReceiveUserCommand() {
106106
received_chars = "";
107107
}
108108
}
109-
}
109+
}

0 commit comments

Comments
 (0)