File tree 3 files changed +19
-16
lines changed
3 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 23
23
24
24
HttpServer http;
25
25
26
- - Initialize the SD ans start the HTTP server :
26
+ - Initialize the SD and start the HTTP server :
27
27
28
28
.. code-block :: c
29
29
Original file line number Diff line number Diff line change @@ -22,6 +22,22 @@ FullIP is a suite of ip protocols implementation for Arduino.
22
22
23
23
- comment #define FULLIP_SD to disable SD or
24
24
uncomment it to build ftpclient, httpserver, ...
25
+
26
+ - Import it in your sketch :
27
+
28
+ - import the Ethernet library or the UIPEthernet and the SD if needed :
29
+
30
+ .. code-block :: c
31
+
32
+ // For W5100
33
+ //You must also update FullIP/FullIP.h
34
+ #include <SPI.h>
35
+ #include <Ethernet.h>
36
+ //For enc28j60
37
+ //You must also update FullIP/FullIP.h
38
+ //#include <UIPEthernet.h>
39
+ #include <SD.h>
40
+ #include <FullIP.h>
25
41
26
42
- The pin CS are hardcoded in UIPEthernet and Ethernet libraires. Update the
27
43
followings files if needed :
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ Welcome to FullIP
4
4
5
5
FullIP for Arduino (https://github.com/bibi21000/arduino-fullip)
6
6
7
- FullIP is a suite of ip protocols implementation for Arduino.
7
+ FullIP is a suite of ip protocols implementation for Arduino. It's
8
+ compatible with Ethernet/W5100 and UIPEthernet/ENC28j60.
8
9
9
10
Applications availables :
10
11
@@ -51,20 +52,6 @@ Install FullIP:
51
52
52
53
In your sketch :
53
54
54
- - import the Ethernet library or the UIPEthernet and the SD if needed :
55
-
56
- .. code-block :: c
57
-
58
- // For W5100
59
- //You must also update FullIP/FullIP.h
60
- #include <SPI.h>
61
- #include <Ethernet.h>
62
- //For enc28j60
63
- //You must also update FullIP/FullIP.h
64
- //#include <UIPEthernet.h>
65
- #include <SD.h>
66
- #include <FullIP.h>
67
-
68
55
- Define a client (FTP in this example)
69
56
70
57
.. code-block :: c
You can’t perform that action at this time.
0 commit comments