We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17533b commit 1e55a84Copy full SHA for 1e55a84
XRPLib/webserver.py
@@ -33,12 +33,12 @@ def __init__(self):
33
34
def start_server(self, robot_number:int):
35
"""
36
- Start the webserver. The network password is the same as the name
+ Start the webserver. The network password is "remote.xrp"
37
38
:param robot_number: The number of the robot, used to generate the access point name
39
:type robot_number: int
40
41
- self.access_point = access_point(f"XRP_{robot_number}", f"XRP_{robot_number}")
+ self.access_point = access_point(f"XRP_{robot_number}", "remote.xrp")
42
self.ip = network.WLAN(network.AP_IF).ifconfig()[0]
43
logging.info(f"Starting DNS Server at {self.ip}")
44
dns.run_catchall(self.ip)
0 commit comments