From 45ea8eabaa15cd143e46ee7b55c1be33a6102d9d Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 19 Oct 2024 22:52:39 +0200 Subject: [PATCH] add include/CanGrow_Webserver.h --- Arduino/CanGrow/include/CanGrow_Webserver.h | 31 +++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Arduino/CanGrow/include/CanGrow_Webserver.h diff --git a/Arduino/CanGrow/include/CanGrow_Webserver.h b/Arduino/CanGrow/include/CanGrow_Webserver.h new file mode 100644 index 0000000..2e19fcd --- /dev/null +++ b/Arduino/CanGrow/include/CanGrow_Webserver.h @@ -0,0 +1,31 @@ +/* + * + * include/CanGrow_Webserver.h - webserver header file + * + * + * MIT License + * + * Copyright (c) 2024 DeltaLima + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to + * deal in the Software without restriction, including without limitation the + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + */ + +AsyncWebServer webserver(80); +