File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -3010,6 +3010,11 @@ void paintGettingKeys()
3010
3010
displayMessage (" Getting Keys" , 2000 );
3011
3011
}
3012
3012
3013
+ void paintGettingCredentials ()
3014
+ {
3015
+ displayMessage (" Getting Creds" , 2000 );
3016
+ }
3017
+
3013
3018
void paintEthernetConnected ()
3014
3019
{
3015
3020
displayMessage (" Ethernet Connected" , 1000 );
Original file line number Diff line number Diff line change @@ -1532,13 +1532,16 @@ void provisioningUpdate()
1532
1532
else if (networkConsumerIsConnected (NETCONSUMER_POINTPERFECT_KEY_UPDATE))
1533
1533
{
1534
1534
if (settings.debugPpCertificate )
1535
- systemPrintln (" PointPerfect key update connected to network" );
1535
+ systemPrintln (" PointPerfect key/credentials update connected to network" );
1536
1536
1537
1537
// Go get latest keys
1538
1538
ztpResponse = ZTP_NOT_STARTED; // HTTP_Client will update this
1539
1539
httpClientModeNeeded = true ; // This will start the HTTP_Client
1540
1540
provisioningStartTime_millis = millis (); // Record the start time so we can timeout
1541
- paintGettingKeys ();
1541
+ if (pointPerfectServiceUsesKeys () == true )
1542
+ paintGettingKeys ();
1543
+ else
1544
+ paintGettingCredentials ();
1542
1545
networkUserAdd (NETCONSUMER_POINTPERFECT_KEY_UPDATE, __FILE__, __LINE__);
1543
1546
provisioningSetState (PROVISIONING_STARTED);
1544
1547
}
You can’t perform that action at this time.
0 commit comments