Example #1
0
 internal Device(
     IPythonExecutor executor,
     string scriptFilePath)
 {
     _executor       = executor;
     _scriptFilePath = scriptFilePath;
 }
 internal TemparatureSensor(IPythonExecutor executor, string scriptFilePath) : base(executor, scriptFilePath)
 {
 }
Example #3
0
 internal Joystick(IPythonExecutor executor, string scriptFilePath) : base(executor, scriptFilePath)
 {
 }
Example #4
0
 public SenseHatFactory(IPythonExecutor pythonExecutor, IDevicePythonFileFactory devicePythonFileFactory)
 {
     _pythonExecutor          = pythonExecutor;
     _devicePythonFileFactory = devicePythonFileFactory;
 }
Example #5
0
 internal LedMatrix(IPythonExecutor executor, string scriptFilePath)
     : base(executor, scriptFilePath)
 {
 }