Stanislaw Halik

Results 212 comments of Stanislaw Halik

Read double-precision IEEE floats in the order of X, Y, Z, yaw, pitch, roll. The size of each datagram is even `6 * sizeof(double)`.

@PaulNNaish, > I would expect to see the server's IPv4 address to the left of the port number It listens on `INADDR_ANY`. If you can't see the data being sent,...

Also, you can verify the address it's listening on via `netstat` on Windows or Linux, or Process Explorer from the sysinternals suite.

```python #!/usr/bin/env python import socket, struct address = ("127.0.0.1", 4242) buf = bytearray(8 * 6) data = [1, 2, 3, 4, 5, 6] with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock: while True:...

The server is the one who receives. The client is the one who sends. It has to be like that in a one-side-only, stateless protocol. Blocking is mostly irrelevant, but...

Did you run the installer version?

Folder properties -> Security -> Advanced -> Modify -> add yourself permissions for folders, subfolders and files for opentrack. Check "replace permissions". Ensure "Everyone" has read/traverse directory permissions for parent...

Also install to the same drive as ED.

I'd like to get to the bottom of this, as plenty users are affected. Add me on skype "sthalik", I'll run some diagnostics.