MR2 Owners Club Forum banner

How to dim Omori boost gauge with factory dimmer

793 Views 5 Replies 3 Participants Last post by  elihunter
2
I've had this Omori boost gauge for years and left the backlight disconnected because it's way too bright. I always wanted it to be like factory and work with the dimmer. I ran across this but it didn't work with the factory dimmer Dimmer circuit details.

After way too much time I figured out the MR2 is using PWM on the ground side of the cluster lighting. Since the Omori gauge doesn't have a separate ground for LEDs this makes it difficult.

What I ended up doing was using an Adafruit Feather Proto M0 with a high side PWM control using a transistor and MOSFET.
I also input the PWM signal from the cluster illumination to a digital input on the Feather to read the position of the dimmer.
This creates a problem for full on and full off though so I also connected the same line to an analog input which would read 0 when the lights were supposed to be fully dimmed.

I'm using this with PrimeMR2's LEDs for the gauge cluster. I tried mapping values for brightness to get them even at different settings for the dimmer and luckily it was linear. If you're using different lights you'd need to calibrate it for your lights.

Parts needed:
Adafruit Feather M0
IRF4905
2N2222
Adafruit MPM3601
3.3kΩ, 4.7kΩ, 2 x 1kΩ resistors

The MPM3601 has a max input voltage of 21V. I'll probably add some input protection on this in the future but hopefully that's enough of a range that it doesn't get damaged from voltage spikes. The MPM3601 does have some protection built in but it's not made for automotive use. Also note the Feather's on board voltage regulator needs to be disabled by connecting the EN pin to ground.

I removed the board in the cluster that was for the OEM gauge, the Feather is just about exactly the same width and will fit in the same location.
There's not a whole lot of space on the feather, I'd also added a variable resistor thinking might need it but found it wasn't needed. And yes the transistor is sticking way up, the datasheet I had had the leads reversed and that was the best I could do without taking off other parts.

And here's the code for the Arduino
byte PWM_PIN = 12;
int led_pin = 10;
int pwm_value;
int ADC_in = 19;
int set_pwm;

void setup() {
pinMode(PWM_PIN, INPUT);
pinMode(ADC_in, INPUT);
Serial.begin(115200);
}


void loop() {
pwm_value = pulseIn(PWM_PIN, HIGH);
ADC_in = analogRead(17);

if (pwm_value < 3950 && ADC_in <650){
analogWrite(led_pin, ((-.05*pwm_value)+225));
}
else {
analogWrite(led_pin, 0);
}
}

My cell phone camera was horrible for this

Any questions or suggestions for improvements let me know!

Attachments

See less See more
  • Like
Reactions: 3
1 - 6 of 6 Posts
I've had this Omori boost gauge for years and left the backlight disconnected because it's way too bright. I always wanted it to be like factory and work with the dimmer. I ran across this but it didn't work with the factory dimmer Dimmer circuit details.

After way too much time I figured out the MR2 is using PWM on the ground side of the cluster lighting. Since the Omori gauge doesn't have a separate ground for LEDs this makes it difficult.

What I ended up doing was using an Adafruit Feather Proto M0 with a high side PWM control using a transistor and MOSFET.
I also input the PWM signal from the cluster illumination to a digital input on the Feather to read the position of the dimmer.
This creates a problem for full on and full off though so I also connected the same line to an analog input which would read 0 when the lights were supposed to be fully dimmed.

I'm using this with PrimeMR2's LEDs for the gauge cluster. I tried mapping values for brightness to get them even at different settings for the dimmer and luckily it was linear. If you're using different lights you'd need to calibrate it for your lights.

Parts needed:
Adafruit Feather M0
IRF4905
2N2222
Adafruit MPM3601
3.3kΩ, 4.7kΩ, 2 x 1kΩ resistors

The MPM3601 has a max input voltage of 21V. I'll probably add some input protection on this in the future but hopefully that's enough of a range that it doesn't get damaged from voltage spikes. The MPM3601 does have some protection built in but it's not made for automotive use. Also note the Feather's on board voltage regulator needs to be disabled by connecting the EN pin to ground.

I removed the board in the cluster that was for the OEM gauge, the Feather is just about exactly the same width and will fit in the same location.
There's not a whole lot of space on the feather, I'd also added a variable resistor thinking might need it but found it wasn't needed. And yes the transistor is sticking way up, the datasheet I had had the leads reversed and that was the best I could do without taking off other parts.

And here's the code for the Arduino



My cell phone camera was horrible for this

Any questions or suggestions for improvements let me know!
I just hooked up the Omori wires to the cluster back light and when I dim it with the OEM knob, the Omori dims too. The only issue is, if I dimmed 50%, the Omori will reset itself which the needle will swing up and down non stop til I turn up the light. I’m pretty happy with the result.
I'm guessing you used the illumination ground to power the gauge? If it works for you that's great.

To be clear I do think this is totally overkill just to dim a light and I spent way more time on this than I planned on but I'm incredibly happy with the results now and figured I'd share.
I'm guessing you used the illumination ground to power the gauge? If it works for you that's great.

To be clear I do think this is totally overkill just to dim a light and I spent way more time on this than I planned on but I'm incredibly happy with the results now and figured I'd share.
Yes, the illumination ground. You are correct. I do not have the brain to work with adafruit.
I've seen someone use a 560ohm resistor to lower the brightness and it still worked with the dimmer. I think it was one of our resident users Charles Wells.
It looks like he's connected the ground to the illumination ground as well. When you dim the lights it increases voltage on that ground wire until eventually it's not enough voltage difference between +12V and ground to run the gauge. You'll also notice the red needle is brighter than the white backlight, this is because of the voltage difference needed for white vs red LEDs.

I know there were by far easier ways to connect this however all methods I found had drawbacks that I didn't want and I like a good problem to solve.
1 - 6 of 6 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top