Fix server method typo in README (#280)

This commit is contained in:
Alexander 2017-11-06 14:46:45 +01:00 committed by Me No Dev
parent d366e7c539
commit 054824a174
1 changed files with 1 additions and 1 deletions

View File

@ -942,7 +942,7 @@ ws.printfAll(arguments...);
//printf_P to a client
ws.printf_P((uint32_t)client_id, PSTR(format), arguments...);
//printfAll_P to all clients
ws.printf_P(PSTR(format), arguments...);
ws.printfAll_P(PSTR(format), arguments...);
//send text to a client
ws.text((uint32_t)client_id, (char*)text);
ws.text((uint32_t)client_id, (uint8_t*)text, (size_t)len);