On the Button Action I have put "/update". In the Code I have
server.on("/update", [](){
Serial.println("Updating...") ;
httpUpdater.setup(&server);
});
Where httpUpdater has been defined as - ESP8266HTTPUpdateServer httpUpdater;
On entering 192.168.xx.xx/update my Serial port responds as "Updating ......" but nothing happens on the Server. I expected it to display the "Browse button and the Uplod button" as in the WebUpdater example sketch
Obviously I am doing something silly. What is it I should do ?
Regards