You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
492 B
24 lines
492 B
//
|
|
// ToygerSensorData.h
|
|
// ToygerService
|
|
//
|
|
// Created by 晗羽 on 2018/5/17.
|
|
// Copyright © 2018 DTF. All rights reserved.
|
|
//
|
|
|
|
#ifdef USE_SENSOR
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ToygerSensorData : NSObject
|
|
@property (nonatomic)float pitch;
|
|
@property (nonatomic)float roll;
|
|
@property (nonatomic)float yaw;
|
|
@property (nonatomic)float gyro_x;
|
|
@property (nonatomic)float gyro_y;
|
|
@property (nonatomic)float gyro_z;
|
|
@property (nonatomic)unsigned long timestamp;
|
|
@end
|
|
|
|
#endif
|