Flutter : OBD2 connectivity using wifi

136 Views Asked by At

I want to communicate with OBD2 from my Flutter App using wifi. But I don't know how to establish a connection using wifi and how to get information from OBD2.

1

There are 1 best solutions below

2
DrMickeyLauer On

To communicate with a (generic serial) OBD2 adapter, you have to use a socket abstraction and implement a communication queue that allows to send commands, then receive and deliver the results asynchronously to the caller.

Default WiFi OBD2 adapters have a TCP server running at 192.168.0.10:35000 where you can communicate.