MQTT: Report flash size at startup.
This commit is contained in:
		@@ -96,6 +96,7 @@ boolean mqtt_connect() {
 | 
			
		||||
	LOGln("MQTT * Connecting to MQTT server with client id %s", hostname);
 | 
			
		||||
	if (mqtt_client.connect(hostname, MQTT_USER, MQTT_PASS, MQTT_TOPIC "status", 0, true, "OFFLINE", true)) {
 | 
			
		||||
		LOGln("MQTT * Connected.");
 | 
			
		||||
		LOGln("Core * Flash chip id: 0x%X. Size: %d bytes. 'Real' size: %d bytes.", ESP.getFlashChipId(), ESP.getFlashChipSize(), ESP.getFlashChipRealSize());
 | 
			
		||||
		char buffer[40];
 | 
			
		||||
		snprintf(buffer, 40, "ONLINE %s %s", hostname, WiFi.localIP().toString().c_str());
 | 
			
		||||
		mqtt_client.publish(MQTT_TOPIC "status", buffer, true);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user