Home
JAQForum Ver 24.01
Log In or Join  
Active Topics
Local Time 21:42 04 Jul 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 : ESP8266/Micromite/sending a log

     Page 2 of 2    
Author Message
centrex

Guru

Joined: 13/11/2011
Location: Australia
Posts: 320
Posted: 07:37pm 16 Jan 2015
Copy link to clipboard 
Print this post

Hi Jim
I just loaded the little terminal program into the uMite 170 and expected to be able to talk to the esp8266 via the chat window but no joy.

cliff
Cliff
 
TassyJim

Guru

Joined: 07/08/2011
Location: Australia
Posts: 6268
Posted: 08:04pm 16 Jan 2015
Copy link to clipboard 
Print this post

OK. I found the program you were referring to.
Try this slightly modified version.
I have added the LF to each CR and put in a delay.
It is always good to have a delay in a loop until you are sure it's debugged.


OPEN "com1:115200" AS #1

DO
PRINT INPUT$(1,#1);
k$ = INKEY$
IF k$=CHR$(13) THEN k$=CHR$(13)+CHR$(10)
PRINT #1, k$;
PAUSE 50
LOOP


You might have to change the baud rate.

Jim

VK7JH
MMedit
 
centrex

Guru

Joined: 13/11/2011
Location: Australia
Posts: 320
Posted: 08:12pm 16 Jan 2015
Copy link to clipboard 
Print this post

Fantastic works like charm.
Now to see what else I can do with it then find a use.
Thanks
cliff
Cliff
 
     Page 2 of 2    
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