diff --git a/README.md b/README.md index 5988acb..c8cb66e 100644 --- a/README.md +++ b/README.md @@ -85,12 +85,12 @@ void loop() // Pass it the serial port to read from and a callback: SerdeRX::read(Serial1, recordSensorData); - // Note: you can also check manually for incoming data: - SensorData data; - if (SerdeRX::receive(Serial1, data)) - { - recordSensorData(data); - } + // Or you can also check manually for incoming data: + // SensorData data; + // if (SerdeRX::receive(Serial1, data)) + // { + // recordSensorData(data); + // } } ```