Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix max character bug #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ uint32_t g_pms_warmup_period = 30; // Seconds to warm up PM
uint32_t g_pms_report_period = 120; // Seconds between reports
char sensor[8] = "PMS7003";

#define VERSION "0.3.2"
#define VERSION "0.3.3"

/* Serial */
#define SERIAL_BAUD_RATE 115200 // Speed for USB serial console
Expand Down
4 changes: 2 additions & 2 deletions linka-firmware.ino
Original file line number Diff line number Diff line change
Expand Up @@ -482,8 +482,8 @@ void initWifi()

// Configure custom parameters
WiFiConnectParam api_key_param("api_key", "API Key", api_key, 33);
WiFiConnectParam latitude_param("latitude", "Latitude", latitude, 13);
WiFiConnectParam longitude_param("longitude", "Longitude", longitude, 13);
WiFiConnectParam latitude_param("latitude", "Latitude", latitude, 11);
WiFiConnectParam longitude_param("longitude", "Longitude", longitude, 11);
WiFiConnectParam sensor_param("sensor", "Sensor model", sensor, 8);
WiFiConnectParam description_param("description", "Description", description, 21);
WiFiConnectParam api_url_param("api_url", "URL for the backend", api_url, 71);
Expand Down