Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Auto Dimmer

  1. #1
    Constant Bitrate
    Join Date
    Dec 2008
    Posts
    167

    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.

  2. #2
    THE EXPERIMENTER
    Auto Apps:loading...
    carputer1's Avatar
    Join Date
    Sep 2007
    Location
    UK,Surrey
    Posts
    1,931
    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

  3. #3
    Constant Bitrate
    Join Date
    Dec 2008
    Posts
    167
    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.

  4. #4
    Variable Bitrate
    Join Date
    Sep 2007
    Location
    Export, PA
    Posts
    255
    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: [|||||||||/] 99%
    Installation: [|||||||||-] 90% (when is anyone's project ever REALLY done...)

  5. #5
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,774
    Blog Entries
    32
    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
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  6. #6
    Variable Bitrate
    Join Date
    Sep 2007
    Location
    Export, PA
    Posts
    255
    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: [|||||||||/] 99%
    Installation: [|||||||||-] 90% (when is anyone's project ever REALLY done...)

  7. #7
    Variable Bitrate
    Join Date
    Sep 2007
    Location
    Export, PA
    Posts
    255
    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: [|||||||||/] 99%
    Installation: [|||||||||-] 90% (when is anyone's project ever REALLY done...)

  8. #8
    Newbie
    Join Date
    Jan 2008
    Location
    San Francisco
    Posts
    28
    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.

  9. #9
    The Curator
    Auto Apps:loading...
    Blue ZX3's Avatar
    Join Date
    Aug 2004
    Location
    Chicago area,IL
    Posts
    4,849
    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.

    Current Project: DFXVoice [Beta Released]
    Next in line: RRMedia v2.0

    DFX 5.1.1 Skin
    Appstore Link

    My RideRunner Plugins
    RRMedia
    RRExtended
    DFXVoice

  10. #10
    Variable Bitrate
    Join Date
    Sep 2007
    Location
    Export, PA
    Posts
    255
    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: [|||||||||/] 99%
    Installation: [|||||||||-] 90% (when is anyone's project ever REALLY done...)

Page 1 of 2 12 LastLast

Similar Threads

  1. Chuck's Skins lots of pics Update 7-16-07
    By Chuck in forum RR Released Skins
    Replies: 297
    Last Post: 11-10-2011, 08:22 PM
  2. Replies: 222
    Last Post: 09-21-2010, 01:39 PM
  3. dynamix 816 auto vga input
    By bangumandoo in forum LCD/Display
    Replies: 2
    Last Post: 04-19-2007, 08:10 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •