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
No power when powering from OBD
-
- Posts: 3
- Joined: Wed Apr 08, 2020 11:46 pm
Re: No power when powering from OBD
Hi,
Can you post the code here?
Can you post the code here?
Re: No power when powering from OBD
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
#define PIN_LED 4
void setup() {
}
void loop() {
digitalWrite(PIN_LED, HIGH);
delay(1000);
digitalWrite(PIN_LED, LOW);
delay(1000);
}
Thanks