@@ -46,10 +46,10 @@ The project includes a WebSocket rotator simulator that speaks rotctld protocol
4646``` bash
4747npm run rotator-sim
4848# or with a custom port:
49- node scripts/rotator-sim.mjs 4534
49+ node scripts/rotator-sim.mjs 4540
5050```
5151
52- Connect in the app: Setup tab → Network mode → ` ws://localhost:4534 ` (or ` 4533 ` for default).
52+ Connect in the app: Setup tab → Network mode → ` ws://localhost:4540 ` (or ` 4533 ` for default).
5353
5454### rotctld dummy rotator
5555
@@ -60,9 +60,9 @@ Use Hamlib's `rotctld` with the dummy backend for a more realistic test (support
6060rotctld -m 1 -vvvvv -t 1234 -C min_el=5
6161
6262# Terminal 2: bridge WebSocket to TCP (pick one)
63- websocat --binary ws-l:127.0.0.1:4534 tcp:127.0.0.1:1234
63+ websocat --binary ws-l:127.0.0.1:4540 tcp:127.0.0.1:1234
6464# or
65- websockify 4534 localhost:1234
65+ websockify 4540 localhost:1234
6666```
6767
6868Install a bridge if needed:
@@ -72,7 +72,7 @@ cargo install websocat # single Rust binary
7272pip install websockify # Python
7373```
7474
75- Connect in the app: Setup tab → Network mode → ` ws://localhost:4534 ` .
75+ Connect in the app: Setup tab → Network mode → ` ws://localhost:4540 ` .
7676
7777Verify rotctld is responding:
7878``` bash
@@ -86,7 +86,7 @@ SSH port-forward rotctld from a remote host, then bridge locally:
8686
8787``` bash
8888ssh user@rotator-host -L 4533:localhost:4533 -N &
89- websocat --binary ws-l:127.0.0.1:4534 tcp:127.0.0.1:4533
89+ websocat --binary ws-l:127.0.0.1:4540 tcp:127.0.0.1:4533
9090```
9191
9292## Desktop Builds (Tauri)
0 commit comments