No power when powering from OBD

Discussion about software developed by Freematics, including Freematics Builder and Freematics Emulator GUI
Post Reply
adrianj
Posts: 3
Joined: Mon May 18, 2020 2:46 am

No power when powering from OBD

Post 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
therealsdk2k18
Posts: 3
Joined: Wed Apr 08, 2020 11:46 pm

Re: No power when powering from OBD

Post by therealsdk2k18 »

Hi,
Can you post the code here?
adrianj
Posts: 3
Joined: Mon May 18, 2020 2:46 am

Re: No power when powering from OBD

Post 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
Post Reply