| 269 | } |
| 270 | |
| 271 | void ButtonActions::showIpAddress() const |
| 272 | { |
| 273 | const uint32_t DURATION_NON_SCROLLING = 4000U; /* ms */ |
| 274 | const uint32_t SCROLLING_REPEAT_NUM = 2U; |
| 275 | String infoStr = "IP: "; |
| 276 | |
| 277 | infoStr += WiFi.localIP().toString(); |
| 278 | SysMsg::getInstance().show(infoStr, DURATION_NON_SCROLLING, SCROLLING_REPEAT_NUM); |
| 279 | } |
| 280 | |
| 281 | void ButtonActions::toggleDisplayOffOn() |
| 282 | { |