removed magic number

This commit is contained in:
jakeg00dwin 2024-07-28 15:32:41 -07:00
parent b41fe4a9fc
commit fae7509dba
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@
void ZCD_Setup(void)
{
ADC_Init(7);
ADC_Enable(7);
ADC_Init(ZCD_PIN);
ADC_Enable(ZCD_PIN);
}
bool ZCD_IsTriggered()