jascdk / Nilan_Homeassistant

Use your Home Assistant to control and read values from your Nilan air vent system
54 stars 25 forks source link

Typo in nilan_code.ino #25

Open expeditioneer opened 3 years ago

expeditioneer commented 3 years ago

Currently in nilan_code.ino following is present:

#if SERIAL == SERIAL_SOFTWAR
SoftwareSerial SSerial(SERIAL_SOFTWARE_RX, SERIAL_SOFTWARE_TX); // RX, TX
#endif

Should be

#if SERIAL == SERIAL_SOFTWARE
SoftwareSerial SSerial(SERIAL_SOFTWARE_RX, SERIAL_SOFTWARE_TX); // RX, TX
#endif