Difference between revisions of "Instrumentino for GreenHouse Monitor"

From OpenCircuits
Jump to navigation Jump to search
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
= First Connection =
+
= What =
 +
This is part of the [[Instrumentino/Smart Terminal Challenge]].  In this part I am going to try to adapt the Instrumentino ( PC/Python ) [[Instrumentino Notes]] to the ( microcontroller ) [[GreenHouse Monitor Program]].
  
 +
= Coming Soon =
  
* go to Controlino program find baudrate #define SERIAL0_BAUD 115200
+
So far I have not been able to figure out where to start, will be in contact with the author.  Stay tuned, see history tab to see how active this page is.
  
* go to SmartTerminal parameters.py and define a new mode Controlino:
 
** self.mode              = "Controlino"  # this is not really needed but this way it is easy to turn on and off the Controlino settings.
 
** find        self.baudrate and add at end of baud rate section       
 
<pre>
 
    if self.mode == "Controlino":
 
        self.baudrate          =      19200
 
</pre>
 
  
this way of setting it will only be in effect for the mode Controlino which for now we will implement as a straight terminal
 
  
Install Controlino on your arduino and fire up both the SmartTerminal and the arduino.
+
[[Category:SmartTerminal]]
Open the port and send "set" responds with "done", the egale has landed.
 
 
 
= Add strings for commands to interface =
 
 
 
* look at the bottom of the C program and extract the following commands:  "Set", "Controlino", "BlinkPin", "Read", "Write", "SetPwmFreq"
 
* find the section that looks something like:
 
<pre>
 
    elif self.mode == "MotorDriver":
 
        self.send_ctrls = [ ...
 
</pre>
 
and add a clause to the if then like:
 
<pre>
 
    elif self.mode == "Controlino":
 
        self.send_ctrls = [ "Set", "Controlino", "BlinkPin", "Read", "Write", "SetPwmFreq" ]
 
</pre>
 
 
 
 
 
Run the Smarterminal again, this time you will find the above commands loaded into the first several send areas as defaults.  Try them out, all but "Controlino" respond with done.  Invalid commands also seem to get no response.  These commands look like they are supposed to have numbers appened as well, it would be nice if we had some values in place just to let you know what the expected form is.
 

Latest revision as of 11:35, 10 February 2017

What[edit]

This is part of the Instrumentino/Smart Terminal Challenge. In this part I am going to try to adapt the Instrumentino ( PC/Python ) Instrumentino Notes to the ( microcontroller ) GreenHouse Monitor Program.

Coming Soon[edit]

So far I have not been able to figure out where to start, will be in contact with the author. Stay tuned, see history tab to see how active this page is.