21 lines
679 B
Python
21 lines
679 B
Python
###################################################################################################
|
|
# Deployment specific global definitions - executed after startup.py
|
|
###################################################################################################
|
|
|
|
#Uncomment this line to create the simulated devices needed to the tutorial scripts.
|
|
#run("tutorial/devices")
|
|
|
|
|
|
# The code below is necessary to run the Testing List plug-in:
|
|
global print_log, sendFeedback, sys, inspect, os, traceback
|
|
import sys, inspect, os, traceback
|
|
|
|
class Pio:
|
|
def __init__(self):
|
|
self.log('ecco pio')
|
|
|
|
def log(self, text):
|
|
print str(text)
|
|
|
|
|