Print debug data to serial, disabled for release. Edit this file to re-enable these for debugging purposes.
| 168 | /// Print debug data to serial, disabled for release. |
| 169 | /// Edit this file to re-enable these for debugging purposes. |
| 170 | void dump() const { |
| 171 | /// @code |
| 172 | /// Serial.print("len: "); Serial.print(len); Serial.print(", dir:"); Serial.print((int)dir); |
| 173 | /// Serial.print(", range:"); Serial.print((uint32_t)leds); Serial.print("-"); Serial.print((uint32_t)end_pos); |
| 174 | /// Serial.print(", diff:"); Serial.print((int32_t)(end_pos - leds)); |
| 175 | /// Serial.println(""); |
| 176 | /// @endcode |
| 177 | } |
| 178 | |
| 179 | /// Copy the contents of the passed-in set to our set. |
| 180 | /// @note If one set is smaller than the other, only the |
no outgoing calls