I have found an old device called Mivo 100; which basically is a keyboard with a rudimentary LCD screen , a modem and a mail client made for elder people in the early 2000s. It runs on a Z80 CPU.
I would like to use the teensy to simulate either a printer (so when I print an email from the device it goes out and get saved on the teensy, so I can retrieve it later from a PC; as if it was a virutal printer basically) or to be used as parallel to serial IO interface with a computer, so I can send and receive data.
The device has no serial port, just the parallel port and a modem port (and no, can't send email anymore sadly); so I tried to find a way to get this done using a Teensy (got a 4.0 teensy for the project); although what I found online is just references to the parallel standard and not much in terms of how you actually do that in code (there are a ton of serial libraries but seems that nobody really care much about parallel ports? That is peculiar).
Even loolking at simple parallel to serial converters end up with not much, except very expensive devices or cables that let you connect a parallel printer to a USB port on your computer; which won't work as these cables just expect a printer on the other side, not a parallel device.
I would like to use the teensy to simulate either a printer (so when I print an email from the device it goes out and get saved on the teensy, so I can retrieve it later from a PC; as if it was a virutal printer basically) or to be used as parallel to serial IO interface with a computer, so I can send and receive data.
The device has no serial port, just the parallel port and a modem port (and no, can't send email anymore sadly); so I tried to find a way to get this done using a Teensy (got a 4.0 teensy for the project); although what I found online is just references to the parallel standard and not much in terms of how you actually do that in code (there are a ton of serial libraries but seems that nobody really care much about parallel ports? That is peculiar).
Even loolking at simple parallel to serial converters end up with not much, except very expensive devices or cables that let you connect a parallel printer to a USB port on your computer; which won't work as these cables just expect a printer on the other side, not a parallel device.