Difference between revisions of "Smart Terminal Parameter Examples"

From OpenCircuits
Jump to navigation Jump to search
(Created page with "= What/Why = A lot of the behavior of the terminal is controlled by the file parameters.py. My own files have grown to be quite complicated with modifications to match many ...")
 
Line 4: Line 4:
  
 
Because of this complexity I am providing a set of parameter files that you can use as a basis for your own.  These are in a subdirectory example_parms.  To use copy one over into the smart_terminal directory and rename to parameters.py.  We will start with the file parameters_basic.py.
 
Because of this complexity I am providing a set of parameter files that you can use as a basis for your own.  These are in a subdirectory example_parms.  To use copy one over into the smart_terminal directory and rename to parameters.py.  We will start with the file parameters_basic.py.
 +
 +
 +
= Basic =
 +
 +
*For a basic terminal application, nothing fancy but all the basics, and much more than the arduino serial monitor
 +
*This is based on ..../smart_terminal/example_parms/parameters_basic.py.
 +
*Well commented read the file
 +
 +
== What is does ==
 +
 +
*Modify the title of the application.
 +
*Change the communications parameters.
 +
*Specify a program for file editing.
 +
*Change size of the application.
 +
*Default data to be sent.
 +
*Change number of send areas.
 +
*More see the file.

Revision as of 08:53, 4 February 2017

What/Why

A lot of the behavior of the terminal is controlled by the file parameters.py. My own files have grown to be quite complicated with modifications to match many different arduino projects, and to automaticlly adjust to different hardware and software environments.

Because of this complexity I am providing a set of parameter files that you can use as a basis for your own. These are in a subdirectory example_parms. To use copy one over into the smart_terminal directory and rename to parameters.py. We will start with the file parameters_basic.py.


Basic

  • For a basic terminal application, nothing fancy but all the basics, and much more than the arduino serial monitor
  • This is based on ..../smart_terminal/example_parms/parameters_basic.py.
  • Well commented read the file

What is does

  • Modify the title of the application.
  • Change the communications parameters.
  • Specify a program for file editing.
  • Change size of the application.
  • Default data to be sent.
  • Change number of send areas.
  • More see the file.