Skip to content

Commit 4e8a58e

Browse files
committed
rename filenames with camelcase followup
1 parent 62b5574 commit 4e8a58e

File tree

10 files changed

+20
-19
lines changed

10 files changed

+20
-19
lines changed

lib/ESP_WiFiManager_Lite/examples/ESP_WiFi/dynamicParams.h renamed to lib/ESP_WiFiManager_Lite/examples/ESP_WiFi/DynamicParams.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************************************************************
2-
dynamicParams.h
2+
DynamicParams.h
33
For ESP8266 / ESP32 boards
44
55
ESP_WiFiManager_Lite (https://github.com/rob040/ESP_WiFiManagerLite2) is a library
@@ -10,8 +10,8 @@
1010
Licensed under MIT license
1111
*****************************************************************************************************************************/
1212

13-
#ifndef dynamicParams_h
14-
#define dynamicParams_h
13+
#ifndef DYNAMICPARAMS_H
14+
#define DYNAMICPARAMS_H
1515

1616
#include "defines.h"
1717

@@ -71,4 +71,4 @@ uint16_t NUM_MENU_ITEMS = 0;
7171
#endif //USE_DYNAMIC_PARAMETERS
7272

7373

74-
#endif //dynamicParams_h
74+
#endif //DYNAMICPARAMS_H

lib/ESP_WiFiManager_Lite/examples/ESP_WiFi/ESP_WiFi.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "defines.h"
1414
#include "Credentials.h"
1515
#include <ESP_WiFiManager_Lite.h>
16-
#include "dynamicParams.h"
16+
#include "DynamicParams.h"
1717

1818
ESP_WiFiManager_Lite* ESP_WiFiManager;
1919

lib/ESP_WiFiManager_Lite/examples/ESP_WiFi_MQTT/dynamicParams.h renamed to lib/ESP_WiFiManager_Lite/examples/ESP_WiFi_MQTT/DynamicParams.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************************************************************
2-
dynamicParams.h
2+
DynamicParams.h
33
For ESP8266 / ESP32 boards
44
55
ESP_WiFiManager_Lite (https://github.com/rob040/ESP_WiFiManagerLite2) is a library
@@ -10,8 +10,8 @@
1010
Licensed under MIT license
1111
*****************************************************************************************************************************/
1212

13-
#ifndef dynamicParams_h
14-
#define dynamicParams_h
13+
#ifndef DYNAMICPARAMS_H
14+
#define DYNAMICPARAMS_H
1515

1616
#include "defines.h"
1717

@@ -73,4 +73,4 @@ uint16_t NUM_MENU_ITEMS = 0;
7373
#endif //USE_DYNAMIC_PARAMETERS
7474

7575

76-
#endif //dynamicParams_h
76+
#endif //DYNAMICPARAMS_H

lib/ESP_WiFiManager_Lite/examples/ESP_WiFi_MQTT/ESP_WiFi_MQTT.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "defines.h"
2222
#include "Credentials.h"
2323
#include <ESP_WiFiManager_Lite.h>
24-
#include "dynamicParams.h"
24+
#include "DynamicParams.h"
2525

2626
#define LOCAL_DEBUG true //false
2727

marquee/DynamicParams.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/****************************************************************************************************************************
2-
dynamicParams.h
2+
DynamicParams.h
33
For ESP8266 / ESP32 boards
44
55
ESP_WiFiManager_Lite (https://github.com/khoih-prog/ESP_WiFiManager_Lite) is a library
@@ -10,8 +10,8 @@
1010
Licensed under MIT license
1111
*****************************************************************************************************************************/
1212

13-
#ifndef dynamicParams_h
14-
#define dynamicParams_h
13+
#ifndef DYNAMICPARAMS_H
14+
#define DYNAMICPARAMS_H
1515

1616
//#include "defines.h"
1717

@@ -75,4 +75,4 @@ uint16_t NUM_MENU_ITEMS = 0;
7575
#endif //USE_DYNAMIC_PARAMETERS
7676

7777

78-
#endif //dynamicParams_h
78+
#endif //DYNAMICPARAMS_H

marquee/OpenWeatherMapClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
#include "OpenWeatherMapClient.h"
15-
#include "timeStr.h"
15+
#include "TimeStr.h"
1616

1717
OpenWeatherMapClient::OpenWeatherMapClient(const String &ApiKey, bool isMetric) {
1818
myGeoLocation = "";

marquee/Settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
//#include <ESP_WiFiManager_Lite.h> // --> https://github.com/khoih-prog/ESP_WiFiManager_Lite, now updated local version
4848
#include "WmlSettings.h"
4949
#include "ESP_WiFiManager_Lite.h"
50-
#include "dynamicParams.h"
50+
#include "DynamicParams.h"
5151

5252
//******************************
5353
// Hard(-ware related) settings

marquee/TimeNTP.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include <TimeLib.h>
1515
#include <ESP8266WiFi.h>
1616
#include <WiFiUdp.h>
17+
#include "TimeNTP.h"
1718

1819

1920
// NTP Servers:

marquee/TimeStr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
*
77
*/
88
#include <Arduino.h>
9-
#include "timeLib.h"
10-
#include "timeStr.h"
9+
#include <timeLib.h>
10+
#include "TimeStr.h"
1111

1212
String getDayName(int weekday) {
1313
static const char daynames[] PROGMEM = "Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,";

marquee/WmlSettings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@
7676
"LED matrix Clock", 0 };
7777

7878
//#include <ESP_WiFiManager_Lite.h> // --> https://github.com/khoih-prog/ESP_WiFiManager_Lite (Archived) --> ../lib/ESP_WiFiManager_Lite.h
79-
//#include "dynamicParams.h"
79+
//#include "DynamicParams.h"

0 commit comments

Comments
 (0)