コード例 #1
0
# Import libraries
from time import sleep
from labs.module02 import TempSensorEmulator

# Initialize the object of TempSensorEmulator.
sysPerfAdaptor = TempSensorEmulator.module02()

sysPerfAdaptor.daemon = True
print("Starting system performance app daemon thread...")

# Call the start method as to call the run method in TemSensorEmulator thread class.
sysPerfAdaptor.start()
while (True):
    sleep(10)
コード例 #2
0
'''
Created on 2018年9月15日

@author: andyyuan
'''

from time import sleep
from labs.module02 import TempSensorEmulator
#from labs.module02 import SmtpClientConnector

tempSensEmulator = TempSensorEmulator.TempSensorEmulator()

tempSensEmulator.daemon = True
print('- - - - - - - - - - - - - - - - - - - - - - - - ')
print("Starting system performance app daemon thread...")
tempSensEmulator.enableEmulator = True
tempSensEmulator.start()

while (True):
    sleep(10)
    pass
コード例 #3
0
'''
Created on 2018

@author: HSong
'''

#This is a module that will pass parameters to the Emulator and start running the app.

from labs.module02 import TempSensorEmulator

startRunning = TempSensorEmulator.TempSensorEmulator(5, 70, 35, True)

startRunning.run()
コード例 #4
0
'''
Created on 2018年9月15日

@author: xingli
'''

from time           import sleep
from labs.module02 import TempSensorEmulator

sysPerfEmulator = TempSensorEmulator.TempSensorEmulator()
sysPerfEmulator.daemon = True




print("Starting system performance app daemon thread...")
sysPerfEmulator.setEnableEmulatorFlag(True)#set enableEmulator to true
sysPerfEmulator.start()#start the run function in TempSensorEmulator

#keep running
while (True):
    sleep(5)
    pass
コード例 #5
0
'''
Created on Jan 21, 2019
@author: suraj
'''
from labs.module02 import TempSensorEmulator
from time import sleep

TempSimulatorApp = TempSensorEmulator.TempSensorEmulator()  # Creating an instance of TempSensorEmulator class
TempSimulatorApp.daemon = True                              # Specifying instance to use thread as daemon process
print ("Temperature readings")
TempSimulatorApp.enableEmulator()                           # Changing the enableEmulator from False to True
wait = 5                                                    # Wait time of 5 seconds for CPU to give it a break
TempSimulatorApp.start()                                    # The thread to collect system performance will be started here
while (True):                                               # infinite loop
    sleep(wait)                                             # method for giving CPU a break of 5 seconds called
    pass                                                    # executes the current loop and pass execution to next iteration
    
'''
Created on Jan 24, 2019

@author: GANESHRAM KANAKASABAI
'''

from time import sleep  #importing sleep function to set delay
'''
#importing SystemPerformanceAdaptor Class to measure system performance value
'''
from labs.module02 import TempSensorEmulator
'''
# Creating a new thread to measure system performance 
'''
sensor_data = TempSensorEmulator.TempSensorEmulator("Temperature Data")
sensor_data.start()
#Starting the activity of thread

while True:
    sleep(1)
    #Pausing the execution of program for 1 second
    pass  #Pass keyword here is used as a placeholder
コード例 #7
0
# coding=UTF-8
'''
Created on 2018年9月15日

@author: rocky_yan
'''

from time import sleep
from labs.module02 import TempSensorEmulator
temp = TempSensorEmulator.TempSensorEmulator()
temp.daemon = True

print("Starting system performance app daemon thread...")
temp.enableEmulator = True
#SystemPerformanceAdaptor.SystemPerformanceAdaptor().daemon = True
#SystemPerformanceAdaptor.SystemPerformanceAdaptor().start()
temp.start()

while (True):
    sleep(15)
    pass
コード例 #8
0
from labs.module02 import TempSensorEmulator
from test.test_enum import threading

test = threading.Thread(
    target=TempSensorEmulator.TempSensorEmulator(0, 0, 30, 0).run())
test.start()
test.join()
コード例 #9
0
'''
Created on Jan 24, 2019

@author: Navin Raman
'''

from time import sleep
from labs.module02 import TempSensorEmulator

sensor_dat = TempSensorEmulator.TempSensorEmulator("NEW TEMPERATURE DATA")
sensor_dat.daemon = True
sensor_dat.start()
'''
New thread to measure data processing values and start the thread to run
creating a new temperature measurement object 
'''

while True:
    sleep(10)
    pass
'''
#setting the running time 10 seconds but since it is in while loop,
run as a infinite loop
'''