Metadata-Version: 2.1
Name: uart-wifi
Version: 0.0.3
Summary: Interface for Anycubic Mono X and similar printers.
Home-page: https://github.com/adamoutler/anycubic-python
Author: Adam Outler
Author-email: adamoutler@hackedyour.info
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/adamoutler/anycubic-python/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Communications
Classifier: Topic :: Home Automation
Classifier: Topic :: Printing
Classifier: Topic :: System :: Networking :: Monitoring :: Hardware Watchdog
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

A script to gather information from the Mono X printer.  This is tested working on the Anycubic Mono X 6k and should work on any Mono X or Mono SE printer. 

    Usage: monox.py -i <ip address> -c <command>
    args:
     -i [--ipaddress=] - The IP address which your Anycubic Mono X can be reached

     -c [--command=] - The command to send.
    
    Commands may be used one-at-a-time. Only one command may be sent and it is expected to be in the format below.

    Command: getstatus - Returns a list of printer statuses.
   
    Command: getfile - returns a list of files in format <internal name>: <file name>.  When referring to the file via command, use the <internal name>.
    
    Command: sysinfo - returns Model, Firmware version, Serial Number, and wifi network.
    
    Command: getwifi - displays the current wifi network name.
    
    Command: gopause - pauses the current print.
    
    Command: goresume - ends the current print.
    
    Command: gostop,end - stops the current print.
    
    Command: delfile,<internal name>,end - deletes a file.
    
    Command: gethistory,end - gets the history and print settings 
    of previous prints.
    
    Command: delhistory,end - deletes printing history.
    
    Command: goprint,<internal name>,end - Starts a print of the 
    requested file
    
    Command: getPreview1,<internal name>,end - returns a list of dimensions used for the print.


