SolidGeek / VescUart

An Arduino library for interfacing with the VESC over UART
GNU General Public License v3.0
177 stars 92 forks source link

[FEATURE] Get VESC & Motor temperature #54

Closed n3roGit closed 10 months ago

n3roGit commented 10 months ago

First of all: A very cool project! With your library I just implemented a dive scooter =) https://github.com/n3roGit/DPVControl Unfortunately, I miss the possibility to read the temperature of VESC and especially the engine. I would like to plot this data on my ESP to analyze it.

Could you implement that?

n3roGit commented 10 months ago

Serial.print("tempMosfet: "); Serial.println(UART.data.tempMosfet); Serial.print("tempMotor: "); Serial.println(UART.data.tempMotor);

Sorry. Found it!