From 3f1a59fd98f7be43561697ce5a8a5be1f730f4a9 Mon Sep 17 00:00:00 2001 From: Volodymyr Fuchenko Date: Tue, 13 Oct 2020 13:35:34 +0300 Subject: [PATCH] Used include guards instead of #pragma once --- FT6X36.h | 5 +++-- library.properties | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/FT6X36.h b/FT6X36.h index 754776c..2485144 100644 --- a/FT6X36.h +++ b/FT6X36.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef FT6X36_h +#define FT6X36_h #include #include @@ -131,4 +132,4 @@ class FT6X36 unsigned long _touchEndTime = 0; bool _dragMode = false; }; - +#endif diff --git a/library.properties b/library.properties index cadd844..b226ced 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=FT6X36 -version=1.0.1 +version=1.0.2 author=strange_v maintainer=strange_v sentence=Arduino library for FT6X36 based touch screens