Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用EthernetServer(port)在 arduino 上实现 tcp 服务器,使用接受连接
client = server.available(); if (client) { ... }
但是,据我正确理解可用的来源,它仅在有要从该客户端对象读取的内容时返回一个有效的客户端。
但是我想在连接建立后立即发送一种问候和提示,因此,在从远程端向连接发送某些内容之前。
我谁能做到这一点?