| 772 | WiFiClient client; |
| 773 | public: |
| 774 | bool begin(const char* host, int width=VECTOR_DISPLAY_DEFAULT_WIDTH, int height=VECTOR_DISPLAY_DEFAULT_HEIGHT) { |
| 775 | VectorDisplayClass::begin(width, height); |
| 776 | return client.connect(host, 7788); |
| 777 | } |
| 778 | |
| 779 | virtual void end() override { |
| 780 | VectorDisplayClass::end(); |