Komut
setLocalIP()
Açıklama
Cihazın IP adresini ayarlayın. DHCP ile kullanım için değildir.
Sözdizimi
Ethernet.setLocalIP (local_ip)
Parametreler
local_ip : kullanılacak IP adresi ( IPAdresi )
İadeler
Hiçbir şey değil
Misal
#include <SPI.h>
#include <Ethernet.h>
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress ip(10, 0, 0, 177);
void setup() {
Ethernet.begin(mac, ip);
IPAddress newIp(10, 0, 0, 178);
Ethernet.setLocalIP(newIp); // change the IP address
}
void loop () {}
#include <Ethernet.h>
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress ip(10, 0, 0, 177);
void setup() {
Ethernet.begin(mac, ip);
IPAddress newIp(10, 0, 0, 178);
Ethernet.setLocalIP(newIp); // change the IP address
}
void loop () {}
Ayrıca bakınız
- Ethernet.setMACAddress()
- Ethernet.setDnsServerIP()
- Ethernet.setGatewayIP()
- Ethernet.setSubnetMask()
- Ethernet.begin()