only using ECIO40p, which plugged in to my PC via USB.
Or you could use ECIO28P
Note If this is the fist time you have used USB serial of ECIO and Device manager show error for USB driver then you will need to generate your own Seral USB driver.
This is not the driver for programming, but the driver that's used for USB serial UART communications.
Just make a new folder, e.g. ECIO USB serial driver
Within Flowchart select the USB Serial on the 3D panel.
Right select properties.
Within USB driver, Drive Directory select the down arrow and browse to the newly created folder.
Change the Generate Driver from no to yes.
A new USB serial driver will be generated within the new created folder.
THe new driver is used within Device manager to set up a virtual com port for the ECIO Serial.
Software :
Tera Term which can be downloaded from here.
The great thing about Tera Term is thats it's default mote is compatible with VT100 commands
So for example the above link shows cursor position is
Code: Select all
ESC>[{ROW};{COLUMN}H
If you want text to be green, then on the link you can see
Code: Select all
<ESC>[{attr1};...;{attrn}m
Code: Select all
byte 27
Code: Select all
"[32m"
Just set the text file to text number for the colour and Y, X location of text and e.g:
Code: Select all
TextColour = 32 //Green
X = 2 //2 Across
Y = 5 //5 Down
TextString = "Green Font, 2 across & 5 Down"
Code: Select all
TextColour = 31 //Red
X = 5 //5 Across
Y = 10 //10 Down
TextString = "Red Font, 5 across & 10 Down"
You can also use it to display information e.g diagnostics or general data without the need for addition hardware like LCD's.
The main advantage is you have a lot more columns and rows than an LCD.
Plus a normal LCD does not have coloured fonts.
You can also increase the font size.
Within Tera Term go to Setup, Font.
As a general guide with the smallest font you have have about 230 chars across.