1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Utility for querying the current state of all endstops
#
# Copyright (C) 2018-2019 Kevin O'Connor <kevin@koconnor.net>
#
# This file may be distributed under the terms of the GNU GPLv3 license.
class QueryEndstops:
def __init__(self, config):
self.printer = config.get_printer()
self.endstops = []
self.last_state = []
# Register webhook if server is available
webhooks = self.printer.lookup_object("webhooks")
webhooks.register_endpoint("query_endstops/status", self._handle_web_request)
gcode = self.printer.lookup_object("gcode")
gcode.register_command(
"QUERY_ENDSTOPS", self.cmd_QUERY_ENDSTOPS, desc=self.cmd_QUERY_ENDSTOPS_help
)
gcode.register_command("M119", self.cmd_QUERY_ENDSTOPS)
def register_endstop(self, mcu_endstop, name):
self.endstops.append((mcu_endstop, name))
def get_status(self, eventtime):
return {"last_query": {name: value for name, value in self.last_state}}
def _handle_web_request(self, web_request):
gc_mutex = self.printer.lookup_object("gcode").get_mutex()
toolhead = self.printer.lookup_object("toolhead")
with gc_mutex:
print_time = toolhead.get_last_move_time()
self.last_state = [
(name, mcu_endstop.query_endstop(print_time))
for mcu_endstop, name in self.endstops
]
web_request.send(
{name: ["open", "TRIGGERED"][not not t] for name, t in self.last_state}
)
cmd_QUERY_ENDSTOPS_help = "Report on the status of each endstop"
def cmd_QUERY_ENDSTOPS(self, gcmd):
# Query the endstops
print_time = self.printer.lookup_object("toolhead").get_last_move_time()
self.last_state = [
(name, mcu_endstop.query_endstop(print_time))
for mcu_endstop, name in self.endstops
]
# Report results
msg = " ".join(
[
"%s:%s" % (name, ["open", "TRIGGERED"][not not t])
for name, t in self.last_state
]
)
gcmd.respond_raw(msg)
def load_config(config):
return QueryEndstops(config)
|