Skip to content

Commit a2291aa

Browse files
author
gemi254
committed
Fixed typo errors
1 parent 4dbdb67 commit a2291aa

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

CHANGES.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
* Allow application to logging into a file with logLevel
6363

6464
2.6.1 (2023-05-11)
65-
* Added function getCSS() to get configAssist css on application main page
66-
* Added function getTimeSyncScript() to get configAssist time sync script
67-
* Added function getMessageHtml() to get configAssist simple message page
65+
* Added function getCSS() to get ConfigAssist css on application main page
66+
* Added function getTimeSyncScript() to get ConfigAssist time sync script
67+
* Added function getMessageHtml() to get ConfigAssist simple message page
6868

6969
2.6.0 (2023-05-10)
70-
* Created configAssist library
70+
* Created ConfigAssist library

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Uncomment **CA_USE_PERSIST_CON** in ``ConfigAssist.h`` to use this feature.
4545

4646
Check the <a href="/examples/ConfigAssist-FirmwareCheck/README.txt">FirmwareCheck</a> example for more details.
4747

48-
These features can be disabled to save memory by commenting the lines **CA_USE_WIFISCAN**, **CA_USE_TESTWIFI**, **CA_USE_TIMESYNC**, **CA_USE_OTAUPLOAD**, and **CA_USE_FIMRMCHECK** in ``configAssist.h``.
48+
These features can be disabled to save memory by commenting the lines **CA_USE_WIFISCAN**, **CA_USE_TESTWIFI**, **CA_USE_TIMESYNC**, **CA_USE_OTAUPLOAD**, and **CA_USE_FIMRMCHECK** in ``ConfigAssist.h``.
4949

5050
Device's configuration ``(*.ini files)`` can be downloaded with the **Backup** button and can be restored later with the **Restore** button.
5151

@@ -76,7 +76,7 @@ ConfigAssist uses **c++ vectors** to dynamically allocate and store variables an
7676

7777
## How to use variables
7878

79-
**ConfigAssist** consists of single file "configAssist.h" that must be included in your application
79+
**ConfigAssist** consists of single file "ConfigAssist.h" that must be included in your application
8080
The application variables can be used directly by accessing the **class** itself by operator **[]**
8181
i.e.
8282

@@ -214,8 +214,8 @@ Other settings:
214214

215215
## Project definitions in your main app
216216

217-
+ include the **configAssist** class
218-
- `#include <configAssist.h> //ConfigAssist class`
217+
+ include the **ConfigAssist** class
218+
- `#include <ConfigAssist.h> //ConfigAssist class`
219219

220220
+ Define your static instance with **defaults**
221221
- `ConfigAssist conf;`
@@ -351,7 +351,7 @@ to print your messages. **ConfigAssist** can record these messages with **timest
351351

352352
+ if you want to enable serial print to a log file use..
353353
```
354-
//Enable configAssist logging to file
354+
//Enable ConfigAssist logging to file
355355
#define LOGGER_LOG_MODE 2 // Log to file
356356
357357
//Define the log filename
@@ -367,7 +367,7 @@ to print your messages. **ConfigAssist** can record these messages with **timest
367367
368368
## Compile
369369
Download library files and place them on ./libraries directory under ArduinoProjects
370-
Then include the **configAssist.h** in your application and compile..
370+
Then include the **ConfigAssist.h** in your application and compile..
371371
372372
+ compile for arduino-esp3 or arduino-esp8266.
373373
+ To use Persistent ST connections On ESP8266 devices you must install **Preferences** library to provide ESP32-compatible Preferences API using LittleFS

examples/ConfigAssist-Dynamic/ConfigAssist-Dynamic.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <configAssist.h> // Config assist class definition
1+
#include <ConfigAssist.h> // Config assist class definition
22

33
// Create a config class with an ini filename for storage
44
ConfigAssist config("/info1.ini");

examples/ConfigAssist-FirmwareCheck/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ is using github.com to host the new firmware.
3636

3737
8. Upload the firmware to github at url defined in latest.json
3838

39-
9. By pressing `Firmware` button in config page, configAssist will compare current version with the version stored in github.com
39+
9. By pressing `Firmware` button in config page, ConfigAssist will compare current version with the version stored in github.com
4040
If newer version exists it will show a button `Upgrade Firmware` that will automatically perform a firmware upgrade with
4141
the latest firmware stored in github.com

keywords.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
###########################################
4-
# Syntax Coloring Map For configAssist-library
4+
# Syntax Coloring Map For ConfigAssist-library
55
###########################################
66

77
###########################################
File renamed without changes.

0 commit comments

Comments
 (0)