Created
October 4, 2019 03:10
-
-
Save devyte/15d661b1dba30878319275883cd60e32 to your computer and use it in GitHub Desktop.
ethernet network
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Network.h" | |
namespace Ethernet5100 | |
{ | |
class EthernetClass | |
{ | |
}; | |
using Client = Network::Client; | |
using Server = Network::Server; | |
using EthernetClient = Network::Client; | |
using EthernetServer = Network::Server; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Network.h" | |
namespace Ethernet5500 | |
{ | |
class EthernetClass | |
{ | |
}; | |
using Client = Network::Client; | |
using Server = Network::Server; | |
using EthernetClient = Network::Client; | |
using EthernetServer = Network::Server; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Network | |
{ | |
class Client | |
{ | |
}; | |
class Server | |
{ | |
}; | |
} // Network |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Network.h" | |
namespace Wlan | |
{ | |
class WiFiClass | |
{ | |
}; | |
using Client = Network::Client; | |
using Server = Network::Server; | |
using ESP8266WiFiClient = Network::Client; | |
using ESP8266WiFiServer = Network::Server; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment