コード例 #1
0
def dostuff2(sc):
    handler.checkAlarms()
    handler.checkOutlets()
    #handler.flipState(2)
    #handler.flipState(3)
    sc.enter(2, 1, dostuff2, (sc, ))
コード例 #2
0
ファイル: runner.py プロジェクト: apo3/EECS393-RasPiHome
def dostuff2(sc):
    handler.checkAlarms()
    handler.checkOutlets()
    #handler.flipState(2)
    #handler.flipState(3)
    sc.enter(2,1, dostuff2, (sc,))
コード例 #3
0
ファイル: runner.py プロジェクト: cla40/EECS393-RasPiHome
def dostuff(sc):
    handler.checkAlarms()
    sc.enter(10,1, dostuff, (sc,))
    Logger.inputInvalid("Testing the Logger!")