remove console logging

This commit is contained in:
alex 2022-06-21 21:47:29 +01:00
parent f2bd9fae01
commit a0618f7f47

View File

@ -68,7 +68,6 @@ Pattern.prototype.serial = function (...args) {
else {
message = hap.value;
}
console.log("sending: " + message);
const offset = (time - currentTime + latency) * 1000;
window.setTimeout(serialWriter, offset, message);
};