* Get IP address, depended on WiFi mode. * * @return IPv4 */
| 476 | * @return IPv4 |
| 477 | */ |
| 478 | static String getIPAddress() |
| 479 | { |
| 480 | String result; |
| 481 | |
| 482 | if (WIFI_MODE_AP == WiFi.getMode()) |
| 483 | { |
| 484 | result = WiFi.softAPIP().toString(); |
| 485 | } |
| 486 | else |
| 487 | { |
| 488 | result = WiFi.localIP().toString(); |
| 489 | } |
| 490 | |
| 491 | return result; |
| 492 | } |
| 493 | |
| 494 | /** |
| 495 | * Get supported image file extensions for BitmapWidget. |