44 lines
1.1 KiB
Objective-C
44 lines
1.1 KiB
Objective-C
//
|
|
// RuSun84BackMsgUtils.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 2017/6/1.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "RunSun84Protocol.h"
|
|
@interface RuSun84BackMsgUtils : NSObject
|
|
/**
|
|
* save soket massage control
|
|
*/
|
|
+(void)readSoketDataWithBaackMassgModel:(RunSun84Protocol*)ruSunModel
|
|
addWithBackData:(NSData*)data;
|
|
|
|
/**
|
|
* setTemperaturelabel
|
|
*/
|
|
+(void)setTemperaturelabel:(UILabel*)temperaturelabel
|
|
addbubleImge:(UIImageView*)bubleImg
|
|
WithBackData:(NSData*)data
|
|
addWithBackMassageModel:(RunSun84Protocol*)backModel
|
|
addWithTableview:(UITableView*)tableview;
|
|
/**
|
|
* light state
|
|
*/
|
|
|
|
+(void)resetRuSunCHState:(UIButton*)ch1
|
|
ch2:(UIButton*)ch2
|
|
ch3:(UIButton*)ch3
|
|
ch4:(UIButton*)ch4
|
|
guideng:(UIButton *)guideng
|
|
andJiaRe:(UIButton*)jiaReBang
|
|
withBackModel:(RunSun84Protocol*)backModel;
|
|
/**
|
|
* refresh setViewData
|
|
*/
|
|
+(NSArray*)refreshRuSunTimerAddTemperatureWithBackMassageModel:(RunSun84Protocol*)backModel;
|
|
|
|
@end
|