@[email protected] to Programmer [email protected]English • 2 months agoNot incorrect.mander.xyzimagemessage-square80fedilinkarrow-up1709arrow-down114cross-posted to: [email protected]
arrow-up1695arrow-down1imageNot incorrect.mander.xyz@[email protected] to Programmer [email protected]English • 2 months agomessage-square80fedilinkcross-posted to: [email protected]
minus-squareTimeSquirrellinkfedilink6•2 months agoSomething wrong with: #include <Arduino.h> void loop() { digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(1000); } ? 😂🤮
minus-square@[email protected]linkfedilink11•2 months agoObviously the only correct way to blink an LED is to use a hardware timer to trigger a DMA transfer which stores a bit in the pin toggle register at a set interval
minus-square@[email protected]linkfedilinkEnglish2•2 months agoyeah! Or or use the interrupt pins and a 555 timer! both options are better than python though at least.
Something wrong with:
#include <Arduino.h> void loop() { digitalWrite(13, HIGH); delay(1000); digitalWrite(13, LOW); delay(1000); }
? 😂🤮
Obviously the only correct way to blink an LED is to use a hardware timer to trigger a DMA transfer which stores a bit in the pin toggle register at a set interval
yeah! Or or use the interrupt pins and a 555 timer! both options are better than python though at least.