hi, i connected the system to my motorbike: a triumph street triple 2022.
i have an external O2 sensor that i log with arduino and print the readings on excel; i would like to plot also the rpm on excel, so i decoded the can message that contain the rpm value (518 00 00 08 D0 D1 00 00 00 00 00 00).
the rpm value is (D1*256+D0)/4 and the id is 518.
I tried to use the rpm counter example of the library changing the code from Can.write(0x0c) to Can.write(0x0518) but it does not work and the code can not exit from the while cycle.
any idea of how can i fix the problem?
thank you very much.
hi, i connected the system to my motorbike: a triumph street triple 2022.
i have an external O2 sensor that i log with arduino and print the readings on excel; i would like to plot also the rpm on excel, so i decoded the can message that contain the rpm value (518 00 00 08 D0 D1 00 00 00 00 00 00).
the rpm value is (D1*256+D0)/4 and the id is 518.
I tried to use the rpm counter example of the library changing the code from Can.write(0x0c) to Can.write(0x0518) but it does not work and the code can not exit from the while cycle.
any idea of how can i fix the problem?
thank you very much.