Skip to content

Commit 824bbb2

Browse files
committed
Show a count of captured joint states instead of individual sample cnt (which is not so meaningful).
1 parent 9bf2033 commit 824bbb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Braccio_Learn_and_Repeat/Braccio_Learn_and_Repeat.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,6 @@ void loop() {
171171
}
172172
delay(100);
173173
if (state != ZERO_POSITION) {
174-
lv_label_set_text_fmt(counter, "Counter: %d" , sample_cnt);
174+
lv_label_set_text_fmt(counter, "Counter: %d" , (sample_cnt / 6));
175175
}
176176
}

0 commit comments

Comments
 (0)