You are here

Profile management for Mobile apps

6 posts / 0 new
Last post
emmaanuel
Offline
Last seen: 5 years 2 months ago
Joined: 2017-09-05 12:30
Posts: 6
Profile management for Mobile apps

It would be great for mobile application if the VESC FW could provide, a method to change some usual tuning parameters in live mode (max watt, eRPM, MAX/MIN Current, ...). Those change would be volatile (lost in VESC reboot) or persistent (saved in VESC).

I was thinking in isolating the conf_general_store_app_configuration and the conf_general_store_mc_configuration and make the persistence optional on both COMM_SET_MCCONF and COMM_SET_APPCONF, but I'm not sure if there is others objects need to be change/reset to apply the change in live way.

And I could be great to don't have to push everything (APP + MCCONF) just to change a little part of the parameters, because it's a bit overkill for the Bluetooth communication.

So maybe a good solution can be to add a new set of commands to manage Profile. The profile will be a subset of parameters relevant to be changed "online".

I'm ok to work on that but I wanted to share a bit with you, to find the clever way to implement that.

benjamin
Offline
Last seen: 2 days 13 hours ago
VESC FreeVESC OriginalVESC Platinum
Joined: 2016-12-26 15:20
Posts: 490
I think this is a good idea and I have been thinking of adding something similar as well. Easiest is to not make it persistent (only until reboot) as writing to flash cannot be done while the motor is running. If the changes are only updated in RAM they can be done while the motor is running. One approach would be to have a smaller struct similar to the config parameters with only a few parameters to change, or another approach would be to make it adaptive with some kind of identifier for each parameter. I have added this to the todo list.
emmaanuel
Offline
Last seen: 5 years 2 months ago
Joined: 2017-09-05 12:30
Posts: 6

Yes, it's a good idea to make it adaptive with parameter identifier.

It could be also fine to add an profileId to know the actual profile. This ID will be fully managed by the mobile app.

ThierryGTLTS
Offline
Last seen: 5 years 7 months ago
Joined: 2017-09-06 14:18
Posts: 116

Yes good idea for most applications, board, but also Bicycle, and others.

Some people are also trying to interface VESC with the well known and used LCD-3 from BMS Battery.

You can easily find the protocol used with the RS-232 on Endless Sphere or other bike forums.

Have a Nice Day.

Thierry

hexakopter
Offline
Last seen: 1 year 1 month ago
VESC Original
Joined: 2017-05-24 12:13
Posts: 94

So the idea is to change VESC settings just temporarily? That would be amazing to have "legal" (250W, 25kmh, ...) settings when repowering the VESC. +1 on that feature. 

Cledus
Offline
Last seen: 3 years 7 months ago
Joined: 2017-10-11 12:22
Posts: 5

I think it would be great if it could be persistent. If you could have presets or profiles to switch between like a commercial electronic skateboard.

Great job Benjamin!