SasaKaranovic

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • URL
    https://sasakaranovic.com

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

SasaKaranovic's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Do you have OpenFAN Controller connected to your Unraid server? This docker application will not work without the hardware connected.
  2. Thank you @dopeytree I'm not sure what your target application is but let me describe what this is and how it can be used. The OpenFAN Controller allows you to control up to ten 12V PWM fans individually and you can set target PWM value or target RPM for each individual fan. It is designed to be platform and system agnostic. Meaning you can use it on Windows, Linux, Mac in a Docker container or whatever you desire. It also has a public API that you can use to create a plugin for existing software (ie. like I did for FanControl) or to trigger/integrate into some other automation. The application that is available on Community App store is an API server that also comes with a simple GUI. This allows you to interact with the OpenFAN controller. So for example, on my desktop I use it with FanControl software. It has a very simple and clean UI that I like and it's the software I used before. But I can't run FanControl on my servers. So on the Unraid server that I have in my living room I have a bit more "complex" setup. I run it in a docker container and then have couple of separate applications/scripts/cron jobs that control the fans. For example if the HDD temp is too high, I can spin up only the HDD fans. If the CPU/GPU temp is too high, I can spin up only the fans that move air in that area. There is also a feature to define fan profiles. This is where I can specify RPM/PWM values for all 10 fans. Like for example I have a "idle" profile, "medium load" an "crank it to 11" profiles. Then I can make a simple API call from any application (ie. using some other docker container or even cron) to apply any of the profiles I have. With that said, the API server will not monitor temperature sensors etc. It provides an API interface (it also has a Web UI interface) and you can use it to simply link any application (running locally or even remotely) with the fan controller. I don't know if this sounds like a weird design decision, but I honestly think (hope) it's not that terrible idea. Please bear with me while I try to explain my view and motivation for this: Instead of designing another fan controller and trying to "lock" people into vendor software that maybe won't work on your system or does not support (some of) your sensors, has terrible GUI, needs ton of ram just to run, annoys you every couple of days about new update that doesn't do anything and so on. The idea was to make a fan controller that works on any OS and that gives you the flexibility to run it whichever way you want. It is your fan controller and you can control and interact with it in any way you want. There is nobody "prescribing" how you have to use it. Now obviously this design decision also comes with a down-side for average user, in that it does not come with fancy software package. And if I gave it to my parents, it definitely will not be entirely plug&play out of the box. But I still think the ability to be used in almost every use-case is very valuable, at least for me. Finally since the project is open-source and public, the API is open-source and public, you (the community) can use it however you want, integrate it with whatever you want or make custom apps for it and (hopefully/please) share back with the community so that we all can benefit from it. Sorry about the very long reply to your question but I hope this gives you the answer you were looking for.
  3. Summary: Support thread for SasaKaranovic's OpenFan Controller Docker template Application: OpenFan Controller Software Source: https://github.com/SasaKaranovic/OpenFanController This is a support thread for running OpenFan Controller on your Unraid server via Docker. The provided template should work out-of-the-box with no modifications. Note: You can specify exact USB device that you would like this docker instance to control. This can be useful in some (rare) cases. For example if you have multiple USB-to-Serial devices connected to your Unraid server or if you have multiple OpenFan controllers connected at the same time. This is done by changing the `OPENFANCOMPORT` environment variable. Please note: In order to run this app, you will need to have OpenFan Controller physically connected to your Unraid server. Otherwise the setup will fail.