This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
JSD
/
TinyGSM_Senseright
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
implement IPAddress localIP()
v_master
Volodymyr Shymanskyy
7 years ago
parent
5b0e72f6bc
commit
8511ec054c
2 changed files
with
10 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
TinyGsmClientA6.h
+5
-1
TinyGsmClientSIM800.h
+ 5
- 1
TinyGsmClientA6.h
View File
@ -384,7 +384,11 @@ public:
return
res
;
}
IPAddress
localIP
(
)
TINY_GSM_ATTR_NOT_IMPLEMENTED
;
IPAddress
localIP
(
)
{
IPAddress
res
;
res
.
fromString
(
getLocalIP
(
)
)
;
return
res
;
}
/*
*
Phone
Call
functions
+ 5
- 1
TinyGsmClientSIM800.h
View File
@ -473,7 +473,11 @@ public:
return
res
;
}
IPAddress
localIP
(
)
TINY_GSM_ATTR_NOT_IMPLEMENTED
;
IPAddress
localIP
(
)
{
IPAddress
res
;
res
.
fromString
(
getLocalIP
(
)
)
;
return
res
;
}
/*
*
Phone
Call
functions
Write
Preview
Loading…
Cancel
Save