Editing Python Smart Terminal

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
= Why this Terminal =
 
 
This terminal has a variety of uses, most are focused on interaction with
 
micro controller projects where ASCII data is exchanged, typically with messages
 
terminated with a newline or carriage return ( typical for most Arduino projects).
 
 
It is also intended for those with a minimal understanding of Python ( required skill
 
ranges from the vary basic to familiarity with multi-threaded applications ).
 
 
Its repository includes several examples of projects where the interaction is
 
either with a PC ( windows, mac, or Linux ) or a raspberry pi ( Linux ).
 
 
Applications may be set up so control of the Arduino is manual, or entirely
 
automated.
 
 
If this is the case there are many ways to use it:
 
 
* Base Case
 
Use as a replacement for an Arduino serial monitor.  One nice feature is multiple places for user input, each of which is remembed until changed.
 
 
* Base Case Plus
 
Typically the micro controller is used with a small number of command strings, typically just a few letters, and in complicated cases more complicated strings.  The terminal can be set up with these preloaded and with a button that "documents" their use.  This can be very nice for debugging or manually controlled projects.
 
 
* Automatic modes
 
The automatic mode implements the "Base Case Plus" but there is additional code running in another thread that makes the entire operation automatic and is intended for projects that just "run".  In my case all these projects are used with a raspberry pi plus Arduino.  This typically gives the project:
 
** high speed response in the Arduino code ( micro second )
 
** internet access wifi and cat5
 
** bluetooth support
 
** Python and other high level program support
 
** Graphical interface support via remote terminal to a raspberry pi.
 
** HTTP server support
 
** Email access
 
** Remote terminal support -- either Desktop GUI or ssh terminal
 
 
I have example code for these applications included in the repository that I have completed as projects of my own.
 
 
 
= Goal =
 
= Goal =
This program is up and running.  Making improvements from time to time for my projects.  Code at GitHub, see [[https://github.com/russ-hensel/python_smart_terminal Code at GitHub]]  See the GUI here at [[Smart Terminal GUI]]
+
Provide an open source, programmable rs232 smart terminal in particular for use with microcontrollers like the arduino.  Document it well enough so people can relatively easily extend and adapt the program.  Make it easy to download and use even for those without a desire to dive into the code.  Will assume some knowledge of Python, and a Python Enivronment to run it in.  Currently Python 2.7
 
 
SmartTerminal an open source, programmable rs232 smart terminal in particular for use with micro controllers like the arduino.  My motivation for writing it was first to aid in managing and debugging micro controller projects, and then actually becoming part of hybrid raspberry pi / arduino projects.  The program can run in many modes ( which you can create if you wish ).  Included in the repository is the code for many modes that I have created, each normally paired with an arduino application ( code may be posted, contact me if interested ) to produce a final application.  For more information on these projects see the category Arduino/RaspberryPi.
 
 
 
This program is designed to be:
 
*Easily configurable through a configuration file parameters.py
 
*Easily extended with additional modules, several of which are in the code at GitHub and can be activated with a simple change to the parameter file.
 
 
 
I think it is documented well enough so people can relatively easily extend and adapt the program.  It easy to download and use even for those without a desire to dive into the code.  I assume some knowledge of Python, and a Python Environment to run it in.  Was Python 2.7 now upgraded to Python 3.6 and a bunch of other enhancements.  See features below.
 
 
 
See the graphical user interface here ( with screen shot ): [[Smart Terminal GUI]]
 
 
 
This application is also part of a family of applications see the category below: Python Projects.
 
 
 
This is an article started by Russ Hensel, see "http://www.opencircuits.com/index.php?title=Russ_hensel#About My Articles" About My Articles for a bit of info.
 
 
 
'''Who should use this program and How:'''
 
  
{| class="wikitable"
+
= What/Why =
|-valign="top"
 
|Who
 
|What
 
|How
 
<!-------------------------------->
 
|-valign="top"
 
|Person with little programming experience, no interest in Python.  Looking for download and install.
 
|Probably should use another program.
 
|Not well suited to use this, I do not plan to fix this.
 
<!-------------------------------->
 
<!-------------------------------->
 
|-valign="top"
 
|Programming microcontrollers in text based language, willing to install or has Python installed.
 
|Run the basic program.  Customize in fairly minor ways.
 
|Edit the parameter file to configure the terminal.  Could use processing extensions written by others.
 
<!-------------------------------->
 
|-valign="top"
 
|Modest Python experience
 
|Modify all over the place, monitor equipment, save data to database ......
 
|Program should be well documented with an API, sample extensions.  Code changes localized ( now ) to one class plus the parameter file.
 
<!--------------------------------
 
|-valign="top"
 
|ddd
 
|eee
 
|fff
 
<!--------------------------------
 
|-valign="top"
 
|
 
|
 
|
 
<!--------------------------------
 
<!--------------------------------
 
<!--------------------------------
 
<!-------------------------------->
 
|}
 
 
 
= More on What and Why =
 
  
 
Almost all my Arduino and other microcontroller projects use serial communications for a least debugging.  And in many cases I pair the Arduino with a Raspberry Pi for a very flexible system.  A good serial monitor, or terminal program is useful in this sort of project.  Because I wanted features not in most terminals and the ability to program it myself, I started one from scratch using Python.
 
Almost all my Arduino and other microcontroller projects use serial communications for a least debugging.  And in many cases I pair the Arduino with a Raspberry Pi for a very flexible system.  A good serial monitor, or terminal program is useful in this sort of project.  Because I wanted features not in most terminals and the ability to program it myself, I started one from scratch using Python.
  
The program is also designed to be a stand alone data logging, environmental monitoring program.  In this case it will kick off and run without an operator.  Data can be access over the web.  I will largely leave a discussion of these features to another page, but probably about half the code is devoted to these features.   
+
The program is also designed to be a stand alone data logging, environmental monitoring program.  In this case it will kick off and run without an operator.  Data will be access over the web.  I will largely leave a discussion of these features to another page, but probably about half the code is devoted to these features.   
  
Currently the terminal waits for a carriage return ( or line fead ) until it displays ( or make available for processing ) the received string.  This make sense for my application, it help the processing.  This may not work best for you, let me know.  
+
Currently the terminal waits for a cr ( or lf i will check ) until it displays ( or make available for processing ) the received string.  This make sense for my application, it help the processing.  This may not work best for you, let me know.  
  
 
So what are the features?
 
So what are the features?
  
 
* Free open source
 
* Free open source
* Runs across OSs Linux ( inc '''Raspberry Pi''' ), Mac or Windows  
+
* Runs across OSs Linux ( inc Raspberry Pi ), Mac or Windows  
 
* Python
 
* Python
* "RS232" all standard baud rates etc.
 
 
* Easily adjusted serial communications parameters
 
* Easily adjusted serial communications parameters
 
* Multiple, preloaded with data entry fields.
 
* Multiple, preloaded with data entry fields.
Line 110: Line 20:
 
* Copy all or part of receive area.
 
* Copy all or part of receive area.
 
* Programmable
 
* Programmable
* I have extensions to work with specific arduino programs.  These:  Run a clock, Monitor a Green House, Monitor a root cellar, Monitor a Well.
+
* Database Interface
* Database Interface ( now MYSQL can connect across the network )
 
* Email interface.
 
 
* Easily Modified or Replaceable GUI
 
* Easily Modified or Replaceable GUI
 
* Parameter file for wide range of modifications of program behavior.
 
* Parameter file for wide range of modifications of program behavior.
Line 118: Line 26:
 
* Uses standard Python logging class.
 
* Uses standard Python logging class.
 
* Includes some advanced data logging features in addition to database data logging.
 
* Includes some advanced data logging features in addition to database data logging.
* For more on the features see [[SmartTerminal Features]]
 
 
Limits:
 
 
* Polls the comm port at 10 to 100 hz.  So full lines ( ending with carriage return <cr> ) cannot come in too fast.  This is theory I have not pushed the terminal.
 
* One instance of the program per com port at a time, but easy to run multiple instances.
 
  
What would you like to see in the program or documentation? Email me.
 
  
 
A much earlier version of this terminal was described in my instructable [[http://www.instructables.com/id/Python-Terminal-for-Cheap-Pi-Arduino-Connection/ Python Terminal for Cheap Pi Arduino Connection]]  It may have some information that is useful, but the program has grown a lot since then.
 
A much earlier version of this terminal was described in my instructable [[http://www.instructables.com/id/Python-Terminal-for-Cheap-Pi-Arduino-Connection/ Python Terminal for Cheap Pi Arduino Connection]]  It may have some information that is useful, but the program has grown a lot since then.
Line 134: Line 35:
 
== My Environment/Your Environment ==
 
== My Environment/Your Environment ==
  
The program has a better chance of running if your environment is not too much different from mine.  The most important is that it is Python 3.6 because of fstrings.
+
The program has a better chance of running if your environment is not too much different from mine.  The most important is that it is Python 2.7 or compatible.
 
    
 
    
 
Before you begin to install you should know a bit about the environment that I have used to build, test and run the terminal. If your environment differs too much you may have trouble getting it to run.
 
Before you begin to install you should know a bit about the environment that I have used to build, test and run the terminal. If your environment differs too much you may have trouble getting it to run.
  
I run Python mostly using the install that comes with Anaconda Spyder and often use the IDE it installs.  This is not necessary, it is just an nice install that downloads a lot of stuff that technical folks find useful.  I have use conda and pip to add to this install and do not know offhand all that is in it.   You can look at the include statements to get some idea of what you might need to add.  Or you can just keep running it and add the packages it complains about.
+
I run Python mostly using the install that comes with Anaconda Spyder and often use the IDE it installs.  This is not necessary, it is just an nice install that downloads a lot of stuff that technical folks find useful.  I have use conda and pip to add to this install and do not know offhand all that is in it. It is Python 2.7.  You can look at the include statements to get some idea of what you might need to add.  Or you can just keep running it and add the packages it complains about.
There is an informal requirements.txt in the repository that may be helpful.
 
  
 
== Download ==
 
== Download ==
  
Code at GitHub, see [[https://github.com/russ-hensel/python_smart_terminal Code at GitHub]] ( it is Python and you can run directly from the source ) Email me if you have issues ( use this link [[User:Russ_hensel]] ).
+
I have not quite decided where to host the source code ( it is Python and you can run directly from the source ) so email me ( use this link [[User:Russ_hensel]] ) to get access.
 
You will get a zip file, unzip it and you should get:
 
You will get a zip file, unzip it and you should get:
  
Line 149: Line 49:
 
     .... whatever --|
 
     .... whatever --|
 
                     |
 
                     |
                     |-- smart_terminal --| -> all code required to run the application ( not sure if smart_terminal or python_smart_terminal or nothing is top level name, just put it in some well named place )
+
                     |-- SmartTerminal
                                          |    some logs from my running of the code may or may not be present, these will be deleted as they creep in, when you run the program you will
+
 
                                          |    get your own log files ... all typically named xxx.py_log
+
 
                                          | -- images -> image files, mostly screen shots, icons... or what ever, not important for the code.
 
                                          | -- sounds -> wav files used for the deer me extension, my attempt to scare deer.
 
                                          | -- wiki_etc -> various files documenting program, including at least some of the material from this wiki
 
  
 
Put them in your system making "....whatever" anything convenient for your Python ( that is move the files to where you keep your Python source ).   
 
Put them in your system making "....whatever" anything convenient for your Python ( that is move the files to where you keep your Python source ).   
Line 182: Line 79:
 
== Command Line Arguments ==
 
== Command Line Arguments ==
  
If you run with the command line parameters=paramaters_b then after the regular parameters file runs, then the system looks for parameters_b.py and uses that to override values that you might want to tweak ( or completely redo.  There are two examples in the directory follow the pattern in them and you should be fine ).
+
If you run with the command line parameters=paramaters_b then after the regular parameters file run, the system looks for parameters_b.py and uses that to override values that you might want to tweak ( or completely redo.  There are two examples in the directory follow the pattern in them and you should be fine ).
  
 
This can be especially useful if you want to run two copies connected to different ports and possibly running in different modes.  In this case it is also nice to change ( its in parameters ) the '''icon''' and '''color''' for each instance of the program.  You can write or use the little bat file to start them ( although this leaves a dos console hanging around )  Command line arguments can also be placed in shortcuts.  In either case they may take some tweaking to run in/from your file locations.
 
This can be especially useful if you want to run two copies connected to different ports and possibly running in different modes.  In this case it is also nice to change ( its in parameters ) the '''icon''' and '''color''' for each instance of the program.  You can write or use the little bat file to start them ( although this leaves a dos console hanging around )  Command line arguments can also be placed in shortcuts.  In either case they may take some tweaking to run in/from your file locations.
Line 218: Line 115:
 
= Design =
 
= Design =
  
Description of the design, and a bit to help you figure out what the files do ( for .py files also see the top of file ).
+
[[Python Smart Terminal Technical]]
 
 
see: [[Python Smart Terminal Technical]]
 
 
 
= Customizing/Extending =
 
 
 
Simple customization may be done simply by changing the parameter file, see: [[Smart Terminal Parameter Examples]]  If you want to add code that can be done by messing with any of the source code ( not recommended ) or by programming an extension, see:  [[Python Smart Terminal Technical]] and [[Writing You Own Extensions to SmartTerminal]]
 
  
 
= Additional Info =
 
= Additional Info =
  
 
*Click on the category smart terminal below ( and perhaps the others as well )
 
*Click on the category smart terminal below ( and perhaps the others as well )
*For a graphing ( plotting ) application that is a companion to this see [[Python Smart Terminal Graph]]
+
*[[Smart Terminal as Smart Data Logger]]  obsolete
*[[Writing You Own Extensions to SmartTerminal]]
 
*[[Debugging the Smart Terminal]]
 
*[[Smart Terminal as Smart Data Logger]]  obsolete, gone, may come back.
 
 
*[[Smart Terminal GUI]]
 
*[[Smart Terminal GUI]]
*[[GreenHouse Monitor Program]]
 
*[[Smart Terminal Parameter Examples]]
 
*[[Python Desk Top Applications]]
 
 
*[ https://github.com/russ-hensel/python_smart_terminal python_smart_terminal at git hub]
 
*[ https://github.com/russ-hensel/python_smart_terminal python_smart_terminal at git hub]
 
*[http://www.instructables.com/id/Python-Terminal-for-Cheap-Pi-Arduino-Connection/ Python-Terminal-for-Cheap-Pi-Arduino-Connection/] Info on much earlier version may or may not be useful.
 
*[http://www.instructables.com/id/Python-Terminal-for-Cheap-Pi-Arduino-Connection/ Python-Terminal-for-Cheap-Pi-Arduino-Connection/] Info on much earlier version may or may not be useful.
  
[[Category:Python Projects]] [[category:Python]]  [[Category:Arduino/RaspberryPi]] [[Category:SmartTerminal]] [[Category:Serial Communications]]
+
[[category:Russ]]  [[Category:Arduino/RaspberryPi]] [[Category:SmartTerminal]]

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)