--- a/src/eric7/MicroPython/Devices/DeviceBase.py Sat May 06 16:22:17 2023 +0200 +++ b/src/eric7/MicroPython/Devices/DeviceBase.py Sat May 06 19:21:40 2023 +0200 @@ -1578,6 +1578,28 @@ """ return [], "" + def enableWebrepl(self, password): + """ + Public method to write the given WebREPL password to the connected device and + modify the start script to start the WebREPL server. + + @param password password needed to authenticate + @type str + @return tuple containing a flag indicating success and an error message + @rtype tuple of (bool, str) + """ + return False, "" + + def disableWebrepl(self): + """ + Public method to write the given WebREPL password to the connected device and + modify the start script to start the WebREPL server. + + @return tuple containing a flag indicating success and an error message + @rtype tuple of (bool, str) + """ + return False, "" + ################################################################## ## Methods below implement Ethernet related methods ##################################################################