Skip to content

Commit

Permalink
Fix bad define, missing ;
Browse files Browse the repository at this point in the history
Signed-off-by: Sara Damiano <[email protected]>
  • Loading branch information
SRGDamia1 committed Oct 11, 2024
1 parent 9b7c38f commit f34f6e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/menu_a_la_carte/menu_a_la_carte.ino
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ const int8_t relayPowerPin = A3; // MCU pin controlling an optional power relay
// ==========================================================================

// Network connection information
#define MY_APN "add_your_cellular_apn" // APN for cellular connection
#define CELLULAR_APN "add_your_cellular_apn" // APN for cellular connection

#define WIFI_ID "your_wifi_ssid" // WiFi access point name
#define WIFI_PASSWD "your_wifi_password" // WiFi password (WPA2)
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/ProcessorStats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ ProcessorStats::ProcessorStats(const char* version,
_batteryPin = 33;
#else
_batteryPin = -1;
_batteryMultiplier = -1
_batteryMultiplier = -1;
#endif
}

Expand Down

0 comments on commit f34f6e9

Please sign in to comment.