Fan Control
AUTD3 devices have fans with three modes: Auto, Off, and On.
In Auto mode, the temperature monitoring IC monitors the temperature of the IC and automatically activates the fan when it exceeds a certain temperature. In Off mode, the fan is always off, and in On mode, the fan is always on.
The mode can be switched using the jumper switch next to the fan. It is a bit difficult to understand, but as shown in the figure below, shorting the fan side sets it to Auto, the middle to Off, and the right side to On.

In Auto mode, the fan automatically activates when the temperature rises.
In Auto mode, the fan can be forcibly activated with ForceFan
.
use autd3::prelude::*;
fn main() {
let _ =
ForceFan::new(|_dev| true);
}
#include<autd3.hpp>
int main() {
using namespace autd3;
ForceFan([](const auto&) { return true; });
return 0; }
using AUTD3Sharp;
new ForceFan(_ => true);
from pyautd3 import ForceFan
ForceFan(lambda _: True)
The argument of the ForceFan
constructor is Fn(&Device) -> bool
, which specifies whether to forcibly drive the fan for each device.
NOTE: You cannot forcibly turn off the fan in Auto mode.