Difference between revisions of "Writing You Own Extensions to SmartTerminal"

From OpenCircuits
Jump to navigation Jump to search
(Created page with " = Introduction = This page just started, come back later for something that makes more sense. This is part of the documentation of the Python Smart Terminal, the starting p...")
 
Line 4: Line 4:
 
This page just started, come back later for something that makes more sense.
 
This page just started, come back later for something that makes more sense.
  
This is part of the documentation of the Python Smart Terminal, the starting page is: [[Python Smart Terminal]].  While you can, of course modify any of the code for the Smart Terminal the expected way to do it is either through parameters ( see ) or through code.  Taking the code approach the plan is that you created a class like the other xx_processing components that are in the main code repository (  [[https://github.com/russ-hensel/python_smart_terminal Code at GitHub]] ).
+
This is part of the documentation of the Python Smart Terminal, the starting page is: [[Python Smart Terminal]].  While you can, of course modify any of the code for the Smart Terminal the expected way to do it is either through parameters ( see ) or through code.  Taking the code approach the plan is that you created a class like the other excomponents that are in the main code repository (  [[https://github.com/russ-hensel/python_smart_terminal Code at GitHub]] ).
  
  
 +
= Examples =
 +
All the extensions are included in my github repository, you can study that code.  I have additional external documentation for:
  
 +
[[GreenHouse Monitor Program]]
  
 +
= Alter the GUI =
 +
 +
= Add Processing in the Helper Thread ==
  
 
[[category:Python]]  [[Category:Arduino/RaspberryPi]] [[Category:SmartTerminal]]
 
[[category:Python]]  [[Category:Arduino/RaspberryPi]] [[Category:SmartTerminal]]

Revision as of 16:56, 22 September 2018

Introduction

This page just started, come back later for something that makes more sense.

This is part of the documentation of the Python Smart Terminal, the starting page is: Python Smart Terminal. While you can, of course modify any of the code for the Smart Terminal the expected way to do it is either through parameters ( see ) or through code. Taking the code approach the plan is that you created a class like the other excomponents that are in the main code repository ( [Code at GitHub] ).


Examples

All the extensions are included in my github repository, you can study that code. I have additional external documentation for:

GreenHouse Monitor Program

Alter the GUI

Add Processing in the Helper Thread =