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 f511730 commit 394b57eCopy full SHA for 394b57e
src/extensions/scratch3_ev3/index.js
@@ -631,7 +631,7 @@ class EV3 {
631
array[offset + 2],
632
array[offset + 3]
633
]);
634
- log.info(`sensor at port ${i} ${this._sensorPorts[i]} value: ${value}`);
+ // log.info(`sensor at port ${i} ${this._sensorPorts[i]} value: ${value}`);
635
if (EV_DEVICE_LABELS[this._sensorPorts[i]] === 'button') {
636
this._sensors.buttons[i] = value;
637
} else {
@@ -651,7 +651,7 @@ class EV3 {
651
if (value > 0x7fffffff) {
652
value = value - 0x100000000;
653
}
654
- log.info(`motor at port ${i} ${this._motorPorts[i]} value: ${value}`);
+ // log.info(`motor at port ${i} ${this._motorPorts[i]} value: ${value}`);
655
this._motorPositions[i] = value;
656
offset += 4;
657
0 commit comments