0

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?

Community
  • 1
  • 1
Toast
  • 596
  • 2
  • 19
  • 39

1 Answers1

1

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.

Community
  • 1
  • 1
errordeveloper
  • 6,716
  • 6
  • 41
  • 54