sudo apt-get update && sudo apt-get install linuxptp
| camera_dim_width = 30; | |
| camera_dim_height = 50; | |
| camera_hole_width = 20; | |
| camera_hole_height = 20; | |
| camera_hole_dim = 2.5; | |
| camera_hole_nipple_h = 2; | |
| camera_hole_nipple_d = camera_hole_dim + 2; | |
| mount_hegiht = 12; | |
| UNC_Insert_D = 8.1; |
| ``` | |
| #usda 1.0 | |
| ( | |
| defaultPrim = "root" | |
| doc = "Blender v4.4.3" | |
| metersPerUnit = 1 | |
| upAxis = "X" | |
| ) | |
| def Xform "root" ( |
| #usda 1.0 | |
| ( | |
| defaultPrim = "root" | |
| doc = "Blender v4.4.3" | |
| metersPerUnit = 1 | |
| upAxis = "Z" | |
| ) | |
| def Xform "root" ( | |
| customData = { |
| cmake_minimum_required(VERSION 3.26) | |
| project(drake_project) | |
| # N.B. This is a temporary flag. It only really applies to Linux, as Mac | |
| # does not need X11. | |
| option(RUN_X11_TESTS "Run tests that require X11" OFF) | |
| include(CTest) |
| cmake_minimum_required(VERSION 3.26) | |
| project(mujco_test_app) | |
| set(CMAKE_CXX_STANDARD 17) | |
| set (MUJOCO_INSTALL_PATH /home/michalpelka/physics/mujoco_install/lib/cmake/) | |
| find_package(mujoco REQUIRED PATHS ${MUJOCO_INSTALL_PATH} NO_DEFAULT_PATH) | |
| find_package(glfw3 REQUIRED) |
| from pymodbus.client import ModbusTcpClient | |
| import struct | |
| import os | |
| # Define device connection | |
| client = ModbusTcpClient('127.0.0.1', port=502) # Change IP and port as needed | |
| # Connect to the device | |
| while client.connect(): | |
| num_registers = 12 |
| cmake_minimum_required(VERSION 3.10) | |
| project(WGS) | |
| add_executable(main main.cpp wgs84_do_puwg92.cc) | |
| cmake_minimum_required(VERSION 3.10) | |
| project(HelloCeres) | |
| # Find Ceres. | |
| find_package(Ceres REQUIRED) | |
| # Add executable. | |
| add_executable(hello_ceres hello_ceres.cpp) | |
| # Link Ceres to the target. |