Statistics
| Branch: | Tag: | Revision:

humotion / examples / yarp_icub / src / icub_data_receiver.cpp @ 7adf90be

History | View | Annotate | Download (1.329 KB)

1
#include "icub_data_receiver.h"
2
#include <yarp/os/Property.h>
3
using namespace yarp::dev;
4
using namespace yarp::sig;
5
using namespace yarp::os;
6
using namespace std;
7

    
8
iCubDataReceiver::iCubDataReceiver(int period, IEncodersTimed *_iencs, iCubJointInterface *_icub_jointinterface):RateThread(period){
9
    iencs = _iencs;
10
    icub_jointinterface = _icub_jointinterface;
11
    int joints;
12
    iencs->getAxes(&joints);
13
    positions.resize(joints);
14
    velocities.resize(joints);
15
    timestamps.resize(joints);
16
}
17

    
18
bool iCubDataReceiver::threadInit(){ return true; }
19
void iCubDataReceiver::threadRelease(){ }
20

    
21
double iCubDataReceiver::get_timestamp_ms(){
22
    struct timespec spec;
23
    clock_gettime(CLOCK_REALTIME, &spec);
24
    return spec.tv_sec+spec.tv_nsec/1000000000.0;
25
}
26

    
27
void iCubDataReceiver::run(){
28

    
29
    //grab pos+vel data:
30
    iencs->getEncodersTimed(positions.data(), timestamps.data());
31
    iencs->getEncoderSpeeds(velocities.data());
32

    
33
    //double timestamp = get_timestamp_ms();
34

    
35
    //publish data to humotion
36
    for(int i=0; i<positions.size(); i++){
37
        icub_jointinterface->fetch_position(i, positions[i], timestamps[i]);
38
        icub_jointinterface->fetch_speed(i, velocities[i], timestamps[i]);
39
    }
40

    
41
    //tell humotion to update lid angle (hack)
42
    icub_jointinterface->fetch_position(100, 0.0, get_timestamp_ms());
43
    //fixme: use real id
44
}