aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cutter.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/cutter.go b/cutter.go
index 406648c..72db3a2 100644
--- a/cutter.go
+++ b/cutter.go
@@ -253,21 +253,6 @@ func (c Cutter) Initialize() {
c.Flush()
}
-// Status ???
-func (c Cutter) Status() (string, error) {
- c.WriteString("\x1b\x05")
- c.Flush()
- ans, err := c.readResponse()
- switch ans {
- case "0":
- return "Ready", nil
- case "1":
- return "Moving", nil
- default:
- return "Unknown", err
- }
-}
-
func (c Cutter) Ready() bool {
c.WriteString("\x1b\x05")
c.Flush()