core Server class back to Arduino Core API version (#9447)

This commit is contained in:
Juraj Andrássy 2024-04-02 19:40:37 +02:00 committed by GitHub
parent e709b9a388
commit 205781b921
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,7 @@
class Server: public Print
{
public:
virtual void begin(uint16_t port=0) =0;
virtual void begin() =0;
};
#endif