#ifndef QUERY_MSG
#define QUERY_MSG

enum {
  BUFFER_SIZE = 10
};

typedef struct QueryMsg
{
    uint8_t source;
    uint16_t value;
    uint16_t threshold;
    
} QueryMsg;

enum {
  AM_QUERYMSG = 10
};

#endif // QUERY_MSG

