Jump to content
  • Forum Statistics

    7.6k
    Total Topics
    51k
    Total Posts
  • Member Statistics

    136,027
    Total Members
    16,800
    Most Online
    abhiragoyal
    Newest Member
    abhiragoyal
    Joined

sacredbanana

Members
  • Posts

    6
  • Joined

  • Last visited

sacredbanana's Achievements

Beginner

Beginner (1/10)

0

Reputation

  1. It was more sample code so that you guys could use and adapt it into your next release so it fixes the problem for everyone.
  2. I just wrote a short program in 5 minutes that prints a message to console when it detects a power mode change. It was super easy. If the TT RGB Plus software implements this code then it can call a method to re-initialise itself instead of just printing to console like mine does. I wrote mine in C# but this can be easily adapted to C++ or VB or whichever language TT RGB Plus is written in. using System; using Microsoft.Win32; namespace SystemSleepTest { class Program { static void Main() { // Set the SystemEvents class to receive event notification when the power mode changes (e.g. for when waking up from sleep) SystemEvents.PowerModeChanged += new PowerModeChangedEventHandler(powerModeChangedHandler); // For demonstration purposes, this application sits idle waiting for events. Console.WriteLine("This application is waiting for power change system events."); Console.WriteLine("Press <Enter> to terminate this application."); Console.ReadLine(); } // This method gets called when the system power state has changed static void powerModeChangedHandler(object sender, EventArgs e) { Console.WriteLine("Wakey wakey eggs and bacey"); } } }
  3. According to this, https://msdn.microsoft.com/en-us/library/microsoft.win32.systemevents.powermodechanged.aspx If you create this event handler, the app should be able to detect when the computer wakes up and then performs an app restart routine
  4. Hi all, I have an epic RGB rig right now and am loving it. Only problem is TT RGB Plus seems to stop working when my computer wakes up from sleep. Some of the lights stop animating and the sound sensitive lights no longer respond to sound. Also the fans stay in the silent setting instead of the performance setting which I have set. I can only fix this by manually exiting the TT RGB Plus process and restarting it.
  5. I can't wait! Forget about my super liquid cooled Intel i9 processor and Nvidia GTX 1080 Ti Graphics card, the RGB is the most important aspect of all modern computers.
  6. Hi I have several of the Riing RGB Plus fans connected to a total of 3 controllers. What would be epic is if there was a feature to have a random option where all of my fans are all synced up together yet their effect is random and changes every minute or so. Also randomised if it uses full RGB or a random selection of colours. Is this possible?
×
×
  • Create New...