I still cannot suss this, I'm fairly confident that the i2cfan script should work but i can't figure getting it into marlin to run.by jifop - Firmware - Marlin
Hey all, I'm trying to get some code to run when the hotends hit a certain temperature and am after some advice. I thought what I'd done below would work but I guess I have the logic wrong as It compiles fine but doesn't do what id expect. I've written a simple sketch called i2cFan.h that contains the following: // i2c fan settings // address of PCF8574 IC #define PCF8574_ADDR (0x20) //variaby jifop - Firmware - Marlin
Fair enough, I will keep bashing away. Thanksby jifop - Firmware - Marlin
I know this is a very old topic but did you manage to get this working on autofan? I have a similar setup which I'm trying to get workingby jifop - Firmware - Marlin
Hey all, I'm hoping someone can help me. I've built a simple i2c relay to run my fans using an i2c expander and a relay, I can control this with the Gcode below: To turn relay off: M260 A32 ; i2c address 0x22 M260 B170 ; write 0xAA (on) M260 S1 ; Send the current buffer To turn relay on: M260 A32 ; i2c address 0x22 M260 B85 ; write 0x55 (off) M260 S1 ; Send the current buffer I haby jifop - Firmware - Marlin