You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+38-42Lines changed: 38 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,16 +3,13 @@
3
3
[Art-Net](https://en.wikipedia.org/wiki/Art-Net) Sender/Receiver for Arduino (Ethernet, WiFi)
4
4
5
5
> [!WARNING]
6
-
> Breaking API changes from v0.4.0 and above
7
-
8
-
> [!WARNING]
9
-
> Dependent libraries removed from v0.3.0
10
-
11
-
If you have already installed this library before v0.3.0, please follow:
12
-
13
-
- Cloned from GitHub (manually): Please install dependent libraries manually
14
-
- Installed from library manager: re-install this library from library manager
15
-
- Dependent libraries will be installed automatically
6
+
> Breaking API changes from v0.9.0 and above. `Artnet.h` is no longer included. Please include the header file and use interface-specific classes depending on the interface you want to use.
If you use the board which has both `WiFi` and `Ethernet`, you can't use `#include <Artnet.h>`. Please replace it with `#include <ArtnetWiFi.h>` or `#include <ArtnetEther.h>` depending on the interface you want to use.
83
-
84
-
```C++
85
-
// For the boards which can use ether WiFi or Ethernet
86
-
#include<Artnet.h>
87
-
// OR use WiFi on the board which can use both WiFi and Ethernet
88
-
#include<ArtnetWiFi.h>
89
-
// OR use Ethenet on the board which can use both WiFi and Ethernet
90
-
#include<ArtnetEther.h>
91
-
```
87
+
Also, you can use multiple interfaces in the same sketch.
You can send/subscribe `ArtTrigger` using the follwing APIs. Please refer [here](https://art-net.org.uk/how-it-works/time-keeping-triggering/arttrigger/) for more information.
283
+
You can send/subscribe `ArtTrigger` using the following APIs. Please refer the [spec](https://art-net.org.uk/how-it-works/time-keeping-triggering/arttrigger/) for more information.
@@ -294,7 +290,7 @@ using ArtTriggerCallback = std::function<void(const ArtTriggerMetadata &metadata
294
290
295
291
## ArtSync
296
292
297
-
You can send/subscribe `ArtSync` using the follwing APIs. Please refer [here](https://art-net.org.uk/how-it-works/time-keeping-triggering/arttimesync/) for more information.
293
+
You can send/subscribe `ArtSync` using the following APIs. Please refer the [spec](https://art-net.org.uk/how-it-works/time-keeping-triggering/arttimesync/) for more information.
298
294
299
295
```C++
300
296
voidsendArtSync(const String& ip);
@@ -304,7 +300,7 @@ using ArtSyncCallback = std::function<void(const ArtNetRemoteInfo &remote)>;
0 commit comments