Component to integrate with Folding@Home.
This component will set up the following platforms.
Platform | Description |
---|---|
button |
Pause and Unpause Folding@Home clients. |
sensor |
Show stats from Folding@Home clients. |
select |
Select Power Setting Folding@Home clients. |
Follow this guide in order to allow other clients on your local network to access your Folding@Home client.
The easiest way to add this to your Homeassistant installation is using HACS. And then follow the instructions under Configuration below.
- Using the tool of choice open the directory (folder) for your HA configuration (where you find
configuration.yaml
). - If you do not have a
custom_components
directory (folder) there, you need to create it. - In the
custom_components
directory (folder) create a new folder calledfoldingathomecontrol
. - Download all the files from the
custom_components/foldingathomecontrol/
directory (folder) in this repository. - Place the files you downloaded in the new directory (folder) you created.
- Restart Home Assistant
- Choose:
- Add
foldingathomecontrol:
to your HA configuration. - In the HA UI go to "Configuration" -> "Integrations" click "+" and search for "FoldingAtHomeControl"
- Add
Using your HA configuration directory (folder) as a starting point you should now also have this:
custom_components/foldingathomecontrol/.translations/en.json
custom_components/foldingathomecontrol/__init__.py
custom_components/foldingathomecontrol/config_flow.py
custom_components/foldingathomecontrol/const.py
custom_components/foldingathomecontrol/foldingathomecontrol_client.py
custom_components/foldingathomecontrol/foldingathomecontrol_device.py
custom_components/foldingathomecontrol/manifest.json
custom_components/foldingathomecontrol/sensor.py
custom_components/foldingathomecontrol/services.py
custom_components/foldingathomecontrol/services.yaml
custom_components/foldingathomecontrol/timeparse.py
Pause one or all slots.
Name | Description | Example |
---|---|---|
address |
The IP address or hostname of the client. It can be found as part of the integration name. |
localhost |
slot |
The slot to pause. Be sure to include the 0 in front if needed. Leave this out to pause all slots. |
01 |
Unpause one or all slots.
Name | Description | Example |
---|---|---|
address |
The IP address or hostname of the client. It can be found as part of the integration name. |
localhost |
slot |
The slot to unpause. Be sure to include the 0 in front if needed. Leave this out to unpause all slots. |
01 |
Shut down the client.
Name | Description | Example |
---|---|---|
address |
The IP address or hostname of the client. It can be found as part of the integration name. |
localhost |
Request a new assignment from the work server.
Name | Description | Example |
---|---|---|
address |
The IP address or hostname of the client. It can be found as part of the integration name. |
localhost |
Set the power level.
Name | Description | Example |
---|---|---|
address |
The IP address or hostname of the client. It can be found as part of the integration name. |
localhost |
power_level |
The power level to set. |
One of: LIGHT,MEDIUM,FULL |
Set the power level.
Name | Description | Example |
---|---|---|
address |
The IP address or hostname of the client. It can be found as part of the integration name. |
localhost |
command |
The command to send. |
slot-info |
If you want to contribute to this please read the Contribution guidelines