说明
初始化以太网库和网络设置。
在 1.0 版中,该库支持 DHCP。使用 Ethernet.begin(mac) 和正确的网络设置,Ethernet shield 将自动获得一个 IP 地址。这会显著增加草图大小。为确保在需要时正确更新 DHCP 租约,请务必定期调用 Ethernet.maintain()。
用法
Ethernet.begin(mac);
Ethernet.begin(mac, ip);
Ethernet.begin(mac, ip, dns);
Ethernet.begin(mac, ip, dns, gateway);
Ethernet.begin(mac, ip, dns, gateway, subnet);
参数
- mac:设备的 MAC(媒体访问控制)地址(6 字节数组)。这是您的防护罩的以太网硬件地址。较新的 Arduino 以太网扩展板包含带有设备 MAC 地址的标签。对于较旧的盾牌,请选择您自己的。
- ip:设备的IP地址(4字节数组)
- dns:DNS 服务器的 IP 地址(4 字节数组)。可选:默认为最后一个八位组设置为 1 的设备 IP 地址
- gateway:网络网关的 IP 地址(4 字节数组)。可选:默认为最后一个八位组设置为 1 的设备 IP 地址
- subnet:网络的子网掩码(4 个字节的数组)。可选:默认为 255.255.255.0
返回
- 此函数的 DHCP 版本 Ethernet.begin(mac) 返回一个 int:1 表示成功的 DHCP 连接,0 表示失败。
- 其他版本不返回任何内容。
示例
#include <SPI.h>
#include <Ethernet.h>
// the media access control (ethernet hardware) address for the shield:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
//the IP address for the shield:
byte ip[] = { 10, 0, 0, 177 };
void setup()
{
Ethernet.begin(mac, ip);
}
void loop () {}
相关用法
- Arduino Ethernet - Ethernet.setRetransmissionTimeout()用法及代码示例
- Arduino Ethernet - Ethernet.MACAddress()用法及代码示例
- Arduino Ethernet - Ethernet.hardwareStatus()用法及代码示例
- Arduino Ethernet - Ethernet.localIP()用法及代码示例
- Arduino Ethernet - Ethernet.setDnsServerIP()用法及代码示例
- Arduino Ethernet - Ethernet.init()用法及代码示例
- Arduino Ethernet - Ethernet.setMACAddress()用法及代码示例
- Arduino Ethernet - Ethernet.setSubnetMask()用法及代码示例
- Arduino Ethernet - Ethernet.dnsServerIP()用法及代码示例
- Arduino Ethernet - Ethernet.setLocalIP()用法及代码示例
- Arduino Ethernet - Ethernet.gatewayIP()用法及代码示例
- Arduino Ethernet - Ethernet.setGatewayIP()用法及代码示例
- Arduino Ethernet - Ethernet.setRetransmissionCount()用法及代码示例
- Arduino Ethernet - Ethernet.linkStatus()用法及代码示例
- Arduino Ethernet - Ethernet.subnetMask()用法及代码示例
- Arduino Ethernet - EthernetUDP.parsePacket()用法及代码示例
- Arduino Ethernet - EthernetUDP.beginPacket()用法及代码示例
- Arduino Ethernet - EthernetUDP.available()用法及代码示例
- Arduino Ethernet - EthernetUDP.read()用法及代码示例
- Arduino Ethernet - EthernetUDP.endPacket()用法及代码示例
- Arduino Ethernet - EthernetUDP.begin()用法及代码示例
- Arduino Ethernet - EthernetServer()用法及代码示例
- Arduino Ethernet - EthernetClient()用法及代码示例
- Arduino Ethernet - EthernetUDP.write()用法及代码示例
- Arduino Ethernet - server.begin()用法及代码示例
注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 Ethernet - Ethernet.begin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。