Hello everyone!
I am new to the Arduino game and recently acquired a Brother EP-44 typewriter. It's able to function as an RS232 terminal and I bought an Arduino Uno with hopes of running TinyBasic on it and connecting it to the typewriter using a RX and TX to RS232 converter. I plugged everything in, uploaded TinyBasic edited to use 1200 Baud (the typewriter can run at 110, 300, 600 and 1200 baud, as well as some other settings like 8bit, 7bit and T/W), and the typewriter printed out some random symbols and then nothing happened.
I'm guessing there's something wrong with the code, I have essentially no idea what I'm doing. I would be very grateful if someone could give me some direction
Someone else did something similar on YouTube but with Lisp:
Heres a copy of the typewriter's manual, the serial information is in Chapter 5:
The code is generic BlueLlama/Tiny Basic but with this:
void setup()
{
#ifdef ARDUINO
Serial.begin(1200); // opens serial port
while( !Serial ); // for Leonardo
Serial.println( sentinel );
#ifdef ENABLE_FILEIO
initSD();
TinyBasicArduino.pdf (128 KB)