The attachment is the Simulink model. But on scope no output is coming where using same filter coefficents the digital filter is working good.
How to use Arduino as an emulator to filter signals ?
조회 수: 2 (최근 30일)
이전 댓글 표시
Arduino Code:
define<IIRFilter.h>
const double numerator={100, 68};
const double denominator={-98,7};
IIRFilter iir(numerator,denominator);
void setup()
{
Serial.begin(9600);
}
void loop()
{
if(Serial.available()>0)
{
int u=Serial.read();
int filtered=iir.filter(u);
Serial.println(filtered)
}
}
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Arduino Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!