move credentials into struct
This commit is contained in:
parent
6a2b4df655
commit
bb1a67c49d
4 changed files with 15 additions and 9 deletions
|
@ -19,7 +19,7 @@ void setup_wifi()
|
|||
void setup()
|
||||
{
|
||||
setup_wifi();
|
||||
firewall_api = new firewall::API(api_username, api_password, 8080);
|
||||
firewall_api = new firewall::API(api_username, api_password);
|
||||
}
|
||||
|
||||
void loop()
|
||||
|
|
Reference in a new issue