Page 1 of 1

Read from CAN with android

Posted: 2026-02-18 18:13
by PetBel
Are ther any information about read canbus data in android ?

Re: Read from CAN with android

Posted: 2026-03-25 10:01
by narlix
Use SocketCAN on Android (if kernel supports CAN):

1. Enable CAN interface:
ip link set can0 up type can bitrate 500000
2. Read data:
candump can0

If tools aren’t available, install/build can-utils or access CAN via native (NDK) SocketCAN APIs.