52 lines
1.2 KiB
Objective-C
52 lines
1.2 KiB
Objective-C
//
|
|
// SonNuoCenterViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/6/6.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
/**
|
|
* 松诺主界面
|
|
*/
|
|
@interface SonNuoCenterViewController : CenterViewController
|
|
|
|
@property(nonatomic,strong) UIButton *button;
|
|
@property(nonatomic,strong) UILabel *buttonNameLabel;
|
|
|
|
// 灯1
|
|
@property(nonatomic,strong) UIButton *nuoLight1Btn;
|
|
|
|
// 灯2
|
|
@property(nonatomic,strong) UIButton *nuoLight2Btn;
|
|
|
|
// 水泵
|
|
@property(nonatomic,strong) UIButton *nuoWaterPumpBtn;
|
|
|
|
// 氧泵
|
|
@property(nonatomic,strong) UIButton *nuoAirPumpBtn;
|
|
|
|
// UV
|
|
@property(nonatomic,strong) UIButton *nuoUVPumpBtn;
|
|
|
|
// 造浪
|
|
@property(nonatomic,strong) UIButton *nuoWaveBtn;
|
|
|
|
// 备用
|
|
@property(nonatomic,strong) UIButton *nuoBeiYongBtn;
|
|
|
|
//加热棒
|
|
@property(nonatomic,strong) UIButton *nuoJiaReBtn;
|
|
|
|
@property(nonatomic,strong) UILabel *light1Name;
|
|
@property(nonatomic,strong) UILabel *light2Name;
|
|
@property(nonatomic,strong) UILabel *waterPumpName;
|
|
@property(nonatomic,strong) UILabel *airPumpName;
|
|
@property(nonatomic,strong) UILabel *uVName;
|
|
@property(nonatomic,strong) UILabel *waveName;
|
|
@property(nonatomic,strong) UILabel *beiYongName;
|
|
@property(nonatomic,strong) UILabel *jiaReName;
|
|
|
|
@end
|