-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom server #216
Comments
I've also looked into this a little bit so will contribute what I know: The protobuf definitions are all here (compiled pb.go and uncompiled .proto) https://github.com/teslamotors/fleet-telemetry/tree/main/protos I dont know for sure, but I believe the vehicle is expecting messages to be ack'ed because I have seen vehicles retransmit messages to my fleet-telmetery instances. Out of interest what language are you writing it in? I started a NodeJS version but gave up very quickly. |
Thanks for your input! I'm writing them in Node.js (see at my profile and you'll get why ;)). I'm using @fastify/websocket which makes the process pretty easy. |
@ShogunPanda are you able to make it work? One of our cars is connecting using Websocket and sending some messages, but we are stuck trying to convert the message to a JSON using protobufJS(https://www.npmjs.com/package/protobufjs) We did some tests creating a custom proto file, sending a message using Websocket and decoding the message and it worked, but we are failing miserable using the proto files provided on this project. |
Unfortunately not. I ended up installing the Go fleet-telemetry and getting it via the JSON stdout log |
Hello!
I'm trying to write a custom telemetry server to process data from Tesla.
Note that I'm NOT using
fleet-telemetry
at all.I have few questions:
StreamAckMessage
or we just receiveStreamMessage
and that's it?Thanks!
The text was updated successfully, but these errors were encountered: