Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development > Front Ends > Road Runner


Reply
 
Share Thread Tools Display Modes
Old 05-03-2009, 10:08 AM   #1
Constant Bitrate
 
Join Date: Dec 2008
Posts: 162
efun is an unknown quantity at this point
Auto Dimmer

How to auto adjust the brightness of the screen? Is there a hardware sensor to do this? if so, a plugin can be developed to make DIMMER auto control based on the value received from the sensor.
efun is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 05-03-2009, 11:49 AM   #2
THE EXPERIMENTER
 
carputer1's Avatar
 
Join Date: Sep 2007
Location: UK,Surrey
Posts: 1,358
carputer1 will become famous soon enough
mitch has made a dimmer type app within RR its self, have a look at your documentation in the rr folder, it may not be exactly what your after but as an alternative
carputer1 is offline   Reply With Quote
Old 05-03-2009, 09:10 PM   #3
Constant Bitrate
 
Join Date: Dec 2008
Posts: 162
efun is an unknown quantity at this point
Quote: Originally Posted by carputer1 View Post
mitch has made a dimmer type app within RR its self, have a look at your documentation in the rr folder, it may not be exactly what your after but as an alternative

It is a good alternative. but I think a ambient light sensor will give more automatic control.
efun is offline   Reply With Quote
Old 05-04-2009, 07:05 PM   #4
Constant Bitrate
 
Join Date: Sep 2007
Location: Export, PA
Posts: 167
sxtnitehawk is an unknown quantity at this point
use a Fusion Brain with a photosensor and the RRFusion plugin

using the reading from the photosensor, you can automate the dimmer value.
__________________
Planning: [|||||||||-] 90%
Purchased: [||||||||--] 80%
Installation: [----------] 0% (awaiting arrival of parts)
sxtnitehawk is offline   Reply With Quote
Old 05-05-2009, 09:28 AM   #5
Terminal flasher
 
Sonicxtacy02's Avatar
 
Join Date: Sep 2004
Location: Woodbridge, VA
Posts: 6,312
Blog Entries: 1
Sonicxtacy02 has a spectacular aura aboutSonicxtacy02 has a spectacular aura about
Quote: Originally Posted by sxtnitehawk View Post
use a Fusion Brain with a photosensor and the RRFusion plugin

using the reading from the photosensor, you can automate the dimmer value.

This is what i do. Course i wrote RRFusion so i'm a bit bias lol
__________________
03 Acura RSX Coupe
Developer of: RRFusion, MovieTimes.NET, (new)RRMail, RRShoutcast, & RRVehicle Maintenance
Currently working on: RRVehicle Maintenance
Sonicxtacy02 is offline   Reply With Quote
Old 05-07-2009, 08:48 AM   #6
Constant Bitrate
 
Join Date: Sep 2007
Location: Export, PA
Posts: 167
sxtnitehawk is an unknown quantity at this point
efun, BlueZX3's plugin RRExtended now has a command in it that I've needed to create a true autodimmer. as soon as I have the code down, I'll post it here for you... You'll have to play with some of the numbers, but itll get you started. You'll need a Fusion Brain with a photosensor, but trust me, YOU WANT IT...the Fusion Brain will open up totally new doors you never knew existed
__________________
Planning: [|||||||||-] 90%
Purchased: [||||||||--] 80%
Installation: [----------] 0% (awaiting arrival of parts)
sxtnitehawk is offline   Reply With Quote
Old 05-07-2009, 09:15 PM   #7
Constant Bitrate
 
Join Date: Sep 2007
Location: Export, PA
Posts: 167
sxtnitehawk is an unknown quantity at this point
Here's a 17 step autodimmer using the FB photosensor with RRFusion. if you have a definite port for the photosensor, you can change $IN1PORT$ to whatever port number the photosensor is on... so it reads for example... ANALOG0RAW

Code:
"AUTODIM","BYVAR;AUTODIMMER;<<SETVARBYCODE;PSENSOR1;ANALOG$IN1PORT$RAW||DRANGE1" "DRANGE1","BYRANGE;$PSENSOR1$;964;1024;DIMMER;0<<DRANGE2" "DRANGE2","BYRANGE;$PSENSOR1$;904;963;DIMMER;10<<DRANGE3" "DRANGE3","BYRANGE;$PSENSOR1$;844;903;DIMMER;15<<DRANGE4" "DRANGE4","BYRANGE;$PSENSOR1$;784;843;DIMMER;20<<DRANGE5" "DRANGE5","BYRANGE;$PSENSOR1$;724;783;DIMMER;25<<DRANGE6" "DRANGE6","BYRANGE;$PSENSOR1$;664;723;DIMMER;30<<DRANGE7" "DRANGE7","BYRANGE;$PSENSOR1$;604;663;DIMMER;35<<DRANGE8" "DRANGE8","BYRANGE;$PSENSOR1$;544;603;DIMMER;40<<DRANGE9" "DRANGE9","BYRANGE;$PSENSOR1$;484;543;DIMMER;45<<DRANGE10" "DRANGE10","BYRANGE;$PSENSOR1$;424;483;DIMMER;50<<DRANGE11" "DRANGE11","BYRANGE;$PSENSOR1$;364;423;DIMMER;55<<DRANGE12" "DRANGE12","BYRANGE;$PSENSOR1$;304;363;DIMMER;60<<DRANGE13" "DRANGE13","BYRANGE;$PSENSOR1$;244;303;DIMMER;65<<DRANGE14" "DRANGE14","BYRANGE;$PSENSOR1$;184;243;DIMMER;70<<DRANGE15" "DRANGE15","BYRANGE;$PSENSOR1$;104;183;DIMMER;75<<DRANGE16" "DRANGE16","BYRANGE;$PSENSOR1$;44;103;DIMMER;80<<DRANGE17" "DRANGE17","BYRANGE;$PSENSOR1$;0;43;DIMMER;85<<"

__________________
Planning: [|||||||||-] 90%
Purchased: [||||||||--] 80%
Installation: [----------] 0% (awaiting arrival of parts)

Last edited by sxtnitehawk; 05-08-2009 at 12:26 AM.
sxtnitehawk is offline   Reply With Quote
Old 05-08-2009, 12:09 AM   #8
Newbie
 
Join Date: Jan 2008
Location: San Francisco
Posts: 22
mpr90 is an unknown quantity at this point
I may be mistaken (apologies if so), but aren't all these solutions adjusting the brightness of the video output from the PC? I have been trying to dream up a way to auto-adjust the LCD screen backlight brightness so that I can dim it down at night. Otherwise, at night, even the black levels are too bright for my night driving eyes. Has anyone figured out how to interface the PC to control the LCD backlight?

What I ended up doing in the interim was adding a skin function to turn off the VGA output from the PC, which (after a few seconds) causes the monitor to auto power off. However, the touch screen is still active (powered from USB) so I can just touch the screen to wake up the PC.

Last edited by mpr90; 05-08-2009 at 12:10 AM. Reason: spelling mistake :(
mpr90 is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 05-08-2009, 12:20 AM   #9
The Curator
 
Blue ZX3's Avatar
 
Join Date: Aug 2004
Location: Chicago area,IL
Posts: 3,577
Blue ZX3 will become famous soon enoughBlue ZX3 will become famous soon enough
That is a HW hack, not saying it can't be done...just that these SW approches are just easier, but def not better then what your asking bout.
__________________
RideRunner...The #1 FE, PERIOD.

RR Media >>HERE <<

RRExtended Plugin
Updated RR Config (Current Ver 1.0.2.0)
Old RR Versions
Complete CFX PSD Set
RRSkinEditor v.76c
DFX Btn Editor
Blue ZX3 is online now   Reply With Quote
Old 05-08-2009, 12:17 PM   #10
Constant Bitrate
 
Join Date: Sep 2007
Location: Export, PA
Posts: 167
sxtnitehawk is an unknown quantity at this point
i agree, controlling the actual backlight would be better, but definitely a lot more complicated because not all screens work the same. especially when you get into LED backlit screens...now to create a better contrast ratio, they can force the led backlight to dim in different areas to make dark colors darker and light colors lighter...dont know if that's made it's way to the small VGA market yet, but i know it has on larger TV's...

For now, the internal DIMMER system is the best you're gonna get unless you custom hack your hardware, which could get mighty expensive with trial and error
__________________
Planning: [|||||||||-] 90%
Purchased: [||||||||--] 80%
Installation: [----------] 0% (awaiting arrival of parts)
sxtnitehawk is offline   Reply With Quote
Old 05-11-2009, 01:05 AM   #11
Constant Bitrate
 
Join Date: Dec 2008
Posts: 162
efun is an unknown quantity at this point
Quote: Originally Posted by sxtnitehawk View Post
Here's a 17 step autodimmer using the FB photosensor with RRFusion. if you have a definite port for the photosensor, you can change $IN1PORT$ to whatever port number the photosensor is on... so it reads for example... ANALOG0RAW


sxtnitehawk, thanks for your code. I will try this solution.
efun is offline   Reply With Quote
Old 05-11-2009, 01:09 AM   #12
Constant Bitrate
 
Join Date: Dec 2008
Posts: 162
efun is an unknown quantity at this point
Hope touchscreen manufactory can produce a product which allow software to control the backlight. I think the techique should be ready for this. For example, I used the thinkpad. I can use hotkey "Fn+Home or End" to adjust the brightness.
efun is offline   Reply With Quote
Old 05-23-2009, 12:59 AM   #13
Constant Bitrate
 
Join Date: Dec 2008
Posts: 162
efun is an unknown quantity at this point
I found a perfect solution. My car has a light sensor in the mirror, so I can set the dimmer based on the sensor value.
efun is offline   Reply With Quote
Old 05-23-2009, 06:45 PM   #14
Constant Bitrate
 
Join Date: Sep 2007
Location: Export, PA
Posts: 167
sxtnitehawk is an unknown quantity at this point
as long as that sensor puts out a 0-5v signal you can, yeah
__________________
Planning: [|||||||||-] 90%
Purchased: [||||||||--] 80%
Installation: [----------] 0% (awaiting arrival of parts)
sxtnitehawk is offline   Reply With Quote
Old 05-29-2009, 11:56 AM   #15
kuo
Variable Bitrate
 
kuo's Avatar
 
Join Date: Jun 2003
Location: Greensboro, NC
Posts: 385
kuo is on a distinguished road
i have my xenarc's brightness control wire hooked to my car's dimmer knob to automatically dim my backlight when the headlights come on. the wiring diagram is somewhere on this forum. the only issue with this approach is my car's dimmer knob goes from 0 volts at maximum brightness to 12 volts at the minimum brightness while the xenarc goes from 0 volts at max to 3.5 volts at min. when turn the knob too low, the xenarc backlight shuts off and i have to power cycle it to get the backlight back on. i'm sure there's a way to drop the output voltage of the dimmer knob but with resistors or something of the sort but i'm not quite sure how to do it.
__________________
my car: 2003 g35 coupe, 2.5ghz c2d cpu, gigabyte micro atx mb, dsatx
wife's car: 2004 honda accord coupe 2.4ghz p4 cpu, asus micro atx mb, opus 150
company car: 2006 chevy avalanche 2.0ghz p4 laptop, cnx p1900
kuo is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Beginning of an Automatic Climate Control System, all juiced up on Fusion h3rk Fusion Brain 219 10-13-2009 04:07 PM
Chuck's Skins lots of pics Update 7-16-07 Chuck RR Released Skins 289 03-25-2009 07:06 AM
dynamix 816 auto vga input bangumandoo LCD/Display 2 04-19-2007 08:10 AM



All times are GMT -5. The time now is 02:37 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics