Skip to content

Commit

Permalink
Add SENSOR: to verbose trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-github committed Dec 17, 2024
1 parent 8858149 commit 68501a1
Show file tree
Hide file tree
Showing 15 changed files with 8 additions and 1 deletion.
Binary file modified dist/CNC/GRBL/index.html.gz
Binary file not shown.
Binary file modified dist/CNC/GRBLHal/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Marlin-embedded/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Marlin/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Repetier/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Smoothieware/index.html.gz
Binary file not shown.
Binary file modified dist/SandTable/GRBL/index.html.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/App/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
import { h } from "preact"
import { webUIbuild } from "../../targets"
export const webUIversion = "3.0.0-a84"
export const webUIversion = "3.0.0-a85"
export const Esp3dVersion = () => (
<span>
{webUIversion}.{webUIbuild}
Expand Down
1 change: 1 addition & 0 deletions src/targets/CNC/GRBL/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("[") ||
line.startsWith("ok") ||
line.startsWith("<") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
return true
Expand Down
1 change: 1 addition & 0 deletions src/targets/CNC/grblHAL/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("[") ||
line.startsWith("ok") ||
line.startsWith("<") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
return true
Expand Down
1 change: 1 addition & 0 deletions src/targets/Printer3D/Marlin-embedded/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("M105") ||
line.startsWith("M114") ||
line.startsWith("FR:") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
return true
Expand Down
1 change: 1 addition & 0 deletions src/targets/Printer3D/Marlin/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("M106") ||
line.startsWith("M114") ||
line.startsWith("FR:") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
}
Expand Down
1 change: 1 addition & 0 deletions src/targets/Printer3D/Repetier/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("wait") ||
line.startsWith("busy") ||
line.startsWith("M105") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
return true
Expand Down
1 change: 1 addition & 0 deletions src/targets/Printer3D/Smoothieware/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("echo:") ||
line.startsWith("ok") ||
line.startsWith("M105") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
return true
Expand Down
1 change: 1 addition & 0 deletions src/targets/SandTable/GRBL/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const isVerboseOnly = (type, data) => {
line.startsWith("[") ||
line.startsWith("ok") ||
line.startsWith("<") ||
line.startsWith("SENSOR:") ||
(line.startsWith("{") && line.endsWith("}"))
)
return true
Expand Down

0 comments on commit 68501a1

Please sign in to comment.