Ethernet.localIP()

名称

Ethernet.localIP()

説明

EthernetシールドのIPアドレスを取得する。DHCPを利用してIPアドレスを取得したときに有用である。

書式

IPAddress EthernetClass::localIP();

引数

なし。

戻り値

IPアドレス。

使用例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <SPI.h>
#include <Ethernet.h>

// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = {  
  0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 };

// Initialize the Ethernet client library
// with the IP address and port of the server
// that you want to connect to (port 80 is default for HTTP):
EthernetClient client;

void setup() {
  // start the serial library:
  Serial.begin(9600);
  // start the Ethernet connection:
  if (Ethernet.begin(mac) == 0) {
    Serial.println("Failed to configure Ethernet using DHCP");
    // no point in carrying on, so do nothing forevermore:
    for(;;)
      ;
  }
  // print your local IP address:
  Serial.println(Ethernet.localIP());

}

void loop() {

}

オリジナルのページ

https://www.arduino.cc/reference/en/libraries/ethernet/ethernet.localip/

最終更新日

January 7, 2024

inserted by FC2 system