rossens
rossens
I also look forward to this. Another advantage for SPI over I2C - more sensors can be connected. My understanding is Pi Pico can only support 2 x I2C BME280...
Hmm yeah agreed something strange is going on then. I just checked myself accessing `https://melaniejellis.up.railway.app/` from chrome (windows 10) and had no issues. Also tried wget on a linux box,...
Same issue on a different rig: ``` root@meleAPS:~# node /usr/bin/oref0-get-ns-entries ns-glucose.json https://melaniejellis.up.railway.app xxx Connecting to 192.168.1.1, testing for xDrip API availability Load from local xDrip timed out, likely not connected...
Update on this issue: I use a simpler script to rule out as much other noise as possible: ``` #!/usr/bin/env node 'use strict'; const https = require('https'); https.get('https://melaniejellis.up.railway.app/api/v1/entries/sgv.json?count=1&token=xxx', (resp) =>...
Could another option be to avoid node for the https work? e.g. I tried this which works: ``` #!/usr/bin/env node const { exec } = require('child_process'); exec('curl https://melaniejellis.up.railway.app/api/v1/entries/sgv.json?count=1&token=xxx', (error, stdout,...