8000 Add capability to have light static DHCP lease by SmartBlug · Pull Request #5594 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Add capability to have light static DHCP lease #5594

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 25, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update StaticLease to IPv4
  • Loading branch information
SmartBlug committed Jan 19, 2019
commit 06356b6e75f56fe2b75d6e3ea5abfcc165597348
2 changes: 1 addition & 1 deletion libraries/ESP8266WiFi/examples/StaticLease/StaticLease.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void handleRoot() {
char wifiClientMac[18];
unsigned char number_client;
struct station_info *stat_info;
struct ip_addr *IPaddress;
struct ip4_addr *IPaddress;

IPAddress address;
int i = 1;
Expand Down
0