facebook pixel מדריך: ספריה - Ethernet - מחלקת EthernetServer - www.4project.co.il
Main logo www.4project.co.il
כל הרכיבים לפרוייקט שלכם
עגלת קניות

העגלה ריקה

ספריה - Ethernet - מחלקת EthernetServer


2022-06-14 12:59:51
מחלקת EthernetServer מייצרת שרת שמקשיב לחיבורים חיצוניים על הפורט (port) שציינתם.

תחביר

קוד: בחר הכל
EthernetServer(port);

פרמטרים:
port - מספר הפורט עליו השרת יקשיב להתחברויות. מסוג int.

פונקציה זו לא מחזירה ערכים.


דוגמה

קוד: בחר הכל
#include <SPI.h>
#include <Ethernet.h>

// network configuration.  gateway and subnet are optional.

// 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 };   
// the router's gateway address:
byte gateway[] = { 10, 0, 0, 1 };
// the subnet:
byte subnet[] = { 255, 255, 0, 0 };

// telnet defaults to port 23
EthernetServer server = EthernetServer(23);

void setup()
{
  // initialize the ethernet device
  Ethernet.begin(mac, ip, gateway, subnet);

  // start listening for clients
  server.begin();
}

void loop()
{
  // if an incoming client connects, there will be bytes available to read:
  EthernetClient client = server.available();
  if (client == true) {
    // read bytes from the incoming client and write them back
    // to any clients connected to the server:
    server.write(client.read());
  }
}



ראו גם:

Ethernet

פירוט שפת תכנות לסביבת Arduino


עמוד זה הוא תרגום של ()EthernetServer  לפי רישיון Creative Commons Attribution-ShareAlike 3.0.