xxxxxxxxxx
39
let url =
"https://script.google.com/macros/s/AKfycbzS0mmCzkfwRi9TIoipZioz0ZPWR3Nb9jcAt-a9swfYgOr4ikFAkTnQJ-LLBBeUfTCS_w/exec?";
let voltage = 0;
let rainfall = 0;
let count = 0;
let GSA_wait = false;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
count++;
//console.log("Timer : "+count + " GSA Wait = "+GSA_wait);
if (count % 500 == 0 && GSA_wait == false) {
voltage = random(1.00, 5.00);
rainfall = random(0.00, 2.00);
console.log("...pushing data");
GSA_wait = true;
httpGet(
url + "voltage=" + voltage + "&" + "rainfall=" + rainfall,
function (response) {
console.log(response);
GSA_wait = false;
}
);
}
}