46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
|
/**
|
||
|
* @file Nextion.h
|
||
|
*
|
||
|
* The header file including all other header files provided by this library.
|
||
|
*
|
||
|
* Every example sketch should include this file.
|
||
|
*
|
||
|
* @author Wu Pengfei (email:<pengfei.wu@itead.cc>)
|
||
|
* @date 2015/8/12
|
||
|
* @copyright
|
||
|
* Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License as
|
||
|
* published by the Free Software Foundation; either version 2 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*/
|
||
|
#ifndef __NEXTION_H__
|
||
|
#define __NEXTION_H__
|
||
|
|
||
|
#include "Arduino.h"
|
||
|
#include "NexConfig.h"
|
||
|
#include "NexTouch.h"
|
||
|
#include "NexHardware.h"
|
||
|
|
||
|
#include "NexButton.h"
|
||
|
#include "NexCrop.h"
|
||
|
#include "NexGauge.h"
|
||
|
#include "NexHotspot.h"
|
||
|
#include "NexPage.h"
|
||
|
#include "NexPicture.h"
|
||
|
#include "NexProgressBar.h"
|
||
|
#include "NexSlider.h"
|
||
|
#include "NexText.h"
|
||
|
#include "NexWaveform.h"
|
||
|
#include "NexTimer.h"
|
||
|
#include "NexNumber.h"
|
||
|
#include "NexDualStateButton.h"
|
||
|
#include "NexVariable.h"
|
||
|
#include "NexCheckbox.h"
|
||
|
#include "NexRadio.h"
|
||
|
#include "NexScrolltext.h"
|
||
|
#include "NexGpio.h"
|
||
|
#include "NexRtc.h"
|
||
|
|
||
|
#endif /* #ifndef __NEXTION_H__ */
|