const int lampu =13;
void setup() {
// put your setup code here, to run once:
pinMode(lampu,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(lampu,HIGH);
}
const int lampu =13;
void setup() {
// put your setup code here, to run once:
pinMode(lampu,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(lampu,HIGH);
}