Home
JAQForum Ver 24.01
Log In or Join  
Active Topics
Local Time 21:14 14 Nov 2025 Privacy Policy
Jump to

Notice. New forum software under development. It's going to miss a few functions and look a bit ugly for a while, but I'm working on it full time now as the old forum was too unstable. Couple days, all good. If you notice any issues, please contact me.

Forum Index : Microcontroller and PC projects : Searching for a Terminal PGM for MM2 LCD Backpack

Author Message
Canada_Cold
Regular Member

Joined: 11/01/2020
Location: Canada
Posts: 48
Posted: 11:27am 10 Sep 2020
Copy link to clipboard 
Print this post

Hi,

Is there an option to see all of the results from a search?  The Search displays 50 only.

What I'm looking for is if someone has written a "terminal program" to run on a MM2 LCD Backpack?  I would like to use a MM2 LCD Backpack to display ASCII messages something like Tera Term does without having to use a PC.  BTW, I don't need to send from the Terminal, simply RX on a COMM port only.

Thanks, Don
 
lizby
Guru

Joined: 17/05/2016
Location: United States
Posts: 3472
Posted: 11:32am 10 Sep 2020
Copy link to clipboard 
Print this post

  Canada_Cold said  Is there an option to see all of the results from a search?  The Search displays 50 only.


You can always use a browser search: "searchterms site:www.thebackshed.com"
PicoMite, Armmite F4, SensorKits, MMBasic Hardware, Games, etc. on fruitoftheshed
 
Canada_Cold
Regular Member

Joined: 11/01/2020
Location: Canada
Posts: 48
Posted: 02:57pm 10 Sep 2020
Copy link to clipboard 
Print this post

Great, that helps with the search.  Thanks
 
datawiz

Newbie

Joined: 10/08/2020
Location: United States
Posts: 26
Posted: 04:13pm 10 Sep 2020
Copy link to clipboard 
Print this post

  Canada_Cold said  Hi,

Is there an option to see all of the results from a search?  The Search displays 50 only.

What I'm looking for is if someone has written a "terminal program" to run on a MM2 LCD Backpack?  I would like to use a MM2 LCD Backpack to display ASCII messages something like Tera Term does without having to use a PC.  BTW, I don't need to send from the Terminal, simply RX on a COMM port only.

Thanks, Don


Don,
I wrote a wifi library for the CMM2 (Thread Here)

Code Here

In the zip file for the code are a few example programs, including "terminal.bas", which is a very simple terminal program that you may be able to modify for your purposes. The ESP8266 is connected via serial port on the CMM2, so it should work just like any serial connection. You will probably need to comment out/remove any specific wifi library calls, and define the COM port and baud rate, but the core of it should work.

If you need any help modifying it, feel free to reach out.

Thanks,
Rich/dw
 
Canada_Cold
Regular Member

Joined: 11/01/2020
Location: Canada
Posts: 48
Posted: 11:16pm 11 Sep 2020
Copy link to clipboard 
Print this post

Hi Rich,  thanks for posting this, I have it now.  Had a quick look at it, very complex, will take me some time to understand it.

Thanks, Don
 
datawiz

Newbie

Joined: 10/08/2020
Location: United States
Posts: 26
Posted: 03:09pm 12 Sep 2020
Copy link to clipboard 
Print this post

  Canada_Cold said  Hi Rich,  thanks for posting this, I have it now.  Had a quick look at it, very complex, will take me some time to understand it.

Thanks, Don


Don-- I've boiled it down to the 'basics' for you. :)

Regards,
Rich/dw

dim COM_PORT$ = "COM2" ' replace with COM1 or COM2
dim COM_SPEED$ = "115200" ' replace with baud rate
dim CHAR_OUT$
dim CHARS_IN$

cls
open COM_PORT$+":"+COM_SPEED$+","+"256"+",get_serial_input" as 5

print "Terminal running, press ESC to exit."
do
 CHAR_OUT$ = INKEY$
 if CHAR_OUT$ <> "" then
   if CHAR_OUT$ = chr$(27) then exit
   print #5, CHAR_OUT$;
 end if
loop
close #5
end

sub get_serial_input
 CHARS_IN$ = input$(LOC(#5),#5)
 print CHARS_IN$;
end sub
 
Print this page


To reply to this topic, you need to log in.

The Back Shed's forum code is written, and hosted, in Australia.
© JAQ Software 2025