Skip to content

Instantly share code, notes, and snippets.

View hexagon-robotics's full-sized avatar

Hexagon Robotics hexagon-robotics

View GitHub Profile
@hexagon-robotics
hexagon-robotics / socketMissionFX.py
Created August 31, 2016 02:04
µBERRY socket test
#!/usr/bin/python
import socket
import sys
import _thread as thread
HOST = '' # Symbolic name meaning all available interfaces
PORT = 8888 # Arbitrary non-privileged port
missionSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print ("MissionFX Socket created")