robot arm demo team / Mbed 2 deprecated RobotArmDemo Featured

Dependencies:   AX-12A Dynamixel mbed iothub_client EthernetInterface NTPClient ConfigFile SDFileSystem iothub_amqp_transport mbed-rtos proton-c-mbed wolfSSL

IothubRobotArm.h

Committer:
henryrawas
Date:
2015-12-29
Revision:
7:6723f6887d00
Parent:
5:36916b1c5a06
Child:
13:ffeff9b5e513

File content as of revision 7:6723f6887d00:

/* 
Copyright (c) 2015 Jonathan Pickett & Microsoft. Some appropriate open source license.
*/

#ifndef IOTHUB_ROBOTARM_H
#define IOTHUB_ROBOTARM_H

#include "iothub_client.h"
#include "IothubSerial.h"

class IothubRobotArm
{
public:
    IothubRobotArm();
    
    bool Init();
    
    void Terminate();
    
    void SendMeasurements(void);

private:

    IothubSerial msgSerialize;
};

extern bool StartIothubThread();

extern bool SendIothubData();

extern void EndIothubThread();

#endif /* IOTHUB_ROBOTARM_H */