Skip to content
Snippets Groups Projects
Commit c3ef0617 authored by Jiaqi Zhao (Roy)'s avatar Jiaqi Zhao (Roy)
Browse files

changed ip address to roy's picar

parent 9b1df28a
No related branches found
No related tags found
1 merge request!1added wireframe callback function for Step 3
......@@ -2,7 +2,7 @@ document.onkeydown = updateKey;
document.onkeyup = resetKey;
var server_port = 65432;
var server_addr = "192.168.3.49"; // the IP address of your Raspberry PI
var server_addr = "100.85.99.31"; // the IP address of your Raspberry PI
function client(){
......
import socket
HOST = "172.16.213.108" # IP address of your Raspberry PI
HOST = "100.85.99.31" # IP address of your Raspberry PI
# HOST = "10.195.45.171"
PORT = 65432 # The port used by the server
......
import socket
HOST = "172.16.213.108" # IP address of your Raspberry PI
# HOST = "10.195.45.171"
HOST = "100.85.99.31" # IP address of your Raspberry PI
PORT = 65432 # Port to listen on (non-privileged ports are > 1023)
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment