#include <Arduino.h>
#include "LED.h"
void setup() {
// put your setup code here, to run once:
int buttonPin = 4;
LEDKlasse LED(2);
pinMode(buttonPin, INPUT_PULLUP);
}
void loop() {
// put your main code here, to run repeatedly:
}
#include <Arduino.h>
#include "LED.h"
void setup() {
// put your setup code here, to run once:
int buttonPin = 4;
LEDKlasse LED(2);
pinMode(buttonPin, INPUT_PULLUP);
}
void loop() {
// put your main code here, to run repeatedly:
}