Butterworth
Example of Butterworth filter.
- Boards:
- AVR, AVR USB, Nano 33 IoT, Nano 33 BLE, Due, Teensy 3.x, ESP8266, ESP32
- See also
- https://tttapa.github.io/Pages/Mathematics/Systems-and-Control-Theory/Analog-Filters/Butterworth-Filters.html
Written by PieterP, 2019-11-12
https://github.com/tttapa/Arduino-Filters
void setup() {
Serial.begin(115200);
}
const double f_s = 100;
const double f_c = 25;
const double f_n = 2 * f_c / f_s;
auto filter = butter<6>(f_n);
void loop() {
if (timer)
}
Dummy header file for Arduino builder.
A class for easily managing timed events.
analog_t analogRead(pin_t pin)
An ExtIO version of the Arduino function.