2018-07-25 23:38:10 +02:00
# websocket2minitel
Very simple, quick and dirty python script creating a bridge between a websocket based vidotex server and a local Minitel connected through a serial port.
## Requirements
python modules:
- websockets
- pyserial
## Install
2019-10-21 19:42:02 +02:00
pip3 install -r requirements.txt
2018-07-25 23:38:10 +02:00
## Usage
2019-10-21 19:42:02 +02:00
python3 websocket2minitel.py <websocketURL> <serialPort> <serialSpeed>
2018-07-25 23:38:10 +02:00
2018-07-25 23:41:28 +02:00
## Examples
2018-07-25 23:38:10 +02:00
2018-07-25 23:41:28 +02:00
Connect to 3615co.de and display at 1200 bps
2018-07-25 23:41:58 +02:00
2019-10-21 19:42:02 +02:00
`python3 websocket2minitel.py 'wss://3615co.de/ws' /dev/ttyUSB0 1200`
2018-07-25 23:41:28 +02:00
Connect to 3611.re (Annuaire Electronique re-creation)
2018-07-25 23:41:58 +02:00
2019-10-21 19:42:02 +02:00
`python3 websocket2minitel.py 'ws://3611.re/ws' /dev/ttyUSB0 1200`
2018-07-25 23:41:28 +02:00
Connect to 3614 HACKER revival and display at 4800 bps (Minitel 1 bistandard and above)
2018-07-25 23:41:58 +02:00
2019-10-21 19:42:02 +02:00
`python3 websocket2minitel.py 'ws://mntl.joher.com:2018' /dev/ttyUSB0 4800`