Skip to content

Commit

Permalink
Update configuration.h
Browse files Browse the repository at this point in the history
Hotfix: Forgot to consider the null termination character at the end of a string in the IP address.
  • Loading branch information
Neuroquila-n8fall committed Nov 9, 2024
1 parent 3125c38 commit a76364f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct Configuration

struct Mqtt_
{
char Server[15]; // "192.168.1.123"
char Server[16]; // "192.168.123.123"
int Port = 1883; // "Default: 1883"
char User[255]; // "user"
char Password[255]; // "pass"
Expand Down

0 comments on commit a76364f

Please sign in to comment.