Closed mmurdoch closed 11 years ago
I'm for the change --- it's not a serial reporter any more. DefaultReporter might be a little more future-proof.
SerialReporter
doesn't exist in 2.x. Since this is a breaking change in the 1.x code line it won't be applied there either. Therefore I'm closing this issue.
Since
SerialReporter
only calls methods defined onPrint
(and no longer callsSerial.begin()
or any otherSerial
-specific methods) it could easily be extended to work with any subclass ofPrint
e.g. by passing one to a newSerialReporter
constructor (perhaps usingSerial
as a default). This would likely warrant a name-change (PrintReporter
?) but doing so could be construed as a breaking change.