GithubHelp home page GithubHelp logo

r0b0shack / vesc-uart-arduino Goto Github PK

View Code? Open in Web Editor NEW
33.0 33.0 12.0 23 KB

In this project, I want to read out telemetry data of the "VESC" speed controller by Benjamin Vedder via UART and display it on an OLED display, connected to an Arduino Nano as a basis for an extended PPM remote control for electric longboards.

Arduino 17.23% C++ 49.40% C 21.36% Objective-C 12.02%

vesc-uart-arduino's People

Contributors

r0b0shack avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

vesc-uart-arduino's Issues

Parsing fail

I tried your code.
But I could not request power (v_in) from the driver.
To fix it it you need to correct file vesc_uart.cpp

It was (strng number 159):
values.rpm = buffer_get_int32(message, &ind);
values.v_in = buffer_get_float16(message, 10.0, &ind);
It became:
values.rpm = buffer_get_int32(message, &ind);
ind--;
ind--;
values.v_in = buffer_get_float16(message, 10.0, &ind);

Counter byte in packet is wrong.

thank

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.