Hi,
I cannot say anything on the smart-effector, BUT if you have a chamber you DEFINETLY need at least 1 fan + tempsensor that sucks out the hot air on top OUTSIDE of your chamber for the same reason (of course for that you need an inlet at the bottom or side at the bottom) above a certain temperature (for each filament diffrent, define it therfor in filament-config.g)!
Most things like the avarage-joe stepper-motor, pcb, mosfet, you name it will degrade in powers of ten for every +ten of more heat... so for having long fun with your electronics you should take care 🙂
E.G. get an additional thermistor from the duet-website/-reseller that you screw inside your chamber at the top where it is most hot and a 80-120mm fan (do not take the small ones take a big/long one with power because you can still drive it with PWM to use less of its power) and 1 cheap dustfilter for inlet, 1 good for outlet (that the air gets a bit cleaned when it gets in and even more cleaned when it gets back into your room)
In my case for duet2ethernet with RRF3.1.1 an example:
Than e.g. in your config.g put with M308 a new/higher S_ then what is you have already, in my case:
M308 S3 P"e1temp" Y"thermistor" T10000 B4274 C0.9018123000e-7 A"Chamber" ; configure sensor Sx as type"thermistor"/"..." on pin P"..." see https://duet3d.dozuki.com/Wiki/Connecting_thermistors_or_PT1000_temperature_sensors#Section_Thermistor_parameters
and define the fan later, and connect it to the sensor created before, in my case:
;chamber fan:
M950 F2 C"fan2" T3 ;Q500 ;! ;Q25000 ; create F=fan(x) with "!" to invert, on pin C; opt set frequency(Q) e.g. for most real 4-wire pwm-fans 25000 (max 65535), ordinary 2-wire must be kept low around 100-500, default seems to be 250
; set some default vals to start but override it in the print-file with the specific filament-config.g:
M106 P2 C"chamber fan" B1.0 L0.9 T40:50 H3 ;X1.0 ; P=num; s=set speed 0-255/0.0-1.0; limit L min & X max; H=heater monitored+Thermostatic control, -1=off or Hx(:__...) monitored; B=blip time in ms; if not thermostatic (H-1) define a board-boot-start-up speed S=fan speed;
I am currently in the state of replacing my temp-sensor with a DHT because besides temperature I can track the humidity inside the print-chamber to get to know how it influences print-quality...
Hope something here is maybe of some use for you, just my experience here... 🙂 Good luck!