26 lines
605 B
Objective-C
26 lines
605 B
Objective-C
//
|
|
// TwoControlCenterController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/4/8.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
#import "AsyncSocket.h"
|
|
/*
|
|
两控主界面 0b 普通 0d 闽江 两种
|
|
*/
|
|
@interface TwoControlCenterController : CenterViewController
|
|
|
|
|
|
@property(nonatomic,strong)UIButton*button;
|
|
@property(nonatomic,strong)UIButton*light1Button;
|
|
@property(nonatomic,strong)UIButton*pumpButton;
|
|
|
|
@property(nonatomic,strong)UILabel*buttonNameLabel;
|
|
@property(nonatomic,strong)UILabel*light1name;
|
|
@property(nonatomic,strong)UILabel*pumpname;
|
|
|
|
@end
|