60 lines
1.5 KiB
C
60 lines
1.5 KiB
C
/*!
|
|
* domo.h
|
|
*
|
|
* Copyright (c) 2016-2018, NADAL Jean-Baptiste. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*
|
|
* @Author: NADAL Jean-Baptiste
|
|
* @Date: 10/04/2018
|
|
*
|
|
*/
|
|
|
|
#ifndef _DOMO_H
|
|
#define _DOMO_H
|
|
|
|
/*------------------------------- DEFINES ----------------------------------*/
|
|
|
|
/* Device */
|
|
|
|
/* Device type. */
|
|
#define kLightEntry "lights"
|
|
#define kShutterEntry "shutters"
|
|
#define kSprinklerEntry "sprinklers"
|
|
|
|
#define k_entry_devices "devices"
|
|
|
|
#define k_entry_sequences "sequences"
|
|
|
|
/* common */
|
|
#define k_entry_id "id"
|
|
#define k_entry_name "name"
|
|
#define k_entry_speach_name "speach_name"
|
|
#define k_entry_zone "zone"
|
|
#define k_entry_state "state"
|
|
#define k_entry_sender "sender"
|
|
#define k_entry_interruptor "interruptor"
|
|
|
|
|
|
/* shutter */
|
|
#define k_entry_speed_up "speed_up"
|
|
#define k_entry_speed_down "speed_down"
|
|
|
|
|
|
/* Timer */
|
|
|
|
|
|
#endif /* _DOMO_H */ |