46 lines
1.1 KiB
Objective-C
46 lines
1.1 KiB
Objective-C
//
|
|
// RuSunBackMessageUtils.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/4.
|
|
// Copyright © 2017年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RuSunProtocol.h"
|
|
|
|
@interface RuSunBackMessageUtils : NSObject
|
|
/**
|
|
* save soket massage control
|
|
*/
|
|
+(void)readSoketDataWithBaackMassgModel:(RuSunProtocol*)ruSunModel
|
|
addWithBackData:(NSData*)data;
|
|
|
|
/**
|
|
* setTemperaturelabel
|
|
*/
|
|
+(void)setTemperaturelabel:(UILabel*)temperaturelabel
|
|
addbubleImge:(UIImageView*)bubleImg
|
|
WithBackData:(NSData*)data
|
|
addWithBackMassageModel:(RuSunProtocol*)backModel
|
|
addWithTableview:(UITableView*)tableview;
|
|
|
|
/**
|
|
* light state
|
|
*/
|
|
|
|
+(void)resetRuSunButtonState:(UIButton*)light1
|
|
addlight2:(UIButton*)light2
|
|
addWaterPump:(UIButton*)waterPump
|
|
addJiaRe:(UIButton*)jiaReBang
|
|
withBackModel:(RuSunProtocol*)backModel;
|
|
|
|
/**
|
|
* refresh setViewData
|
|
*/
|
|
+(NSArray*)refreshRuSunTimerAddTemperatureWithBackMassageModel:(RuSunProtocol*)backModel;
|
|
|
|
|
|
|
|
@end
|