From 8b704deb0fef7a564d211463828f72da11b5fb0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Anian=20B=C3=BChler?=
 <anian.buehler@reutlingen-university.de>
Date: Mon, 4 Jul 2022 11:30:41 +0200
Subject: [PATCH] renamed didacticNet to DidacticNet

---
 examples/sPSN_Broker/sPSN_Broker.ino               | 2 +-
 examples/sPSN_Chat/sPSN_Chat.ino                   | 2 +-
 examples/sPSN_Client1/sPSN_Client1.ino             | 2 +-
 examples/sPSN_Client2/sPSN_Client2.ino             | 2 +-
 examples/sPSN_ClientMinimal/sPSN_ClientMinimal.ino | 2 +-
 examples/sPSN_PingTest/sPSN_PingTest.ino           | 2 +-
 examples/sPSN_PongTester/sPSN_PongTester.ino       | 2 +-
 src/{didacticNet.cpp => DidacticNet.cpp}           | 4 ++--
 src/{didacticNet.h => DidacticNet.h}               | 2 +-
 9 files changed, 10 insertions(+), 10 deletions(-)
 rename src/{didacticNet.cpp => DidacticNet.cpp} (99%)
 rename src/{didacticNet.h => DidacticNet.h} (99%)

diff --git a/examples/sPSN_Broker/sPSN_Broker.ino b/examples/sPSN_Broker/sPSN_Broker.ino
index b9034ba..c8b3c17 100644
--- a/examples/sPSN_Broker/sPSN_Broker.ino
+++ b/examples/sPSN_Broker/sPSN_Broker.ino
@@ -28,7 +28,7 @@
  */
 #include <Arduino.h>
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 //lege Geschwindigkeit für serielle Schnittstellen fest
 #define SERIAL_BAUD 2400
diff --git a/examples/sPSN_Chat/sPSN_Chat.ino b/examples/sPSN_Chat/sPSN_Chat.ino
index bc309b4..ee8d7e5 100644
--- a/examples/sPSN_Chat/sPSN_Chat.ino
+++ b/examples/sPSN_Chat/sPSN_Chat.ino
@@ -26,7 +26,7 @@
 */
 #include <Arduino.h>
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 #define SERIAL_BAUD 2400                         //lege Geschwindigkeit für serielle Schnittstellen fest
 
diff --git a/examples/sPSN_Client1/sPSN_Client1.ino b/examples/sPSN_Client1/sPSN_Client1.ino
index 116aa54..14afad6 100644
--- a/examples/sPSN_Client1/sPSN_Client1.ino
+++ b/examples/sPSN_Client1/sPSN_Client1.ino
@@ -22,7 +22,7 @@
  */
 #include <Arduino.h>
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 #define SERIAL_BAUD 2400 //lege Geschwindigkeit für serielle Schnittstellen fest
 
diff --git a/examples/sPSN_Client2/sPSN_Client2.ino b/examples/sPSN_Client2/sPSN_Client2.ino
index 98193ec..5ee164c 100644
--- a/examples/sPSN_Client2/sPSN_Client2.ino
+++ b/examples/sPSN_Client2/sPSN_Client2.ino
@@ -19,7 +19,7 @@
 
 #include <Arduino.h>
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 #define SERIAL_BAUD 2400 //lege Geschwindigkeit für serielle Schnittstellen fest
 
diff --git a/examples/sPSN_ClientMinimal/sPSN_ClientMinimal.ino b/examples/sPSN_ClientMinimal/sPSN_ClientMinimal.ino
index dfd3f23..dabf7d2 100644
--- a/examples/sPSN_ClientMinimal/sPSN_ClientMinimal.ino
+++ b/examples/sPSN_ClientMinimal/sPSN_ClientMinimal.ino
@@ -22,7 +22,7 @@
 #include <Arduino.h>
 
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 SoftwareSerial sSerial(10, 11); //Erzeuge SoftwareSerial-Instanz mit Rx = Pin10 -> Empfänger | Tx = Pin11 -> Sender
 
diff --git a/examples/sPSN_PingTest/sPSN_PingTest.ino b/examples/sPSN_PingTest/sPSN_PingTest.ino
index fb9f90c..f666e9c 100644
--- a/examples/sPSN_PingTest/sPSN_PingTest.ino
+++ b/examples/sPSN_PingTest/sPSN_PingTest.ino
@@ -18,7 +18,7 @@
 #include "Arduino.h"
 
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 //lege Geschwindigkeit für serielle Schnittstellen fest
 #define SERIAL_BAUD 2400
diff --git a/examples/sPSN_PongTester/sPSN_PongTester.ino b/examples/sPSN_PongTester/sPSN_PongTester.ino
index 2ed1ca1..3f1b2c2 100644
--- a/examples/sPSN_PongTester/sPSN_PongTester.ino
+++ b/examples/sPSN_PongTester/sPSN_PongTester.ino
@@ -19,7 +19,7 @@
 #include "Arduino.h"
 
 #include "SoftwareSerial.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 //lege Geschwindigkeit für serielle Schnittstellen fest
 #define SERIAL_BAUD 2400
diff --git a/src/didacticNet.cpp b/src/DidacticNet.cpp
similarity index 99%
rename from src/didacticNet.cpp
rename to src/DidacticNet.cpp
index 80a9f5d..e3a5791 100644
--- a/src/didacticNet.cpp
+++ b/src/DidacticNet.cpp
@@ -1,12 +1,12 @@
 /**************************************************************************/
 /*!
-    @file     didacticNet.cpp
+    @file     DidacticNet.cpp
     @author   anian buehler @ letsgoING.org
 */
 /**************************************************************************/
 
 #include "Arduino.h"
-#include "didacticNet.h"
+#include "DidacticNet.h"
 
 //**************************************************************************
 //ROOT
diff --git a/src/didacticNet.h b/src/DidacticNet.h
similarity index 99%
rename from src/didacticNet.h
rename to src/DidacticNet.h
index 41aac4c..31556a3 100644
--- a/src/didacticNet.h
+++ b/src/DidacticNet.h
@@ -1,5 +1,5 @@
 /**************************************************************************
-    @file     didacticNet.h
+    @file     DidacticNet.h
     @author   anian buehler @ letsgoING
 **************************************************************************/
 
-- 
GitLab