Joint Level Control
extend_sensor_rosinterface.h
1 #ifndef EXTEND_SENSOR_ROS
2 #define EXTEND_SENSOR_ROS
3 
4 #include <string>
5 
6 // reads angle from the extend sensor of the leg
7 // returns the angle in radians (i think)
8 double readExtendAngle(const std::string& spi_device, uint8_t spi_cs_id, uint8_t spi_mode, uint8_t spi_bits, uint32_t spi_speed, uint16_t spi_delay);
9 
10 #endif