controlSystems update

This commit is contained in:
RyandPark2006 2022-07-02 19:12:53 +00:00
parent e4f01fb263
commit 0ac8bc01bb
2 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
"""
This class keeps track of all the motors, sensors and import variables needed for the robot.
"""
class Propioception:
class Registry:
"""
Standard kwargs to give for this function
@ -25,7 +25,7 @@ class Propioception:
'left_shoulder_yaw': 0,
'left_shoulder_roll': 0,
'left_elbow_pitch': 0,
'right_shoulder_pitch': 0,
'right_shoulder_pit ch': 0,
'right_shoulder_yaw': 0,
'right_shoulder_roll': 0,
'right_elbow_pitch': 0,

View File

@ -5,7 +5,7 @@
# Updates sensor data through wifi and propiosense system
# 1 for executing the first action in the priority queue
from Propioception import *
from Registry import Registry
# from commands import *
import re
@ -21,6 +21,7 @@ class Receiver:
self.executions = []
self.transmit = []
self.data = []
self.registry = Registry(IMU = None, ping = None, mode = None, jointAngles = None, position = None, velocity = None)
self.timer = 0
self.HOST = host
self.PORT = port
@ -107,6 +108,9 @@ class Receiver:
def sensorData(self):
var = ""
delay(100)
# Test
# print("Inside")
# ser = serial.Serial('/dev/ttyACM0', 115200, timeout=1)