many updates..
new sensors.. display.. led.. drawing.. stuff..
This commit is contained in:
6
net/IP.h
6
net/IP.h
@@ -13,17 +13,17 @@
|
||||
ip_addr_t addr;
|
||||
|
||||
/** empty ctor */
|
||||
explicit IP() {
|
||||
explicit IP4() {
|
||||
addr.addr = 0;
|
||||
}
|
||||
|
||||
/** ctor with IP-string */
|
||||
explicit IP(const char* ipStr) {
|
||||
explicit IP4(const char* ipStr) {
|
||||
set(ipStr);
|
||||
}
|
||||
|
||||
/** ctor with ip_addr_t */
|
||||
explicit IP(ip_addr addr) : addr(addr) {
|
||||
explicit IP4(ip_addr addr) : addr(addr) {
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user