add note about the need to collapse the superposition of status

This commit is contained in:
Kevin Matz 2022-12-02 15:47:51 -05:00
parent e0394e4413
commit a03ef79d5d

View File

@ -154,10 +154,13 @@ void Universe::altSCdata(const std::vector<uint8_t> & data)
/** /**
* @brief Universe::status * @brief Universe::status
* @return * @return
*
* Like Schrödinger's cat, the status of the universe may exist in a superpostion
* of states. Only by observing it will it collaps into a single status.
*/ */
uint8_t Universe::status() uint8_t Universe::status()
{ {
rx_timeout_(); rx_timeout_(); // many things may have happened since the last observation
return status_; return status_;
} }