Checks whether the software is currently in the process of opening a file.
planetcnc.gcode_is_opening()
#! /usr/bin/env python import planetcnc if planetcnc.gcode_is_opening(): print("The software is currently opening a file.") else: print("The software is not opening a file.")