// ATtiny85 with ATTinyCore example. Serial, Wire, Servo, etc. should just work out of the box!
//
// To build using ATTinyCore, set the "env" attribute of the wokwi-attiny85 to "ATTinyCore".

void setup() {
  Serial.begin(9600);
  Serial.println("Hello, ATTinyCore!");
  pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);
  delay(500);
  digitalWrite(LED_BUILTIN, LOW);
  delay(500);
}
ATTINY8520PU