Teensy v3.6 ... Blink
Код за потвърждение:
// Pin 11 has the LED on Teensy 2.0
// Pin 6 has the LED on Teensy++ 2.0
// Pin 13 has the LED on Teensy 3.0
// Pin 13 has the LED on Teensy 3.6
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Прикачени файлове:
teensy_v3.6_wsg.jpg [ 1.47 MiB | Прегледано 4173 пъти ]
Teensy v3.6, 32 bit, 180 MHz, ARM Cortex-M4 processor, 3.3V