38 lines
984 B
Objective-C
38 lines
984 B
Objective-C
//
|
|
// KeLiAiCenterViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/17.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
|
|
// 可丽爱 主控制界面
|
|
|
|
@interface KeLiAiCenterViewController : CenterViewController
|
|
|
|
@property(nonatomic,strong) UIButton *button;
|
|
@property(nonatomic,strong) UILabel *buttonNameLabel;
|
|
|
|
// 灯1
|
|
@property(nonatomic,strong) UIButton *keliaLight1Btn;
|
|
//@property(nonatomic,strong) UILabel *keliaLight1NameLabel;
|
|
|
|
// 灯2
|
|
@property(nonatomic,strong) UIButton *keliaLight2Btn;
|
|
//@property(nonatomic,strong) UILabel *keliaLight2Label;
|
|
// 水泵
|
|
@property(nonatomic,strong) UIButton *keliaPumpBtn;
|
|
//@property(nonatomic,strong) UILabel *keliaPumpLabel;
|
|
//紫外线
|
|
|
|
@property(nonatomic,strong) UIButton *keliaUltravioletBtn;
|
|
//@property(nonatomic,strong) UILabel *keliaUltravioletLabel;
|
|
//加热管
|
|
|
|
@property(nonatomic,strong) UIButton *keliaJaReBtn;
|
|
//@property(nonatomic,strong) UILabel *keliaJaReLabel;
|
|
|
|
@end
|