24 lines
711 B
Objective-C
24 lines
711 B
Objective-C
//
|
|
// RuSunHaveHeateViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/4.
|
|
// Copyright © 2017年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
//睿芯 有温控 74bite
|
|
@interface RuSunHaveHeateViewController : CenterViewController
|
|
@property(nonatomic,strong)UIButton*button;
|
|
@property(nonatomic,strong)UIButton*light1Button;
|
|
@property(nonatomic,strong)UIButton*light2Button;
|
|
@property(nonatomic,strong)UIButton*pumpButton;
|
|
@property(nonatomic,strong)UIButton*heatBtn;
|
|
//按钮名字
|
|
@property(nonatomic,strong)UILabel *light1Name;
|
|
@property(nonatomic,strong)UILabel *light2Name;
|
|
@property(nonatomic,strong)UILabel *pumpName;
|
|
@property(nonatomic,strong)UILabel *heatName;
|
|
|
|
@end
|