From 33a79cf51b48201b9dc509cb02f7f4d8c780230b Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Fri, 12 May 2023 21:48:33 -0500 Subject: [PATCH] Update RMT.md --- docs/RMT.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/RMT.md b/docs/RMT.md index f75cf09..00ecc0f 100644 --- a/docs/RMT.md +++ b/docs/RMT.md @@ -81,6 +81,9 @@ rf.start(4,1000); // start transmission of the pulse train; repeat for 4 cycles uint32_t pulseTrain[] = {RF_PULSE(100,50), RF_PULSE(100,50), RF_PULSE(25,500)}; // create the same pulse train in an external array rf.start(pulseTrain,3,4,1000); // start transmission using the same parameters ``` +#### Diagnostic Messages + +The **RFControl** class outputs *Warning \[W\]* messages to the Serial Monitor based on the *Core Debug Level* selected when compiling the sketch using the Arduino IDE. A non-fatal warning message is produced when insufficient Channel resources prevent the creation of a new RFControl object. Calls to the `start()` method for objects that failed to be properly created are silently ignored. ## Example RFControl Sketch