As aurdino uno have 16MHzArduino Uno has a 16 MHz oscillator but while running program it havehas less frequency because some of the processing power is used for running the program.
I have used the delay(1)delay(1) but it is giving me around 500Hz500 Hz.
My questions:
1.is there any way to achieve more than 500Hz?
2.what would be the maximum frequency of digital signal for below program?
- Is there any way to achieve more than 500 Hz?
- What would be the maximum frequency of digital signal for below program?
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
digitalWrite(13, LOW);
}
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
digitalWrite(13, LOW);
}