Question

I have a Raspberry Pi that reads sensor data and I would like to send it to a xively feed.

I figured out that I have to use either the API or the C library. I failed trying to use the library.

I would like to have something like this in my C++ program:

xively.update("sensor1",sensorvalue);

What is the easiest way to do that?

Was it helpful?

Solution

Xively C library currently doesn't implement a high-level C++ wrapper.

You need to statically link with libxively.a.

I have just answered on the original question.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top