PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

20 lines
318B

  1. #include <TimerOne.h>
  2. #define ledPin 4
  3. int ledState = LOW;
  4. void setup() {
  5. pinMode(ledPin, OUTPUT);
  6. Timer1.initialize(500000); //The led will blink in a half second time interval
  7. Timer1.attachInterrupt(blinkLed);
  8. }
  9. void loop() {
  10. }
  11. void blinkLed(){
  12. ledState = !ledState;
  13. digitalWrite(ledPin, ledState);
  14. }