コード例 #1
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def flash(*args):
    if len(args) == 0:
        MBM(["-f"])
    else:
        currentDir = os.getcwd()
        fs = File.separator
        MBM(["-f", "-w " + currentDir + fs + args[0]])
コード例 #2
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def extract(filename):
    MBM.setDestinationDir(os.getcwd())
    MBM(["-e " + filename])
    time.sleep(1)  # wait until extraction is underway
    while MBM.getExtractionResult() == 1:
        time.sleep(0.1)
    rc = True if MBM.getExtractionResult() == 0 else False
    return rc
コード例 #3
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def getDataLines():
    time.sleep(0.001)
    arrayList = MBM.getDataLines()
    mylist = []
    for i in range(arrayList.size()):
        mylist.append(arrayList.get(i))
    return mylist
コード例 #4
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def isTerminalDisposed():
    return MBM.isDisposed()
コード例 #5
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def runMain():
    MBM(["-x"])
コード例 #6
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def run(filename):
    currentDir = os.getcwd()
    fs = File.separator
    MBM(["-r " + currentDir + fs + filename])
コード例 #7
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def copy(filename):
    currentDir = os.getcwd()
    fs = File.separator
    MBM(["-c " + currentDir + fs + filename])
コード例 #8
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def enableDataCapture(enable):
    while isTerminalDisposed():
        time.sleep(1)
    MBM.enableDataCapture(enable)
コード例 #9
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def openTerminal():
    MBM(["-t"])
コード例 #10
0
ファイル: mbm.py プロジェクト: Tiger-Jython/Aplu-Libraries
def showFileList():
    MBM(["-b"])