39 lines
1.0 KiB
Objective-C
39 lines
1.0 KiB
Objective-C
//
|
|
// FourControlDataUnity.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/24.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
//八十五字节
|
|
#import "FourControlbackMassge.h"
|
|
@interface FourControlDataUnity : NSObject
|
|
/**
|
|
* Description
|
|
*
|
|
* @param data data description
|
|
* @param backModel backModel description
|
|
*/
|
|
+(void)readSoketbackMassageOfFourControlData:(NSData*)data WithModel:(FourControlbackMassge *)backModel;
|
|
/**
|
|
* light state
|
|
*/
|
|
|
|
+(void)resetFourControlButtonState:(UIButton*)light1 addlight2:(UIButton*)light2 addlight3:(UIButton*)light3 addpump:(UIButton*)pump withBackModel:(FourControlbackMassge*)backModel;
|
|
|
|
/**
|
|
* wendu
|
|
*/
|
|
+(void)setTemperaturelabel:(UILabel*)temperaturelabel addbubleImge:(UIImageView*)bubleImg WithBackData:(NSData*)data addWithBackMassageModel:(FourControlbackMassge*)backModel addWithTableview:(UITableView*)tableview;
|
|
|
|
/**
|
|
* setview data
|
|
*/
|
|
|
|
+(NSArray*)refreshFourControlTimerWithBackMassageModel:(FourControlbackMassge*)backModel;
|
|
|
|
|
|
@end
|