Meetem / RazerBladeSharp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Program just hangs here forever

privacyguy123 opened this issue · comments

image

Not a clue how to go about debugging this ... but I would love to be able to get rid of Synapse 3 bloat by control the fan some other way.

commented
commented

I'am not sure about Blade 2019 Pro, cause never worked with that laptop, may be we just don't need to request status here.

You would know better than me ... like I say, this stuff is way over my head just looking for a way to get rid of Synapse 3 bloat, I don't even care about RGB it's just the fan controls that I need - not even Notebook Fan Control works. :/

Worth noting the fan is 2300-4300 RPM rather than what that CMD output states - I assume that's RPM?

commented

Now I get this:

image

Ain't changing any options though

commented

I have 3 of these entries - do they all need changed?

image

commented

Interface 2 seems to work for me - the other ones break keyboard functionality. Will do some more testing. :)

commented

RGB seems busted completely unfortunately - what do I write to set all keys to the same color? :S

It seems "numRetries" should be at 2 to make sure the fans speed up all the way - sometimes they stop before getting to full speed?

A lot of people would love this little tool over on the Razer forums if it had some sort of easier GUI!

commented

Sorry I am not a coder - I get an error if I change this line to for()

image

commented

Oh, ok. Then change it to:

for(int i = 0; i < 6; i++)
{
  var row = new KeyboardRow((byte)i);
  for(int j = 0; j < 15; j++)
    row.keys[j] = new Rgb24(255,255,255);

  _laptop.SendKeyboardRow(row);
}

Thank you Sir! A lot of people on the Razer forums will love this.

Is it possible there is a bug with Razer Blade Pro 17 2019 as it has 2 sets of fans? There is 4 fans in this machine altogether - I seem to have to run the program twice to get them to go full speed.

commented

Is there some info dump I can send you from this machine so we can control both sets of fans? :)

I think your program is sending information to them randomly.

commented

Should the numbers correspond to the RPM? This machine is 2300-4300 rather than 3100-5300

commented

I am a little confused as the 2nd set of fans shouldn't even be on if power mode is Balanced - so there must be something else wrong under the hood ...

@Meetem is there any way I can send you info from this laptop so we can alter the code to make sure it supports the fans? Every time I run the example the fans go a different speed with the same values ...

@Meetem is it possible to get this progam to send Chroma info to mouse and keyboard also?

commented

@Meetem is it possible to get this progam to send Chroma info to mouse and keyboard also?

Sorry for long delay, we have a situation here. I think there is software for doing so, cause Razer Blade and mouse/kb protocols much different (and more popular)

commented

@privacyguy123 hey, I've updated my Simple.exe, you can try now separate fan speeds like this (in command line):
Simple.exe 5000 0 5000
First 5000 is first fan speed,
0 is power mode (balanced)
Second 5000 is 2nd fan speed.
You can set fan speed to 0 or auto.
Also you can now pass keybright=100 (100% keyboard brightness) after first three argument, and keycolor=255,0,255 for keyboard color.

If status query doesn't work for you for some reason, also add disable_get_description

commented

Also note that, for some reason on my laptop power mode=1 (custom) with 5300 fan speed doesn't actually set maximal fan speed, which can also apply to yours. For balanced mode 5300 works just like is should, setting the max speed.