Hello I'm using a arduino Zero board controlling a PWM 4 Pin fan Zero board uses 3.3 Logic instead of 5v Logic. The problem I'm having is when i Tell the OUTPUT to go low it doesn't stop. It just slows way down. But If i use a Uno board and do the same thing It does stop the fan motor. I'm not sure what to do now I'm stuck I'm trying to figure out how to get it to stop. Can someone please help me Sketch is below.
#define Gate 5
void setup() {
// put your setup code here, to run once:
pinMode(Gate, OUTPUT);
digitalWrite(Gate, LOW);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(Gate, HIGH);
delay(3000);
digitalWrite(Gate, LOW);
delay(3000);
}