Komut
setMACAddress()
Açıklama
MAC adresini ayarlayın. DHCP ile kullanım için değildir.
Sözdizimi
Ethernet.setMACAddress (Mac)
Parametreler
mac : kullanılacak MAC adresi (6 baytlık dizi)
İ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);
byte newMac[] = {0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02};
Ethernet.setMACAddress(newMac); // change the MAC 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);
byte newMac[] = {0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02};
Ethernet.setMACAddress(newMac); // change the MAC address
}
void loop () {}
Ayrıca bakınız
- Ethernet.setLocalIP()
- Ethernet.setDnsServerIP()
- Ethernet.setGatewayIP()
- Ethernet.setSubnetMask()
- Ethernet.begin()