documentation checked and edit
for all files in lib folder
This commit is contained in:
+18
-13
@@ -2,14 +2,14 @@
|
||||
* @file networkConfig.h
|
||||
* @author Alexander Klein (alex@kleiax.de)
|
||||
* @brief Contains the settings for the Network class
|
||||
*
|
||||
*
|
||||
* With different defines the location can be choosen.
|
||||
*
|
||||
*
|
||||
* @version 0.1
|
||||
* @date 2022-02-15
|
||||
*
|
||||
*
|
||||
* @copyright Copyright (c) 2022
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
@@ -17,7 +17,8 @@
|
||||
#define HW1
|
||||
|
||||
#ifdef HOTSPOT
|
||||
namespace NetworkConfig {
|
||||
namespace NetworkConfig
|
||||
{
|
||||
const char ssid[] = "Kleiax Handy";
|
||||
const char password[] = "12345677";
|
||||
const char ip[] = "192.168.43.4";
|
||||
@@ -26,10 +27,11 @@ namespace NetworkConfig {
|
||||
const char dns[] = "8.8.8.8";
|
||||
const bool mqtt = false;
|
||||
}
|
||||
#endif //HOTSPOT
|
||||
#endif // HOTSPOT
|
||||
|
||||
#ifdef HW1
|
||||
namespace NetworkConfig {
|
||||
namespace NetworkConfig
|
||||
{
|
||||
const char ssid[] = "hw1_gast";
|
||||
const char password[] = "KeineAhnung";
|
||||
const char ip[] = "192.168.0.4";
|
||||
@@ -38,11 +40,12 @@ namespace NetworkConfig {
|
||||
const char dns[] = "8.8.8.8";
|
||||
const bool mqtt = false;
|
||||
}
|
||||
#endif //HW1
|
||||
#endif // HW1
|
||||
|
||||
//Network config Rhede
|
||||
// Network config Rhede
|
||||
#ifdef RHEDE
|
||||
namespace NetworkConfig {
|
||||
namespace NetworkConfig
|
||||
{
|
||||
const char ssid[] = "LebennigHuus";
|
||||
const char password[] = "Punica-699";
|
||||
const char ip[] = "192.168.11.4";
|
||||
@@ -51,16 +54,18 @@ namespace NetworkConfig {
|
||||
const char dns[] = "8.8.8.8";
|
||||
const bool mqtt = true;
|
||||
}
|
||||
#endif //RHEDE
|
||||
#endif // RHEDE
|
||||
|
||||
namespace MqttConfig {
|
||||
namespace MqttConfig
|
||||
{
|
||||
const char server[] = "192.168.1.7";
|
||||
const uint16_t port = 1883;
|
||||
const char user[] = "kleiax";
|
||||
const char password[] = "p?{$_~5%hBM7wrcFkr55KWr#";
|
||||
}
|
||||
|
||||
namespace NtripConfig {
|
||||
namespace NtripConfig
|
||||
{
|
||||
const char host[] = "rtk2go.com";
|
||||
const uint16_t port = 2101;
|
||||
// const char mountPoint[] = "GER-Dortmund";
|
||||
|
||||
Reference in New Issue
Block a user