File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -1470,17 +1470,12 @@ void displayBatteryVsEthernet(std::vector<iconPropertyBlinking> *iconList)
1470
1470
paintBatteryLevel (iconList);
1471
1471
else // if (present.ethernet_ws5500 == true)
1472
1472
{
1473
- if (online.ethernetStatus == ETH_NOT_STARTED )
1474
- return ; // If Ethernet has not stated because not needed, don't display the icon
1473
+ if (online.ethernetStatus != ETH_CONNECTED )
1474
+ return ; // Only display the Ethernet icon if we are successfully connected (no blinking)
1475
1475
1476
1476
iconPropertyBlinking prop;
1477
1477
prop.icon = EthernetIconProperties.iconDisplay [present.display_type ];
1478
-
1479
- if (online.ethernetStatus == ETH_CONNECTED)
1480
- prop.duty = 0b11111111 ;
1481
- else
1482
- prop.duty = 0b01010101 ;
1483
-
1478
+ prop.duty = 0b11111111 ;
1484
1479
iconList->push_back (prop);
1485
1480
}
1486
1481
}
@@ -2812,7 +2807,7 @@ void paintGettingKeys()
2812
2807
2813
2808
void paintGettingEthernetIP ()
2814
2809
{
2815
- displayMessage (" Getting IP" , 0 );
2810
+ displayMessage (" Getting IP" , 1000 );
2816
2811
}
2817
2812
2818
2813
// If an L-Band is indoors without reception, we have a ~2s wait for the RTC to come online
You can’t perform that action at this time.
0 commit comments