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
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,37 +27,37 @@ It now features an event-driven design using callbacks, allowing your main sketc
27
27
28
28
The library is now event-driven. You can register callback functions in `setup()` that will automatically execute when the network status changes. The `netManager.loop()` function must still be called on every iteration of your sketch's main `loop()`.
29
29
```c
30
-
\#include \<SPI.h\>
31
-
\#include \<Ethernet.h\>
32
-
\#include "SimpleNetManager.h"
30
+
#include<SPI.h>
31
+
#include<Ethernet.h>
32
+
#include"SimpleNetManager.h"
33
33
34
34
// The library is now in a namespace to prevent naming conflicts.
35
35
using namespace SimpleNet;
36
36
37
37
// Define the MAC address for your Ethernet shield.
0 commit comments