I think I still do not fully understand how the Wi-Fi works. I’ve been reading the website documentation, but I’m still confused.
At this point, I have not soldered the ESP board to anything — I’ve only plugged it into the header pins. From what I’m reading, it sounds like it may not work the way I originally hoped.
When the documentation says I can “telnet over Wi-Fi,” which direction does that communication go? Is it:
from another computer to the Altair over Wi-Fi, or
from the Altair out to another system over Wi-Fi?
My original hope was that I could telnet from the Altair to my Linux server.
Right now, I have a Wyse WY-160 terminal connected to Serial Port 1. I need some way to use KERMIT to reach my Linux server. I thought the Wi-Fi module might provide that capability.
I could also accomplish this with another physical serial port, but I do not yet understand how to add a second hardware serial port, or whether that is even possible with this setup.
To answer your second question, I programmed the Arduino from my Mac using the macOS version of the Arduino IDE, and that part worked fine.
On the Mac, I do not need to use PuTTY. I can connect directly from the command line using these commands:
ls /dev/tty.*
The Altair was identifying as /dev/tty.usbmodem2101
This command allows me to directly connect:
picocom -b 115200 /dev/tty.usbmodem2101
Is there any way to connect a second physical serial port for outbound connections?
On my IMSAI 8080 from The High Nibble, there are two serial ports. I connect my terminal to the first port, then use the Kermit application over the second serial port to connect to my Linux server. From there, I can access the outside world.
I was hoping to set up the same kind of configuration here.