put all defines in a common include file.

This commit is contained in:
2018-04-10 23:12:48 +02:00
parent 7454ecdd65
commit 45db949508
22 changed files with 83 additions and 47 deletions

View File

@@ -0,0 +1,58 @@
/*!
* 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_data "data"
/* 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 */