Hi, can someone please explain to me why there is a missing terminal " character in the codes below?
void loop() {
// Construct a Flux query
// Query will find the worst RSSI for last hour for each connected WiFi network with this device
String query = "from(bucket: "" INFLUXDB_BUCKET "")
|> range(start: -1h)
|> filter(fn: (r) => r._measurement == "wifi_status" and r._field == "rssi" and r.device == "" DEVICE "")
|> min()";
I assumed the OP was paraphrasing an error thrown somewhere by something.
I further assume that the double quotes, two " in a row, are not being handled as desired, irrespective of the possibility that the "" syntax is used elsewhere (other programming languages or) to mean ".
And I'm tired of wrestling with markdown over the quoting of quotes.