Reddit mentions of Hayes Modem Cable - MiniDin8 Male / DB25 Male, 6ft

Sentiment score: 0
Reddit mentions: 1

We found 1 Reddit mentions of Hayes Modem Cable - MiniDin8 Male / DB25 Male, 6ft. Here are the top ones.

Hayes Modem Cable - MiniDin8 Male / DB25 Male, 6ft
Buying options
View on Amazon.com
or
    Features:
  • Bright — ideal for a variety of lighting conditions, the projector has: Color Brightness: 2,600 lumens and White Brightness: 2,600 lumens.
  • Full HD 1080p, widescreen 3D performance — for movies, games and more, up to 300". Operating Distance:32 ft (10 m)
  • Deep black levels — up to 60,000:1 dynamic contrast ratio for rich detail in dark scenes.Display Performance:1920 x 1080 native 1080p; HD, 2D, 3D. Fan noise is between 24 dB – 35 dB
  • Project a 110" image from just 10.5' away — ± 60 percent vertical and ± 24 percent horizontal lens shift plus 1.6x zoom allow for flexible positioning and easy setup.
  • Epson Image Enhancement Technology — features Super-resolution with Detail Enhancement to sharpen and refine images for lifelike smoothness and clarity.
Specs:
Height0.8 Inches
Length5.5 Inches
Weight1.5 Pounds
Width3.5 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 1 comment on Hayes Modem Cable - MiniDin8 Male / DB25 Male, 6ft:

u/jellicohatesfish · 1 pointr/VintageApple

Went back to my OP and provided the links to Amazon below for each:

Raspberry Pi (pick a flavor but it needs to have an available USB port. Go for a B+ or Pi 3)
Install tcpser - read the docs and install his update, which has some improvements over the APT version.
sudo apt-get install screen (so you can run tcpser in the background)

Now, the hardware:

This “6 Ft Apple/Mac to HAYES Modem Cable” (Mini-DIN 8M to DB25M) link

A 6-ft DB25M to USB RS232 cable (for the RasPi/tcpser option) link

A DB25F/DB25F gender changer link

Lastly, my command line (insert in /etc/rc.local once you test):

su - pi -c "screen -dm -S tcpser /home/pi/tcpser/tcpser -s 19200 -l 7 -d /dev/ttyUSB0 -tsS -i\&k0"

Adjusting for the actual path to tcpser and desired baud rate. The Plus and SE (therefore, everything else newer than these) can handle 19.2k with no problem.)

Also important: plug in the USB cable and "cat /dev/ttyUSB*" to see which USB interface enumerates - should be 0 - but check and adjust if needed.

What you're doing here is opening a screen session, setting to 19,200 bps, pointing it to listen on the virtual USB serial port, debug-level logging and disable flow control (via AT command). If you want to test without screen (and should), just delete everything prior to /path/to/tcpser.

THEN, if this is all working correctly, you need to launch ZTerm/MacTerminal/etc, set the baud rate to 19,200, ANSI if possible and save. You should be able to type 'AT' and get back a familiar 'OK.' Then it's just a matter of going all 'ATDTbbs.fozztexx.com' to get your feet wet.

I would then recommend looking into installing SLiRP on your Pi, which can provide a PPP stack for your "dial-up" machine (like any old dial-up ISP) but start simple.

Good luck!