コード例 #1
0
def pozyx_pose_pub(port1, port2):
    global distance
    pub = rospy.Publisher('/mavros/vision_pose/pose',
                          PoseStamped,
                          queue_size=40)
    try:
        pozyx1 = PozyxSerial(port1)
    except:
        rospy.loginfo("Pozyx 1 not connected")
        return
    try:
        pozyx2 = PozyxSerial(port2)
    except:
        rospy.loginfo("Pozyx 2 not connected")
        return
    pozyx1.setPositionFilter(filter, 3)
    pozyx2.setPositionFilter(filter, 3)
    pos1 = Coordinates()
    pos2 = Coordinates()
    pose = PoseStamped()
    pose.header.frame_id = "map"
    pose.header.stamp = rospy.Time.now()
    yaw = 0.
    pos1_old = copy.copy(pos1)
    pos2_old = copy.copy(pos2)
    yaw_old = 0.

    while not rospy.is_shutdown():

        status1 = pozyx1.doPositioning(pos1,
                                       dimension=dimension,
                                       algorithm=algorithm)
        time_delta1 = (rospy.Time.now() - pose.header.stamp).to_sec()
        if (status1 == POZYX_SUCCESS
                and distance_2d(pos1, pos1_old) < time_delta1 * max_speed):
            status2 = pozyx2.doPositioning(pos2,
                                           dimension=dimension,
                                           algorithm=algorithm)
            time_delta2 = (rospy.Time.now() - pose.header.stamp).to_sec()
            yaw = atan2(pos2.y - pos1.y, pos2.x - pos1.x) + radians(tag_rot)
            if (status2 == POZYX_SUCCESS
                    and distance_2d(pos2, pos2_old) < time_delta2 * max_speed
                    and
                    distance_2d(pos1, pos2) < tag_distance + 2 * pozyx_error
                    and abs(degrees(yaw - yaw_old)) < time_delta2 *
                    max_rot_speed):  # simple out-of-range value filter
                pose.pose.position = Point((pos1.x + pos2.x) / 1000.,
                                           (pos1.y + pos2.y) / 1000., distance)
                pose.pose.orientation = Quaternion(
                    *quaternion_from_euler(0, 0, yaw))
                pose.header.stamp = rospy.Time.now()
                pub.publish(pose)
                #print distance_2d(pos1, pos1_old), time_delta1*max_speed, distance_2d(pos2, pos2_old), time_delta2*max_speed, distance_2d(pos1, pos2), tag_distance + 2*pozyx_error, yaw_old, yaw
                pos1_old = copy.copy(pos1)
                pos2_old = copy.copy(pos2)
                yaw_old = yaw
                if enable_logging:
                    rospy.loginfo(
                        "POS: %s, QUAT: %s" %
                        (str(pose.pose.position), str(pose.pose.orientation)))
コード例 #2
0
    def __init__(self, anchors):
        self.serial = PozyxSerial(self.getSerialport)
        self.anchors = anchors

        # position calculation algorithm and tracking dimension
        self.algorithm = PozyxConstants.POSITIONING_ALGORITHM_UWB_ONLY
        self.dimension = PozyxConstants.DIMENSION_3D
コード例 #3
0
ファイル: PiCoordinatesDB.py プロジェクト: weber55/Capstone
def main():
    
    serial_port = get_first_pozyx_serial_port()
    if serial_port is None:
        print("No Pozyx connected. Check your USB cable or your driver!")
        quit()
    remote_id = 0x1234                 # remote device network ID
    remote = False                     # whether to use a remote device
    if not remote:
        remote_id = None
    use_processing = True              # enable to send position data through OSC
    ip = "127.0.0.1"                   # IP for the OSC UDP
    network_port = 8888                # network port for the OSC UDP
    osc_udp_client = None
    if use_processing:
        osc_udp_client = SimpleUDPClient(ip, network_port)
    anchors = [DeviceCoordinates(0x6E2A, 1, Coordinates(0, 0, 3175)),
               DeviceCoordinates(0x6E0E, 1, Coordinates(0, 4114, 3175)),
               DeviceCoordinates(0x697F, 1, Coordinates(3429, 0, 3175)),
               DeviceCoordinates(0x6E6F, 1, Coordinates(3429, 4114, 3175))]
    algorithm = POZYX_POS_ALG_UWB_ONLY  # positioning algorithm to use
    dimension = POZYX_3D                # positioning dimension
    height = 1000 # height of device, required in 2.5D positioning
    
    pozyx = PozyxSerial(serial_port)
    r = ReadyToLocalize(pozyx, osc_udp_client, anchors, algorithm, dimension, height, remote_id)
    r.setup()
    while 1:
        r.loop()
        if not GPIO.input(buttonPin):
            in_use()
        maintenance = format_time()
        data = {"ID": Id, "X": x, "Y": y, "InUse": inUse, "Maintenance": maintenance}
        firebase.post('/Ventilator', data)
        time.sleep(5)
コード例 #4
0
ファイル: pozyx.py プロジェクト: Romplex/autonomous-drones
def doSomething():
    port = get_first_pozyx_serial_port()
    print('Port:', port)
    p = PozyxSerial(port)

    whoami = SingleRegister()
    p.regRead(POZYX_WHO_AM_I, whoami)

    print('WhoAmI:', whoami)
    return port, whoami.data
コード例 #5
0
ファイル: hello.py プロジェクト: SportaFYP/local
    def run(self):
        pozyx = PozyxSerial(get_first_pozyx_serial_port())

        global RID

        r = PozyxControl(pozyx, tag_ids, anchors, RID, algorithm, dimension, height)
        r.setup()

        while isRecording:
            r.loop()
コード例 #6
0
def setup_poszyx(config_data):
    # TODO: clean out
    # shortcut to not have to find out the port yourself
    serial_port = get_serial_ports()[1].device

    remote_id = hex_string_to_hex(config_data.get(
        "remote_device")) if config_data.get("remote_device") else None

    # TODO: still not sure what it does
    # use_processing = True             # enable to send position data through OSC
    # ip = "127.0.0.1"                   # IP for the OSC UDP
    # network_port = 8888                # network port for the OSC UDP
    osc_udp_client = None
    # if use_processing:
    #     osc_udp_client = SimpleUDPClient(ip, network_port)

    anchors = []

    for anchor in config_data["anchors"]:
        # necessary data for calibration, change the IDs and coordinates yourself
        device_coordinates = DeviceCoordinates(
            hex_string_to_hex(anchor["label"]), anchor["type"],
            Coordinates(anchor["coordinates"]["x-value"],
                        anchor["coordinates"]["y-value"],
                        anchor["coordinates"]["z-value"]))
        anchors.append(device_coordinates)

    # TODO check which algorithm is BEST
    algorithm = POZYX_POS_ALG_TRACKING  # positioning algorithm to use
    dimension = POZYX_3D  # positioning dimension

    #algorithm = POZYX_POS_ALG_UWB_ONLY  # positioning algorithm to use
    #dimension = POZYX_2_5D

    # TODO check what is needed
    height = config_data[
        "moving_device_height"]  # height of device, required in 2.5D positioning

    # setup
    pozyx = PozyxSerial(serial_port)

    localizer_instance = ReadyToLocalize(pozyx, osc_udp_client, anchors,
                                         algorithm, dimension, height,
                                         remote_id)
    localizer_instance.setup()

    sensor_data = None
    if config_data.get("sensor_data"):
        sensor_data = Orientation3D(pozyx, osc_udp_client, remote_id)
        sensor_data.setup()

    return {"localizer": localizer_instance, "sensor_data": sensor_data}
コード例 #7
0
ファイル: Pozyx_GPS.py プロジェクト: Chase1325/IFUTR
    def __init__(self, anchors):

        self.serial_port = get_first_pozyx_serial_port()
        print(self.serial_port)
        if self.serial_port is None:
            print("No Pozyx connected. Check your USB cable or your driver!")

        self.pozyx = PozyxSerial(self.serial_port)
        #print(self.serial_port)

        if (anchors.get('count') == 4):

            self.anchors = [
                DeviceCoordinates(
                    0x6110, 1,
                    Coordinates(
                        anchors.get('0x6110')[0],
                        anchors.get('0x6110')[1],
                        anchors.get('0x6110')[2])),
                DeviceCoordinates(
                    0x6115, 1,
                    Coordinates(
                        anchors.get('0x6115')[0],
                        anchors.get('0x6115')[1],
                        anchors.get('0x6115')[2])),
                DeviceCoordinates(
                    0x6117, 1,
                    Coordinates(
                        anchors.get('0x6117')[0],
                        anchors.get('0x6117')[1],
                        anchors.get('0x6117')[2])),
                DeviceCoordinates(
                    0x611e, 1,
                    Coordinates(
                        anchors.get('0x611e')[0],
                        anchors.get('0x611e')[1],
                        anchors.get('0x611e')[2]))
            ]

        self.algorithm = PozyxConstants.POSITIONING_ALGORITHM_UWB_ONLY
        self.dimension = PozyxConstants.DIMENSION_3D
        self.height = 1000

        #self.pub = rospy.Publisher('/mavros/mocap/pose', PoseStamped, queue_size=10)
        self.pub = rospy.Publisher('/pose', PoseStamped, queue_size=10)
        self.pose = PoseStamped()

        self.subZ = rospy.Subscriber('range', Int16, self.rangeCallback)
コード例 #8
0
ファイル: Controller.py プロジェクト: Zyklop/PiHome
    def __init__(self, anchors):

        self.anchors = [DeviceCoordinates()]
        self.anchors = anchors

        self.port = get_first_pozyx_serial_port()
        if self.port is None:
            self.error = "No Pozyx connected"
            return

        self.pozyx = PozyxSerial(self.port)
        networkId = NetworkID()
        status = self.pozyx.getNetworkId(networkId)
        self.id = networkId.id
        self.CheckStatus(status)
        self.ConfigureAnchor(self.id)
コード例 #9
0
    def __init__(self):
        super().__init__("range_debugger")
        self.range_pub = self.create_publisher(String, "range", 10)
        self.position_pub = self.create_publisher(Odometry, "odometry/pozyx",
                                                  1000)
        self.markers_pub = self.create_publisher(MarkerArray,
                                                 "odometry/pozyx/markers", 10)
        # serial port setting
        serial_port = "/dev/ttyACM0"
        seiral_port = get_first_pozyx_serial_port()
        if serial_port is None:
            print("No Pozyx connected. CHeck your USB cable or your driver!")
            quit()

        self.pozyx = PozyxSerial(serial_port)

        # remote and destination
        # But sorry, just 1 tag is useable.
        # "None" is setting for use USB-connected tag, "0xXX"(tag id) is to use remote tag.
        self.tag_ids = [None]  # TODO: To use multiple tags

        self.ranging_protocol = PozyxConstants.RANGE_PROTOCOL_PRECISION
        self.range_timer_ = self.create_timer(0.02, self.range_callback)

        self.anchors = [
            # DeviceCoordinates(0x605b, 1, Coordinates(   0, 0, 0)),  # test
            # DeviceCoordinates(0x603b, 1, Coordinates( 800, 0, 0)),  # test
            DeviceCoordinates(0x6023, 1, Coordinates(-13563, -8838,
                                                     475)),  # ROOM
            DeviceCoordinates(0x6e23, 1, Coordinates(-3327, -8849,
                                                     475)),  # ROOM
            DeviceCoordinates(0x6e49, 1, Coordinates(-3077, -2959,
                                                     475)),  # ROOM
            # DeviceCoordinates(0x6e58, 1, Coordinates( -7238, -3510, 475)),  # ROOM
            DeviceCoordinates(0x6050, 1, Coordinates(-9214, -9102,
                                                     475)),  # ROOM
        ]

        self.algorithm = PozyxConstants.POSITIONING_ALGORITHM_UWB_ONLY
        self.dimension = PozyxConstants.DIMENSION_2D
        self.height = 475

        self.setup()
コード例 #10
0
    if check_pypozyx_version:
        perform_latest_version_check()

    # hardcoded way to assign a serial port of the Pozyx
    serial_port = 'COM12'

    # the easier way
    serial_port = get_first_pozyx_serial_port()
    if serial_port is None:
        print("No Pozyx connected. Check your USB cable or your driver!")
        quit()

    remote_id = 0x605D  # the network ID of the remote device
    remote = False  # whether to use the given remote device for ranging
    if not remote:
        remote_id = None

    destination_id = 0x6e66  # network ID of the ranging destination
    # distance that separates the amount of LEDs lighting up.
    range_step_mm = 1000

    # the ranging protocol, other one is PozyxConstants.RANGE_PROTOCOL_PRECISION
    ranging_protocol = PozyxConstants.RANGE_PROTOCOL_PRECISION

    pozyx = PozyxSerial(serial_port)
    r = ReadyToRange(pozyx, destination_id, range_step_mm, ranging_protocol,
                     remote_id)
    r.setup()
    while True:
        r.loop()
コード例 #11
0
#import pypozyx
import sys, time
from pypozyx import PozyxSerial, get_first_pozyx_serial_port, POZYX_SUCCESS, SingleRegister, EulerAngles, Acceleration, UWBSettings
#pozyx = PozyxLib()  # PozyxSerial has PozyxLib's functions, just for generality
CURSOR_UP_ONE = '\x1b[1A'
ERASE_LINE = '\x1b[2K'
is_cursor_up = False
#print(pypozyx.get_first_pozyx_serial_port())
pozyx = PozyxSerial(get_first_pozyx_serial_port())
who_am_i = SingleRegister()
# get the data, passing along the container
status = pozyx.getWhoAmI(who_am_i)
acceleration = Acceleration()
euler_angles = EulerAngles()
uwb_settings = UWBSettings()

# check the status to see if the read was successful. Handling failure is covered later.
if status == POZYX_SUCCESS:
    # print the container. Note how a SingleRegister will print as a hex string by default.
    print('Who Am I: {}'.format(who_am_i))  # will print '0x43'

while True:
    # initalize the Pozyx as above

    # initialize the data container

    # and repeat
    # initialize the data container
    # get the data, passing along the container
    if is_cursor_up:
        sys.stdout.write(CURSOR_UP_ONE)
コード例 #12
0
ファイル: pozyx.py プロジェクト: ANRGUSC/TurtleNet_Bringup
                self.anchor2_truepose = Pose()
                self.anchor2_truepose = states.pose[index]
                found +=1
        if found == 4:
            return True
        else:
            return False

if __name__ == '__main__':
    try:
        sim = (sys.argv[1] == "True" or sys.argv[1] == "true")
        if not sim:
            p = None
            ports = get_pozyx_ports()
            for i in range(len(ports)):
                try:
                    if ports[i] != os.environ['CORE_PORT']:
                        p = PozyxSerial(ports[i])
                        break
                except:
                    pass
            if p is None:
                quit()
            p.printDeviceInfo()
        else:
            p = None

        Pozyx(sim,p)
    except rospy.ROSInterruptException:
        pass
コード例 #13
0
class MultitagPositioning(object):
    """Continuously performs multitag positioning"""
    def nicksThing():
        def __init__(self,
                     pozyx,
                     osc_udp_client,
                     tag_ids,
                     anchors,
                     algorithm=PozyxConstants.POSITIONING_ALGORITHM_UWB_ONLY,
                     dimension=PozyxConstants.DIMENSION_3D,
                     height=1000):
            self.pozyx = pozyx
            self.osc_udp_client = osc_udp_client

            self.tag_ids = tag_ids
            self.anchors = anchors
            self.algorithm = algorithm
            self.dimension = dimension
            self.height = height

        def setup(self):
            """Sets up the Pozyx for positioning by calibrating its anchor list."""
            print("------------POZYX MULTITAG POSITIONING V{} -------------".
                  format(version))
            print("")
            print(" - System will manually calibrate the tags")
            print("")
            print(" - System will then auto start positioning")
            print("")
            if None in self.tag_ids:
                for device_id in self.tag_ids:
                    self.pozyx.printDeviceInfo(device_id)
            else:
                for device_id in [None] + self.tag_ids:
                    self.pozyx.printDeviceInfo(device_id)
            print("")
            print("------------POZYX MULTITAG POSITIONING V{} -------------".
                  format(version))
            print("")

            self.setAnchorsManual()

            self.printPublishAnchorConfiguration()

        def loop(self):
            """Performs positioning and prints the results."""
            for tag_id in self.tag_ids:
                position = Coordinates()
                status = self.pozyx.doPositioning(position,
                                                  self.dimension,
                                                  self.height,
                                                  self.algorithm,
                                                  remote_id=tag_id)
                if status == POZYX_SUCCESS:
                    self.printPublishPosition(position, tag_id)
                else:
                    self.printPublishErrorCode("positioning", tag_id)

        # WORK IN PROGRESS: First attempt at making a function to collect and store the x, y, and z coordinates globally
        """def giveUsDemCoordyBois(self, position, network_id):
            #hopefully gives us the coordinates to be able to access outside of the class
            x_position = position.x;
            y_position = position.y;
            z_position = position.z;
            
            print(x_position);
            print(y_position);
            print(z_position);"""

        def printPublishPosition(self, position, network_id):
            """Prints the Pozyx's position and possibly sends it as a OSC packet"""
            if network_id is None:
                network_id = 0
            s = "POS ID: {}, x(mm): {}, y(mm): {}, z(mm): {}".format(
                "0x%0.4x" % network_id, position.x, position.y, position.z)

            print(s)
            if self.osc_udp_client is not None:
                self.osc_udp_client.send_message(
                    "/position",
                    [network_id, position.x, position.y, position.z])

            #NOTE: front tag is the tag connected to the Pi(0x673c/0x0000) and back tag is connected to external power source
            if network_id == 0x0000:  #if the tag that is having its coordinates measured is the one connected to the Pi
                global x_position_front  #indicate to program that the global variable for the front tag's x-position is to be used
                global y_position_front  #indicate to program that the global variable for the front tag's y-position is to be used
                global z_position_front  #indicate to program that the global variable for the front tag's z-position is to be used
                x_position_front = position.x
                #set the x-position of the front tag to the x-value output by the Pozyx
                y_position_front = position.y
                #set the y-position of the front tag to the y-value output by the Pozyx
                z_position_front = position.z
                #set the z-position of the front tag to the z-value output by the Pozyx
                print(x_position_front)
                #output the front tag's x-position
                print(y_position_front)
                #output the front tag's y-position
                print(z_position_front)
                #output the front tag's z-position
            else:  #otherwise, if the tag that is having its coordinates measured is the one connected to the external power source
                global x_position_back  #indicate to program that the global variable for the back tag's x-position is to be used
                global y_position_back  #indicate to program that the global variable for the back tag's y-position is to be used
                global z_position_back  #indicate to program that the global variable for the back tag's z-position is to be used
                x_position_back = position.x
                #set the x-position of the back tag to the x-value output by the Pozyx
                y_position_back = position.y
                #set the y-position of the back tag to the y-value output by the Pozyx
                z_position_back = position.z
                #set the z-position of the back tag to the z-value output by the Pozyx
                print(x_position_back)
                #output the back tag's x-position
                print(y_position_back)
                #output the back tag's y-position
                print(z_position_back)
                #output the back tag's z-position

            #print("THE LOOP HAS BEEN EXITED"); FOR TESTING: print a statement that will allow us to see how exactly the loop
            #  running the main body is working and where it is at in its execution
            '''NOTE: The following print statements were used previously to check if the global variables for x, y, and z
            were being set to the Pozyx's outputs:
            print(x_position);
            print(y_position);
            print(z_position);'''

        def setAnchorsManual(self):
            """Adds the manually measured anchors to the Pozyx's device list one for one."""
            for tag_id in self.tag_ids:
                status = self.pozyx.clearDevices(tag_id)
                for anchor in self.anchors:
                    status &= self.pozyx.addDevice(anchor, tag_id)
                if len(anchors) > 4:
                    status &= self.pozyx.setSelectionOfAnchors(
                        PozyxConstants.ANCHOR_SELECT_AUTO, len(anchors))
                # enable these if you want to save the configuration to the devices.

        def printPublishConfigurationResult(self, status, tag_id):
            """Prints the configuration explicit result, prints and publishes error if one occurs"""
            if tag_id is None:
                tag_id = 0
            if status == POZYX_SUCCESS:
                print("Configuration of tag %s: success" % tag_id)
            else:
                self.printPublishErrorCode("configuration", tag_id)

        def printPublishErrorCode(self, operation, network_id):
            """Prints the Pozyx's error and possibly sends it as a OSC packet"""
            error_code = SingleRegister()
            status = self.pozyx.getErrorCode(error_code, network_id)
            if network_id is None:
                network_id = 0
            if status == POZYX_SUCCESS:
                print("Error %s on ID %s, %s" %
                      (operation, "0x%0.4x" % network_id,
                       self.pozyx.getErrorMessage(error_code)))
                if self.osc_udp_client is not None:
                    self.osc_udp_client.send_message(
                        "/error_%s" % operation, [network_id, error_code[0]])
            else:
                # should only happen when not being able to communicate with a remote Pozyx.
                self.pozyx.getErrorCode(error_code)
                print("Error % s, local error code %s" %
                      (operation, str(error_code)))
                if self.osc_udp_client is not None:
                    self.osc_udp_client.send_message("/error_%s" % operation,
                                                     [0, error_code[0]])

        def printPublishAnchorConfiguration(self):
            for anchor in self.anchors:
                print("ANCHOR,0x%0.4x,%s" %
                      (anchor.network_id, str(anchor.pos)))
                if self.osc_udp_client is not None:
                    self.osc_udp_client.send_message("/anchor", [
                        anchor.network_id, anchor.pos.x, anchor.pos.y,
                        anchor.pos.z
                    ])
                    sleep(0.025)

    if __name__ == "__main__":
        # Check for the latest PyPozyx version. Skip if this takes too long or is not needed by setting to False.
        check_pypozyx_version = True
        if check_pypozyx_version:
            perform_latest_version_check()

        # shortcut to not have to find out the port yourself.
        serial_port = get_first_pozyx_serial_port()
        if serial_port is None:
            print("No Pozyx connected. Check your USB cable or your driver!")
            quit()

        # enable to send position data through OSC
        use_processing = True

        # configure if you want to route OSC to outside your localhost. Networking knowledge is required.
        ip = "127.0.0.1"
        network_port = 8888

        # IDs of the tags to position, add None to position the local tag as well.
        tag_ids = [None, 0x6728]

        # necessary data for calibration
        anchors = [
            DeviceCoordinates(0x6e09, 1, Coordinates(0, 0, 0)),
            DeviceCoordinates(0x674c, 1, Coordinates(1650, 0, 0)),
            DeviceCoordinates(0x6729, 1, Coordinates(0, 480, 0)),
            DeviceCoordinates(0x6765, 1, Coordinates(1650, 480, 0))
        ]

        # positioning algorithm to use, other is PozyxConstants.POSITIONING_ALGORITHM_TRACKING
        algorithm = PozyxConstants.POSITIONING_ALGORITHM_UWB_ONLY
        # positioning dimension. Others are PozyxConstants.DIMENSION_2D, PozyxConstants.DIMENSION_2_5D
        dimension = PozyxConstants.DIMENSION_2D
        # height of device, required in 2.5D positioning
        height = 1000

        osc_udp_client = None
        if use_processing:
            osc_udp_client = SimpleUDPClient(ip, network_port)

        pozyx = PozyxSerial(serial_port)

        r = MultitagPositioning(pozyx, osc_udp_client, tag_ids, anchors,
                                algorithm, dimension, height)
        r.setup()
        while True:
            r.loop()
            print("THE FRONT X POSITION IS:" + str(x_position_front))
            #used to see if the x-positions of the front tag were correct
            print("THE FRONT Y POSITION IS:" + str(y_position_front))
            #used to see if the y-positions of the front tag were correct
            print("THE FRONT Z POSITION IS:" + str(z_position_front))
            #used to see if the z-positions of the front tag were correct
            print("THE BACK X POSITION IS:" + str(x_position_front))
            #used to see if the x-positions of the back tag were correct
            print("THE BACK Y POSITION IS:" + str(y_position_front))
            #used to see if the y-positions of the back tag were correct
            print("THE BACK Z POSITION IS:" + str(z_position_front))
            #used to see if the z-positions of the back tag were correct
            y = int(y_position_front)
            x = int(x_position_front)

            #break; #NOTE: this was previously used to end the execution of the Pozyx measuring to see if the new variables were working
    #Previously used to check if the global variables for the x, y, and z coordinates were functioning properly:
    #print(x_position);
    #print(y_position);
#print(z_position);'''
        import RPi.GPIO as GPIO  #Pin setup for Entire Pi
        import time
        import curses  #User Interface
        import serial
        #pin setup
        GPIO.setmode(GPIO.BOARD)
        GPIO.setup(13, GPIO.OUT)
        GPIO.setup(22, GPIO.OUT)
        GPIO.setup(15, GPIO.OUT)
        GPIO.setup(18, GPIO.OUT)

        #motor varibles
        FR = GPIO.PWM(13,
                      50)  #Front Right Motor #The value 50 is the Frequency
        FL = GPIO.PWM(22, 50)  #Front Left Motor #The value 12 is the GPIO pin
        RR = GPIO.PWM(15, 50)  #Rear Right Motor
        RL = GPIO.PWM(18, 50)  #Rear Left Motor
        FR.start(100)
        FL.start(100)
        RR.start(100)
        RL.start(100)
        #curses setup
        #screen = curses.initscr()
        #curses.noecho()
        #curses.cbreak()
        #screen.keypad(True)
        #User Interface
        print('...Loading...')
        while True:
            #getUpdatedCoordinates()
            print(y_position_front)
            nicksThing()
            if int(y_position_front) > 1400:
                FR.ChangeDutyCycle(100)
                FL.ChangeDutyCycle(100)
                RR.ChangeDutyCycle(100)
                RL.ChangeDutyCycle(100)
                print('Almost there')
                break
            else:
                print(y_position_front)
                FR.ChangeDutyCycle(6.5)
                FL.ChangeDutyCycle(8)
                RR.ChangeDutyCycle(6.5)
                RL.ChangeDutyCycle(8)
        while True:
            print("turning 90 degrees left")
            FR.ChangeDutyCycle(5)
            FL.ChangeDutyCycle(5)
            RR.ChangeDutyCycle(5)
            RL.ChangeDutyCycle(5)
            time.sleep(.68)
            FR.ChangeDutyCycle(100)
            FL.ChangeDutyCycle(100)
            RR.ChangeDutyCycle(100)
            RL.ChangeDutyCycle(100)
            break
        while True:
            #getUpdatedCoordinates()
            print(x_position_front)
            nicksThing()
            if (x_position_front) > (1400):
                FR.ChangeDutyCycle(100)
                FL.ChangeDutyCycle(100)
                RR.ChangeDutyCycle(100)
                RL.ChangeDutyCycle(100)
                print('Arrived')
                break
            else:
                print(x_position_front)
                FR.ChangeDutyCycle(6.5)
                FL.ChangeDutyCycle(8)
                RR.ChangeDutyCycle(6.5)
                RL.ChangeDutyCycle(8)
                print("tada!")

            #cleanup
            GPIO.cleanup
            curses.nobreak()
            screen.keypad(0)
            curses.echo()
            curses.endwin()
コード例 #14
0
ファイル: pyTest.py プロジェクト: JensPeeters/LUWB
from pypozyx import PozyxSerial
port = '/dev/ttyACM0'  # on UNIX systems this will be '/dev/ttyACMX'
p = PozyxSerial(port)
コード例 #15
0
    def __init__(self, mpstate):
        """Initialise module"""
        super(BeaconToGPS, self).__init__(mpstate, "BeaconToGPS", "")
        self.anchor_config = None

        self.config_file_parser = ConfigParser.ConfigParser()
        self.config_file_parser.read(os.getcwd() + '/config/uwb_config.conf')

        self.anchor_config = self.config_file_parser.get(
            "Anchor", "anchor_coordinates")
        if self.anchor_config is None:
            print("Need set the anchor coordinate!")
            return

        self.yaw_deg = self.config_file_parser.getfloat(
            "NED", "yaw_form_ned_to_uwb")
        if self.yaw_deg is None:
            print("Need set the yaw from ned to uwb!")
            return
        else:
            print("NED to UWB yaw:" + str(self.yaw_deg) + " deg")

        self.debug = 0
        self.debug = self.config_file_parser.getint("SYS", "debug")
        if self.debug is None:
            self.debug = 0

        serial_port_dev = get_first_pozyx_serial_port()
        if serial_port_dev is None:
            print("No Pozyx connected. Check your USB cable or your driver!")
            return

        self.pozyx = PozyxSerial(serial_port_dev)
        self.anchors = self.anchor_config[1:len(self.anchor_config) -
                                          1].split(";")

        self.anchor_list = []
        self.position = Coordinates()
        self.velocity = Coordinates()
        self.pos_last = Coordinates()
        self.pos_last_time = 0
        self.setup_pozyx()

        self.CONSTANTS_RADIUS_OF_EARTH = 6378100.0
        self.DEG_TO_RAD = 0.01745329251994329576
        self.RAD_TO_DEG = 57.29577951308232087679
        self.reference_lat = 36.26586666666667
        self.reference_lon = 120.27563333333333
        self.reference_lat_rad = self.reference_lat * self.DEG_TO_RAD
        self.reference_lon_rad = self.reference_lon * self.DEG_TO_RAD
        self.cos_lat = math.cos(self.reference_lat_rad)
        self.target_lon_param = self.CONSTANTS_RADIUS_OF_EARTH * self.cos_lat
        self.current_lat = 0
        self.current_lon = 0
        self.tag_pos_ned = Coordinates()
        self.tag_velocity_ned = Coordinates()
        self.yaw = math.radians(self.yaw_deg)
        self.cos_yaw = math.cos(self.yaw)
        self.sin_yaw = math.sin(self.yaw)
        self.location_update = False
        self.location_update_time = 0
        self.pos_update_time = 0
        self.location_update_freq = 8
        self.data = {
            'time_usec':
            0,  # (uint64_t) Timestamp (micros since boot or Unix epoch)
            'gps_id': 0,  # (uint8_t) ID of the GPS for multiple GPS inputs
            'ignore_flags': self.
            IGNORE_FLAG_ALL,  # (uint16_t) Flags indicating which fields to ignore (see GPS_INPUT_IGNORE_FLAGS enum). All other fields must be provided.
            'time_week_ms':
            0,  # (uint32_t) GPS time (milliseconds from start of GPS week)
            'time_week': 0,  # (uint16_t) GPS week number
            'fix_type':
            0,  # (uint8_t) 0-1: no fix, 2: 2D fix, 3: 3D fix. 4: 3D with DGPS. 5: 3D with RTK
            'lat': 0,  # (int32_t) Latitude (WGS84), in degrees * 1E7
            'lon': 0,  # (int32_t) Longitude (WGS84), in degrees * 1E7
            'alt':
            0,  # (float) Altitude (AMSL, not WGS84), in m (positive for up)
            'hdop': 0,  # (float) GPS HDOP horizontal dilution of position in m
            'vdop': 0,  # (float) GPS VDOP vertical dilution of position in m
            'vn':
            0,  # (float) GPS velocity in m/s in NORTH direction in earth-fixed NED frame
            've':
            0,  # (float) GPS velocity in m/s in EAST direction in earth-fixed NED frame
            'vd':
            0,  # (float) GPS velocity in m/s in DOWN direction in earth-fixed NED frame
            'speed_accuracy': 0,  # (float) GPS speed accuracy in m/s
            'horiz_accuracy': 0,  # (float) GPS horizontal accuracy in m
            'vert_accuracy': 0,  # (float) GPS vertical accuracy in m
            'satellites_visible': 0  # (uint8_t) Number of satellites visible.
        }
コード例 #16
0
ファイル: get_data.py プロジェクト: guantouu/ros_guide_car
 def __init__(self):
     self.pozyx = PozyxSerial(get_first_pozyx_serial_port())
     self.direct = EulerAngles()
     self.position = Coordinates()