41 lines
1.0 KiB
Objective-C
41 lines
1.0 KiB
Objective-C
//
|
|
// SongNuoDBCenterViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/1/6.
|
|
// Copyright © 2017年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
//松诺 BD 86
|
|
@interface SongNuoDBCenterViewController : 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;
|
|
|
|
//柜灯 与柜灯在设置界面不同
|
|
@property(nonatomic,strong) UIButton *nuoGuiDengBtn;
|
|
|
|
//加热棒
|
|
@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 *guiDengName;
|
|
@property(nonatomic,strong) UILabel *jiaReName;
|
|
|
|
@end
|