Asus H87-PRO /usr/sbin/pwmconfig: There are no pwm-capable sensor modules installed

73

Can you post the output of sudo sensors-detect?

Edit: Nevermind. I read the pastbin you linked (totally missed it). It looks like sensors-detect does not fully recognize your Super I/O chip. According to this the Super I/O is the Nuvoton (formerly Winbond) NCT 5538D. The chip ID appears to be the same as the NCT6775 family. You can download the driver from here, which is a link to github of the maintainer of that kernel module (it is a download link).

Then do the following:

cd /path/to/directory/you/saved/the/file
tar xzvf master.tar.gz
sudo make
sudo make install
modprobe hwmon
modprobe nct6775

Then, check to make sure you did everything correctly:

lsmod | grep nct

The output should look something like [this][3]:

user@computer:/# lsmod | grep nct
nct6775                44104  0 
hwmon_vid              12388  1 nct6775

Then run sudo pwmconfig and hopefully everything should be ok.

Share:
73

Related videos on Youtube

Wouter
Author by

Wouter

Updated on September 18, 2022

Comments

  • Wouter
    Wouter over 1 year

    I'm trying to iterate over this json encoded array which is a string:

    "{"":{"count":{"total":112,"open":0,
    "solved":0,
    "deleted":106,
    "closed":6},
    "average_time_open_in_minutes":206,
    "tickets_fortnight_week_count":11,
    "tickets_last_week_count":15,"trend":1},
    "Net2grid":{"count":"total":8,"open":0,"solved":0,"deleted":8},"average_time_open_in_minutes":0,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0},"Closed_by_merge":{"count":{"total":2,"open":0,"solved":0,"closed":2},"average_time_open_in_minutes":502,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0},"Analytics":{"count":{"total":1,"open":0,"solved":0,"deleted":1},"average_time_open_in_minutes":26,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0},"Meter":{"count":{"total":5,"open":5,"solved":0},"average_time_open_in_minutes":0,"tickets_fortnight_week_count":0,"tickets_last_week_count":2,"trend":1},"Installation":{"count":{"total":8,"open":5,"solved":3},"average_time_open_in_minutes":404,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0},"Other...":{"count":{"total":3,"open":2,"solved":1},"average_time_open_in_minutes":39,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0},"Meter Offline":{"count":{"total":8,"open":7,"solved":1},"average_time_open_in_minutes":8,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0},"App Usage":{"count":{"total":6,"open":5,"solved":0,"deleted":1},"average_time_open_in_minutes":8,"tickets_fortnight_week_count":0,"tickets_last_week_count":0,"trend":0}}"
    

    An ajax call returns that string and i'm trying to only get the keys like: "app usage" and "Meter Offline" to return like so:

    $.get('/ajax/ticket-and-notes-data.php', function (data) {
    
                var problems = getProblems(data);
    
                function getProblems(problems) {
                    var problemCategories = [];
                    $.each(JSON.parse(problems), function (key, value) {
                        if (key != "") {
                            problemCategories.push = key;
                        }
                    });
                    return problemCategories;
                }
            });
    

    But I can't get the keys to go into the problemCategories.

    I use this to set the categories in a highchart bubble chart and I will use more of the data from the string later.

    I need to get this to work first.

    • jdmdevdotnet
      jdmdevdotnet over 7 years
      problemCategories.push(key) ?
    • Keith
      Keith over 7 years
      That does not appear to be valid JSON.
    • RonyLoud
      RonyLoud over 7 years
      JSON string is invalid
    • Wouter
      Wouter over 7 years
      actually it is valid and it works now due to the answer of Dylan Hamilton
  • vorburger
    vorburger over 10 years
    Unfortunately, that doesn't seem to do it (for this board).. see pastebin.com/Up6KFRyu for exact details. Any suggestions re. recommended next steps? (BTW, this is on Ubuntu 13.10, in case that is of any interest.)
  • psusi
    psusi over 10 years
    @vorburger, coretemp is just the cpu internal temperature monitor. It looks like your board has a Nouvaton chip that isn't yet supported, so you are out of luck, unless you feel like trying 14.04 where support may have been added.
  • Frank Moore
    Frank Moore almost 9 years
    I did this but lsmod | grep nct shows nothing. My board is Z97M-PLUS.
  • vorburger
    vorburger over 8 years
    This works great! Thanks a lot. Just FTR, it actually turns out that (in 14.04 at least) this NCT6775 Module is already available in the Kernel, so just modprode is sufficient, no need to DL and make it.
  • vorburger
    vorburger over 8 years
    The acpi_enforce_resources=lax does not appear to be needed or help for this specific problem.
  • psusi
    psusi over 8 years
    @vorburger, I'm not sure what problem you are referring to but the original poster's problem was getting the module to control the embedded fan/thermal chip to load, and this generally requires the mentioned fix.
  • Wouter
    Wouter over 7 years
    That's it, damn I hate myself for missing such a simple thing