Quantcast G50V - Anyone find a use for the OLED display? - Page 58

+ Reply to Thread
Page 58 of 73 FirstFirst ... 84854555657585960616268 ... LastLast
Results 571 to 580 of 726
  1. #571
    Notebook Evangelist
    Join Date
    Nov 2007
    Location
    Bulgaria
    Posts
    495
    Rep Power
    15

    Default Re: G50V - Anyone find a use for the OLED display?

    Quote Originally Posted by Hahutzy View Post
    Anyone know why volume add-on doesn't work for Vista and 7?

    I used the volume add-on in XP and it worked fine, it reported the volume and I have a display for it.

    But I installed Win7 now, and it no longer works.

    Is it a driver issue? I tried the same version number as my XP audio driver, and it still didn't work for Win7.
    Sorry for delay answer, I saw your previous post...what Volume Add-on are you talking about ? Link ?

    Quote Originally Posted by Justus Jackson View Post
    I know how the formula to convert the temps, I just don't know how to use it on the temperature that LCDHype outputs.

    The formula is "Temp. Celsius" x 1.8 + 32 = "Temp. Fahrenheit".

    I really have no idea how to do it in LCDHype... could you maybe post up some code snippets that I could cut and paste into the script?
    Assuming %C is the temperature in Celsius, the LCDHype code would be:
    PHP Code:
    %(Inc, %Mul(%C1.8), 32
    New laptop ASUS G73JW-A1 from GenTechPC
    Old laptop ASUS G1S-B1 Core 2 Duo T7700 (2.4GHz), 2GB, 200GB 7200rpm, NVIDIA GeForce 8600m GT 256MB DDR3

    Reviews: [Customizing the Asus G1S OLED] [Megascript 2.0 for G-series OLED] [G50/G70/G71 OLED driver for LCDHype]


  2. #572
    Notebook Geek
    Join Date
    Jan 2009
    Posts
    84
    Rep Power
    11

    Default Re: G50V - Anyone find a use for the OLED display?

    as predator say:

    %(Inc, %Mul(%UsePlugin(LCDWeather\lcdweather.dll,%ID(),Current,Temp), 1.8), 32)

    That's the line you have to put! copy & paste!
    Dont forget to change the ID to your cityID!!!

    I tired to use that plugin in vista, and also didnt work for me!
    it looks like the plugin wasnt write to work in a OS over XP!
    Last edited by SICOPOLY; 20th August 2009 at 10:56 AM.

  3. #573
    Notebook Evangelist
    Join Date
    Nov 2008
    Posts
    487
    Rep Power
    13

    Default Re: G50V - Anyone find a use for the OLED display?

    Quote Originally Posted by Bryanu View Post
    So I tried to find this answer but no luck, or I am blind...

    Anyway I got G50vt running windows 7 rtm.

    Using my old code from Vista x64 this worked fine, under 7 my CPU usage does not work.

    What do I need to change?


    Code:
    #Header
       %UsePlugin('GLED\GLED.dll',LED, 0, 0)
       %Common.SetPriority(2400)
       %Graph.SetTextArea(0,0,256,32)
       %Param.RenderMode(Simple)
       %DefVar(CPUusage = 0)
       %DefVar(battPct = 0)
       %DefVar(ScreenSaverOn, Global=0)
       %DefVar(hourPM,Local=0)
       %DefVar(hourAM,Local=0)
       %DefVar(BattPLG='battery\batteryplugin.dll')
       %DefFunc(BattPercent=%UsePlugin(%BattPLG(),LifePercent))
       %DefFunc(BattFlag=%UsePlugin(%BattPLG(),nBatteryFlag))
       %DefFunc(ACFlag=%UsePlugin(%BattPLG(),nACFlag))
       %DefFunc(IdleTime=%UsePlugin(%BattPLG(),nSystemIdleTime))  
    #EndHeader
    
    #GfxMode   
      %Assign(CPUusage, %System.CPU(Usage))
      %Assign(battPct, %BattPercent())
      
     %If(%IdleTime() < 600000)
     Then
     {  
      %Assign(ScreenSaverOn, 0)
      
      /Battery/
      %If((%battPct() > 94) AND (%ACFlag() = 1))
      Then
      {
          %Graph.Rect(0,0,100,16,0,0)
      }
      Else
      {
         %Graph.Font('Arial',8,1,)
         %Format.Bar(Vertical,8,12,0,100,%battPct(),1,1,25,1)
         %Graph.Rect(27,0,30,1,1,1)
         %Common.CreateNewLine(, -232,0)
         %Format.AlignRight()
         %battPct() '%'
      }
      
      %If( %battPct() < 15 )
      Then
      {
        %Param.InvertMode(1)
      }
      Else
      {
        %Param.InvertMode(0)
      }
      /TIME/
      %Assign(hourPM,%Dec(%System.GetDateTime(hh),12))
      %Assign(hourAM,%Dec(%System.GetDateTime(hh),0))
      
      %If(%hourPM() = 0)Then{%Assign(hourPM,%Dec(%System.GetDateTime(hh),0))}
      %If(%hourAM() = 0)Then{%Assign(hourAM,%Dec(%System.GetDateTime(hh),-12))}
      
      %Common.CreateNewLine(, -1, 0)
      %Graph.Font('Arial',8,1,)
      %Format.AlignRight()
      %If(%System.GetDateTime(h) < 12)
          Then{%hourAM()%System.GetDateTime(':nn ')AM%System.GetDateTime('  mm/dd/yy  dddd')}
          Else{%hourPM()%System.GetDateTime(':nn ')PM%System.GetDateTime('  mm/dd/yy  dddd')}
      
      /CPU/
      %Graph.Font('Arial',8,1, )
      %Common.CreateNewLine(, 1, 15)
      %Format.AlignLeft()
      'CPU'
      %Common.CreateNewLine(, -204,15)
      %Format.AlignRight()
      %CPUusage() '%'
      %Format.Bar(Horizontal,50,8,0,100,%CPUusage(),1,1,53,18)
      %Common.CreateNewLine(, -127,15)
      %UsePlugin('everest\everest.dll',TCPU,value)'°C' 
      /RAM/ 
      %Common.CreateNewLine(, 135, 15)
      %Format.AlignLeft()
      'RAM'
      %Common.CreateNewLine(, -52, 15)
      %Format.AlignRight()   
      %Shr(%System.Memory(MemoryUsed), 10) ' MB'
      %Format.Bar(Horizontal,50,8,0,%System.Memory(MemorySize),%System.Memory(MemoryUsed),1,1,205,18) 
    }
    Else
    {
       %If(%ScreenSaverOn() = 0)
       Then
       {
          %Assign(ScreenSaverOn, 1)
          %Graph.Rect(0,0,256,32,0,0)
       }
    }   
      %Common.CreateNewLine(,-155,0)
      'GPU '
      %UsePlugin('everest\everest.dll',TGPU1DIO,value)'°C'
    #EndGfxMode
    Thanks!
    No one knows?
    NP8150 *i7 2860QM - GTX 580M (15% OC & UV to 0.85) - 16GB 1600 Mhz Ram - OCZ MI Vertex 3 240Gb - Killer N1202 - Blu-Ray Burner - 95% Gamut Glossy Screen*

  4. #574
    Notebook Geek
    Join Date
    Jan 2009
    Posts
    84
    Rep Power
    11

    Default Re: G50V - Anyone find a use for the OLED display?

    Quote Originally Posted by Bryanu View Post
    No one knows?
    try to use everest.... ¬_¬

  5. #575
    Notebook Enthusiast
    Join Date
    Jul 2009
    Posts
    39
    Rep Power
    10

    Default Re: G50V - Anyone find a use for the OLED display?

    So, couple of bugs I've been having trouble with on my W7 G50Vt-X5 setup(x64):
    MSN Plugin:
    -Randomly doesn't work.
    -When it doesn't work it shows Status: Unknown and I checked out the MegaScript, and when I change the text from Unknown to something else it doesn't change, indicating it is using the function where it prints the status value directly from the dll.

    Text gone while gaming
    - I've not been able to test if it's for some games specific, but sometimes when I start a game, and its playing, my LCDHype is screwing up the screen.
    I still am able to recognize what script is running at the moment from the layout. But it wipes out all text, so I just get blue rectangles instead of a blue bordered black box with text in it. The autochange still works, so its for all script. When I turn of the game it works again...
    [SIZE="1"]Asus G50VT-X5
    Core 2 Duo P7450 2.13Ghz @ 2.4Ghz OC
    4GB RAM - 9800m GS

  6. #576
    Notebook Evangelist
    Join Date
    Nov 2007
    Location
    Bulgaria
    Posts
    495
    Rep Power
    15

    Default Re: G50V - Anyone find a use for the OLED display?

    Maybe issue with Win7, Status: Unknown means the MSN plugin cannot read data from MSN...the other problem also looks like Win7 incompatibility, there's no reason for the text to disappear when gaming...check LCDHype's forum
    New laptop ASUS G73JW-A1 from GenTechPC
    Old laptop ASUS G1S-B1 Core 2 Duo T7700 (2.4GHz), 2GB, 200GB 7200rpm, NVIDIA GeForce 8600m GT 256MB DDR3

    Reviews: [Customizing the Asus G1S OLED] [Megascript 2.0 for G-series OLED] [G50/G70/G71 OLED driver for LCDHype]


  7. #577

    Join Date
    Aug 2007
    Location
    Toronto, ON
    Posts
    1,218
    Rep Power
    19

    Default Re: G50V - Anyone find a use for the OLED display?

    Quote Originally Posted by Predator_MF View Post
    Sorry for delay answer, I saw your previous post...what Volume Add-on are you talking about ? Link ?
    In my script, I use 2 plugins to report the system's current volume:

    'lcdvc\lcdvc.dll','Master','GetVolume'
    and
    'lcdvc\lcdvc.dll','Master','GetMuted'

    When I used it on my XP system, they reported the correct volume.
    However, I installed Win7, and newest LCDHype (pretty sure it's the same version as before), loaded up my script and the volume always gets reported back as 0.

  8. #578
    Notebook Evangelist
    Join Date
    Nov 2007
    Location
    Bulgaria
    Posts
    495
    Rep Power
    15

    Default Re: G50V - Anyone find a use for the OLED display?

    Quote Originally Posted by Hahutzy View Post
    ...
    'lcdvc\lcdvc.dll','Master','GetVolume'
    and
    'lcdvc\lcdvc.dll','Master','GetMuted'
    ..
    One suggestion is to contact the author of this plugin, but this would be like searching a ghost

    I haven't used this plugin, I can't tell you about it, tho in the past I've written code that reads mixer volume...I can write you a better plugin I guess

    Btw, I'm the author of WiMood for Skype, you can test it and see if it reports sound volume correctly on your Win7, if it does, I can with ease port you that part of the code to a LCDHype plugin
    New laptop ASUS G73JW-A1 from GenTechPC
    Old laptop ASUS G1S-B1 Core 2 Duo T7700 (2.4GHz), 2GB, 200GB 7200rpm, NVIDIA GeForce 8600m GT 256MB DDR3

    Reviews: [Customizing the Asus G1S OLED] [Megascript 2.0 for G-series OLED] [G50/G70/G71 OLED driver for LCDHype]


  9. #579
    Notebook Consultant
    Join Date
    Dec 2008
    Posts
    166
    Rep Power
    11

    Default Re: G50V - Anyone find a use for the OLED display?

    I can confirm that :
    - Volume control is not working at all in win7 (tested every method possible)
    - CPU occupation is not reported in Win7, you have to use Everest and use his values instead.
    Asus G50v-AK043K, P8600@2.9Ghz, 9700mGT, WinXP Trust 3
    Check my script and give a life to your OLED with the new PipBoy 2 beta 1 ! --- Don't forget to register and leave some comments about it...

  10. #580
    Notebook Enthusiast
    Join Date
    Jul 2009
    Posts
    39
    Rep Power
    10

    Default Re: G50V - Anyone find a use for the OLED display?

    Now all of a sudden my MSN plugin works everytime I start my computer, but now "Overclocker" isn't able to read out any values from Everest...

    The thing I think is weird, is the fact I didn't touch everest, lcdhype, the script, or even any configuration settings in W7, the only thing I've been doing the past 6 days is browsing the internet and using msn, and all of a sudden it isn't working anymore

    Edit: Nvm, the weirdest thing, I didn't activate Writing values to WMI and Registry because of the fact it was working without it. So I activated it to see if it made any difference, and writing values to WMI fixed my issues with Everest and overclocker.

    I also set the compatibility mode of lcdhype to Windows XP SP3, you never know, it might just run a little more stable and stuff.

    I was also wondering were I can download LCDHype 6.1.1? On the LCDHype forums some people are talking about it, but the link I found on the forums didn't work anymore.
    Last edited by T-Grave; 25th August 2009 at 12:59 PM.
    [SIZE="1"]Asus G50VT-X5
    Core 2 Duo P7450 2.13Ghz @ 2.4Ghz OC
    4GB RAM - 9800m GS

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -4. The time now is 10:36 AM.
Powered by vBulletin® Version 4.2.0
Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.
SEO by vBSEO 3.6.0