You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The setting of verbosity for logging, should be one of info or debug
50
50
#LOG_LEVEL="info"
51
51
52
52
# Disables the scheduler and runs the script just once
53
53
#SINGLE_SHOT=true
54
54
55
-
# Upload all available data from LibreLink Up instead of just data newer than last upload.
55
+
# Upload all available data from LibreLinkUp instead of just data newer than last upload.
56
56
# LibreLinkUp sometimes lags behind in reporting recent historical data, so it is advised to run the script with ALL_DATA set to true at least once a day.
| LINK_UP_USERNAME |LibreLink Up Login Email |mail@example.com| X |
25
-
| LINK_UP_PASSWORD |LibreLink Up Login Password | mypassword | X |
26
-
| LINK_UP_CONNECTION |LibreLink Up Patient-ID. Can be received from the console output if multiple connections are available. | 123456abc-abcd-efgh-7891def ||
27
-
| LINK_UP_TIME_INTERVAL | The time interval (in minutes) of requesting values from libre link up.| 5 ||
28
-
| LINK_UP_REGION | Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA, RU, CN) | EU ||
29
-
| LINK_UP_VERSION |LibreLink Up App Version. This may need to be updated if you are using a newer version of the LibreLink Up App. | 4.16.0 ||
30
-
| NIGHTSCOUT_URL | Hostname of the Nightscout instance (without https://) | nightscout.yourdomain.com | X |
31
-
| NIGHTSCOUT_API_TOKEN | SHA1 Hash of Nightscout access token | 162f14de46149447c3338a8286223de407e3b2fa | X |
32
-
| NIGHTSCOUT_DISABLE_HTTPS | Disables the HTTPS requirement for Nightscout URLs | true ||
33
-
| NIGHTSCOUT_DEVICE_NAME | Sets the device name used in Nightscout | nightscout-librelink-up ||
34
-
| LOG_LEVEL | The setting of verbosity for logging, should be one of info or debug | info ||
35
-
| SINGLE_SHOT | Disables the scheduler and runs the script just once | true ||
36
-
| ALL_DATA | Upload all available data from LibreLink Up instead of just data newer than last upload. LibreLinkUp sometimes lags behind in reporting recent historical data, so it is advised to run the script with ALL_DATA set to true at least once a day. | true ||
| LINK_UP_USERNAME |LibreLinkUp Login Email |mail@example.com| X |
25
+
| LINK_UP_PASSWORD |LibreLinkUp Login Password | mypassword | X |
26
+
| LINK_UP_CONNECTION |LibreLinkUp Patient-ID. Can be received from the console output if multiple connections are available. | 123456abc-abcd-efgh-7891def ||
27
+
| LINK_UP_TIME_INTERVAL | The time interval (in minutes) of requesting values from LibreLinkUp. | 5 ||
28
+
| LINK_UP_REGION | Your region. Used to determine the correct LibreLinkUp service (Possible values: AE, AP, AU, CA, DE, EU, EU2, FR, JP, US, LA, RU, CN) | EU ||
29
+
| LINK_UP_VERSION |LibreLinkUp App Version. This may need to be updated if you are using a newer version of the LibreLinkUp App.| 4.16.0 ||
30
+
| NIGHTSCOUT_URL | Hostname of the Nightscout instance (without https://) | nightscout.yourdomain.com | X |
31
+
| NIGHTSCOUT_API_TOKEN | SHA1 Hash of Nightscout access token | 162f14de46149447c3338a8286223de407e3b2fa | X |
32
+
| NIGHTSCOUT_DISABLE_HTTPS | Disables the HTTPS requirement for Nightscout URLs | true ||
33
+
| NIGHTSCOUT_DEVICE_NAME | Sets the device name used in Nightscout | nightscout-librelink-up ||
34
+
| LOG_LEVEL | The setting of verbosity for logging, should be one of info or debug | info ||
35
+
| SINGLE_SHOT | Disables the scheduler and runs the script just once | true ||
36
+
| ALL_DATA | Upload all available data from LibreLinkUp instead of just data newer than last upload. LibreLinkUp sometimes lags behind in reporting recent historical data, so it is advised to run the script with ALL_DATA set to true at least once a day. | true ||
37
37
38
38
These variables can be set in your environment or in a `.env` file in the root directory of the project - see `.env.example` for an example (copy this file to `.env` and adjust the values accordingly).
constUSER_AGENT="Mozilla/5.0 (iPhone; CPU OS 17_4.1 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/17.4.1 Mobile/10A5355d Safari/8536.25";
81
81
82
82
/**
83
-
* LibreLink Up API Settings (Don't change this unless you know what you are doing)
83
+
* LibreLinkUp API Settings (Don't change this unless you know what you are doing)
84
84
*/
85
85
constLIBRE_LINK_UP_VERSION=config.linkUpVersion;
86
86
constLIBRE_LINK_UP_PRODUCT="llu.ios";
@@ -129,7 +129,7 @@ async function main(): Promise<void>
129
129
constauthTicket: AuthTicket|null=awaitlogin();
130
130
if(!authTicket)
131
131
{
132
-
logger.error("LibreLink Up - No AuthTicket received. Please check your credentials.");
132
+
logger.error("LibreLinkUp - No AuthTicket received. Please check your credentials.");
0 commit comments