Skip to content

Commit 68501a1

Browse files
committed
Add SENSOR: to verbose trigger
1 parent 8858149 commit 68501a1

File tree

15 files changed

+8
-1
lines changed

15 files changed

+8
-1
lines changed

dist/CNC/GRBL/index.html.gz

9 Bytes
Binary file not shown.

dist/CNC/GRBLHal/index.html.gz

9 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.

dist/SandTable/GRBL/index.html.gz

10 Bytes
Binary file not shown.

src/components/App/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
import { h } from "preact"
1919
import { webUIbuild } from "../../targets"
20-
export const webUIversion = "3.0.0-a84"
20+
export const webUIversion = "3.0.0-a85"
2121
export const Esp3dVersion = () => (
2222
<span>
2323
{webUIversion}.{webUIbuild}

src/targets/CNC/GRBL/stream.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const isVerboseOnly = (type, data) => {
2626
line.startsWith("[") ||
2727
line.startsWith("ok") ||
2828
line.startsWith("<") ||
29+
line.startsWith("SENSOR:") ||
2930
(line.startsWith("{") && line.endsWith("}"))
3031
)
3132
return true

src/targets/CNC/grblHAL/stream.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const isVerboseOnly = (type, data) => {
2626
line.startsWith("[") ||
2727
line.startsWith("ok") ||
2828
line.startsWith("<") ||
29+
line.startsWith("SENSOR:") ||
2930
(line.startsWith("{") && line.endsWith("}"))
3031
)
3132
return true

0 commit comments

Comments
 (0)