/*
PWM + logic analyzer example
How to use:
1. Start the simulation, run it for a few seconds
2. Stop the simulation, your browser will download a VCD file
3. Open the file in PulseView:
https://docs.wokwi.com/guides/logic-analyzer#viewing-the-data-in-pulseview
Copyright (C) 2021, Uri Shaked
*/
void setup() {
pinMode(5, OUTPUT);
analogWrite(5, 127);
}
void loop() {
}