No access to android / app - can values be set via serial?

Started by 606lyfe, August 20, 2021, 06:37:25 AM

606lyfe



Hi all

Unfortunately I don't have access to an android device to utilise the app for setting custom values ..etc

Is it possible to do this via laptop and serial connection? If so what commands / syntax need to be used?

I can connect via a terminal window and execute things like 'calibration' and 'output' but was wondering if there was a way to set custom values for curve rpm / position, idle, and walkdown values and save them to eeprom..etc


Cheers




hakcenter

Yes you can talk to the controller through the USB interface.
It's 115200 baud. Use the arduino IDE and connect to the same port you use to program it.
From the Arduino IDE if you load up the common code, you can make any adjustments you want and create your own custom curves, just hardcoded in the code, not eeprom. Same difference.

All the general serial commands are in the SERIAL tab of the common code.

output
Being the most important, it'll just spam the screen with current info.
TS2009 Deḇarim 8:2
"And you shall remember that יהוה your Elohim led you all the way these forty years in the wilderness, to humble you, prove you, to know what is in your heart, whether you guard His commands or not.

606lyfe


Cheers for the reply, makes sense to alter the values in the common code and upload them to the device - nice one!