By basti256 - Wed Nov 27, 2019 1:10 pm
Great job !
Does it's also make the scooter goes faster ?
An Electric Scooter Community on a Mission to Stamp out Transportation Mediocrity.
Unfortunaley til now it doesn't...
Have you connected the blue Cable to the 3.3v connector?fabi wrote:I tried it today with a ES200G using a Powerbank. Unfortunately nothing turned on.
Do you have a description of the wire-colors?
I had no multimeter at hand so I've guessed black one is GND
Yes, the blue cable was connected to the 3.3V pin.basti256 wrote: ↑Thu Nov 28, 2019 10:17 amHave you connected the blue Cable to the 3.3v connector?fabi wrote:I tried it today with a ES200G using a Powerbank. Unfortunately nothing turned on.
Do you have a description of the wire-colors?
I had no multimeter at hand so I've guessed black one is GND
Have you connected the Green line to TX?
Have you SUCCESSFULLY flashed your arduino? The Arduinos built in LED schould blink all the time and if you've got one the TX Led should light up every 500ms.
My first try was empowering the arduino with my notebook so there shouldnt be an difference on our setups...
You can retry it by pressing the reset button once on the arduino, just to make sure he boots properly.....
I'll hope i can help you.
Thanks (at all of you) for your congratulations.warrenwot wrote:Awesome work, basti! Thanks for sharing
Must be a pain in the *ss that someone else is making money off your work, especially without giving credit :/
Please don't mind me asking tho: If you intend to release further updates for free, what's keeping you from going open-source (i.e. GitHub)?
I'd love to contribute to the project, as well as use the script on different Arduinos.
It's totally understandable if you're not willing to share the source due to this rather unpleasant past experience.
Please consider it tho (being the first one to openly publish it should get you the recognition)
Whatever the decision may be, keep up the great work!
void setup() {
// initialize serial:
Serial.begin(9600);
Serial.write(0xA6);
Serial.write(0x12);
Serial.write(0x02);
Serial.write(0x10);
Serial.write(0x14);
Serial.write(0xCF);
delay(500);
Serial.write(0xA6);
Serial.write(0x12);
Serial.write(0x02);
Serial.write(0x11);
Serial.write(0x14);
Serial.write(0x0B);
}
void loop() {
delay(500);
Serial.write(0xA6);
Serial.write(0x12);
Serial.write(0x02);
Serial.write(0x15);
Serial.write(0x14);
Serial.write(0x30);
}
Below is the link with some information about […]