LAT Hologramm-Software 2.0
Loading...
Searching...
No Matches
Namespaces | Functions | Variables
stream.py File Reference

Go to the source code of this file.

Namespaces

namespace  stream
 

Functions

def stream.send_status_query ()
 
def stream.periodic_timer ()
 

Variables

int stream.RX_BUFFER_SIZE = 128
 
int stream.BAUD_RATE = 115200
 
bool stream.ENABLE_STATUS_REPORTS = True
 
float stream.REPORT_INTERVAL = 1.0
 
bool stream.is_run = True
 
 stream.parser = argparse.ArgumentParser(description='Stream g-code file to grbl. (pySerial and argparse libraries required)')
 
 stream.type
 
 stream.help
 
 stream.action
 
 stream.default
 
 stream.args = parser.parse_args()
 
 stream.s = serial.Serial(args.device_file,BAUD_RATE)
 
 stream.f = args.gcode_file
 
bool stream.verbose = True
 
bool stream.settings_mode = False
 
bool stream.check_mode = False
 
 stream.grbl_out = s.readline().strip()
 
 stream.start_time = time.time();
 
 stream.timerThread = threading.Thread(target=periodic_timer)
 
 stream.daemon
 
int stream.l_count = 0
 
int stream.error_count = 0
 
 stream.l_block = line.strip()
 
int stream.g_count = 0
 
list stream.c_line = []
 
 stream.out_temp = s.readline().strip()
 
 stream.end_time = time.time();