21 lines
464 B
Objective-C
21 lines
464 B
Objective-C
//
|
|
// brightnessModel.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/3/15.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "BrightnessModel.h"
|
|
//背光亮度
|
|
@implementation BrightnessModel
|
|
-(NSString*)description{
|
|
self.massagelegth=@"12";
|
|
self.messagetype=@"00";
|
|
self.functionCode=@"0c";
|
|
return [NSString stringWithFormat:@"%@%@%@%@%@",self.messagetype,self.functionCode,self.sendmacId,self.resavemacId,self.massagelegth];
|
|
|
|
}
|
|
|
|
@end
|