Page 1 of 1

No power when powering from OBD

Posted: Tue May 19, 2020 9:49 am
by adrianj
I have a ONE+ B. When I plug the device into my motorcycle's OBD the device does not power up, But when I plugin in to my car I no problem. I opened the ONE+ case and checked with a voltmeter pin 4 and 16 while plugged into the motorcycle. I have 12.7v.

I am validating if it is powered up only by the observing the blue light. I created a simple sketch that flashes the LED with no imports just a loop.

I am a bit mystified.

Thanks in advance,
Adrian

Re: No power when powering from OBD

Posted: Thu May 21, 2020 10:03 am
by therealsdk2k18
Hi,
Can you post the code here?

Re: No power when powering from OBD

Posted: Thu May 21, 2020 11:11 am
by adrianj
Here is the code. I am sure the code is not the problem, but who know. it work on USB and the car, but not on motorcycle (triumph bonneville)

#define PIN_LED 4
void setup() {

}
void loop() {
digitalWrite(PIN_LED, HIGH);
delay(1000);
digitalWrite(PIN_LED, LOW);
delay(1000);
}

Thanks