Page 12 of 21

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Mon Nov 18, 2019 5:19 pm
by Black beard
I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Mon Nov 18, 2019 8:57 pm
by Marley29
Black beard wrote:
Mon Nov 18, 2019 5:19 pm
I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:
Rickjames246500@gmail.com

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Tue Nov 19, 2019 7:44 pm
by Marley29
Black beard wrote:I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:
Black beard wrote:I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:

Seems like all talk with no logical evidence i gave you email addy with no response i guess your tactic was just to get answers must of really beat your self up like the rest of us ...its ok bud grab yourself a cold one or two hell maybe this guy drinks a case a day who knows ....

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Wed Nov 20, 2019 8:31 am
by nobody
electricool wrote:
Mon Nov 18, 2019 4:29 pm
it is a shame that this thread becomes a thread of liars, which in reality have no functional solution, but by complex stupidity, make others believe that they succeed.
we totally lose the first goal of a forum of exchange, these people have nothing to do here
Some of us have working solution. My solution is hacky, incomplete, with bugs but it gets scooter moving.
blurmeanie223 wrote:
Sat Nov 16, 2019 4:30 pm
ated on that one. I don't really want to hook up the logic analyzer and start from scratch
Image
It is really about sending two 9byte messages over UART. Hook up your analyzer, it is the simplest thing you can do.
This hardware solution is really nice. Can you please specify the power supply used for Arduino? Can it handle full battery voltage (42V)?

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Thu Nov 21, 2019 8:37 am
by Black beard
I sent u an email how did you find it? Do you think I'm lying now?

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Thu Nov 21, 2019 12:52 pm
by Adrien Didot
Black beard wrote:
Thu Nov 21, 2019 8:37 am
I sent u an email how did you find it? Do you think I'm lying now?
I wouldn't mind if you could send it to me too please ;)
adrien.didot@gmail.com

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Thu Nov 21, 2019 1:34 pm
by Black beard
Marley29 wrote:
Tue Nov 19, 2019 7:44 pm
Black beard wrote:I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:
Black beard wrote:I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:

Seems like all talk with no logical evidence i gave you email addy with no response i guess your tactic was just to get answers must of really beat your self up like the rest of us ...its ok bud grab yourself a cold one or two hell maybe this guy drinks a case a day who knows ....
Now now no need for the conjecture did you get my email I suspect it may have silenced you being as you had alit to say now nothing

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Fri Nov 22, 2019 11:54 pm
by Marley29
Black beard wrote:
Thu Nov 21, 2019 1:34 pm
Marley29 wrote:
Tue Nov 19, 2019 7:44 pm
Black beard wrote:I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:
Black beard wrote:I can prove it any time gimme a email addy and I'll send y a video, I think the real shame is when the haters start belittling and casting doubt upon other people's work c'mon now its ok I'm sure your good at lots of things :lol: :lol:

Seems like all talk with no logical evidence i gave you email addy with no response i guess your tactic was just to get answers must of really beat your self up like the rest of us ...its ok bud grab yourself a cold one or two hell maybe this guy drinks a case a day who knows ....
Now now no need for the conjecture did you get my email I suspect it may have silenced you being as you had alit to say now nothing
All hail black beard

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Sun Nov 24, 2019 9:06 pm
by electricool
Salut tous le monde.
j'ai essayé ça sur une bird zero
#include<SoftwareSerial.h>
SoftwareSerial myserial(6,7);//RX,TX
void setup()
{

Serial.begin(9600);
myserial.begin(9600);
}
void loop()
{
if(myserial.available()){
Serial.write(myserial.read());
}
if(Serial.available())
myserial.write(Serial.read());

delay(500);

}
en utilisant que les fils RX TX GND

le problème est que dans le moniteur source j'obtiens ça

[img]https://i.imgur.com/ng8yYoM.jpg[/img]

avez-vous une idée a me soumettre merci

Re: Lime SJ2.5: Dash and Motor controller communication description (not a full solution)

Posted: Mon Nov 25, 2019 8:48 pm
by Azertypuce
electricool wrote:
Sun Nov 24, 2019 9:06 pm
Salut tous le monde.
j'ai essayé ça sur une bird zero
#include<SoftwareSerial.h>
SoftwareSerial myserial(6,7);//RX,TX
void setup()
{

Serial.begin(9600);
myserial.begin(9600);
}
void loop()
{
if(myserial.available()){
Serial.write(myserial.read());
}
if(Serial.available())
myserial.write(Serial.read());

delay(500);

}
en utilisant que les fils RX TX GND

le problème est que dans le moniteur source j'obtiens ça

Image

avez-vous une idée a me soumettre merci
Emvoi moi un message privé