-
Notifications
You must be signed in to change notification settings - Fork 29
Description
Hi,
Just heaving trying to have some fun with an ev3 and I realized that something is never gonna happen until it's changed...
pyscrlink/pyscrlink/scratch_link.py
Line 70 in 7511909
| jsonres = self.handle_request(jsonreq['method'], jsonreq['params']) |
I cannot connect to EV3 as jsonres is always None due to handle_request always returning None.
pyscrlink/pyscrlink/scratch_link.py
Line 80 in 7511909
| def handle_request(self, method, params): |
Log:
2023-01-20 11:04:04,499 start recv_request 2023-01-20 11:04:04,499 request: {"jsonrpc":"2.0","method":"discover","params":{"majorDeviceClass":8,"minorDeviceClass":1},"id":0} 2023-01-20 11:04:04,499 default handle_request: discover, {'majorDeviceClass': 8, 'minorDeviceClass': 1} 2023-01-20 11:04:04,499 Failure in session for web socket path: /scratch/bt
What should jsonres contain?
Thank you!