By any chance has anyone got the analogWriteFrequencySlow function running on the Teensy 4.0?
Type: Posts; User: darellon
By any chance has anyone got the analogWriteFrequencySlow function running on the Teensy 4.0?
I've just tried some other pins 35 to 38 with attachInterrupt() on Port_C and none of them woke the T3.6. While doing that pulling 23 to ground always woke the T3.6, no matter what pin was declared...
Does that mean that i could declare a wake up pin that is supported by the snooze library (ex 33 - Port_A)
digital.pinMode(33, INPUT_PULLUP, LOW);
then do a
attachInterrupt(Port_A_pin,...
Yes, when i press the button on pin 23 the code enters the for loop and flashes the Led
i recently started playing around with the snooze library. I've noticed that when i attach an interrupt to a pin (not digital.pinMode but attachInterrupt) the interrupt will wake up my Teensy 3.6...