Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed DMX TextLCD mbed-rtos
Diff: ArtNet.h
- Revision:
- 16:3cc108681a53
- Parent:
- 15:b0efafcfbb03
- Child:
- 22:b4af2cbd3148
--- a/ArtNet.h Tue Mar 08 21:30:42 2016 +0000 +++ b/ArtNet.h Tue Mar 08 22:10:24 2016 +0000 @@ -21,6 +21,14 @@ ArtNetSocket.bind(ArtNetPoort); Endpoint Client; + char buffer[1024]; + + + while (true) + { + int n = ArtNetSocket.receiveFrom(Client, buffer, sizeof(buffer)); + buffer[n] = '\0'; + } }