25 lines
611 B
Objective-C
25 lines
611 B
Objective-C
//
|
|
// searchDeviceModel.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/12.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "searchDeviceModel.h"
|
|
|
|
@implementation searchDeviceModel
|
|
- (NSString *)description
|
|
{
|
|
// if (self.isSend==NO) {
|
|
// self.messagetype=@"01";
|
|
// }else if(self.isSend==YES){
|
|
self.messagetype=@"00";
|
|
// }
|
|
self.massagelegth=@"11";
|
|
self.functionCode=@"06";
|
|
self.crc16String=@"0000";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@%@",self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth,self.crc16String];
|
|
}
|
|
@end
|