sensob.h 553 B

123456789101112131415
  1. #ifndef SENSOB_H
  2. #define SENSOB_H
  3. int sensob_parse(uint8_t * data, uint16_t length, uint64_t * id, time_t * tm, double *result_array, uint64_t * sensors, unsigned int *type);
  4. int sensoblite_parse(uint8_t * data, uint16_t length, time_t * tm, double *result_array, uint64_t * sensors, unsigned int *type);
  5. int sensobtiny_parse(uint8_t * data,
  6. uint16_t length,
  7. uint32_t time_of_receive,
  8. time_t * tm,
  9. double *result_array, uint64_t * sensors, unsigned int *type);
  10. int sensob_reply(uint8_t * data);
  11. #endif /* SENSOB_H */