xxxxxxxxxx
39
let url =
"https://script.google.com/macros/s/AKfycbxpf0sTNBVWZomE-lhwtE_Nd10S1QEZdTFQ-P6EFdciQqf5bBRvQIzrF5yV77npwNo5lw/exec?";
let temp = 0;
let humidity = 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) {
temp = random(20, 30);
humidity = random(50, 80);
console.log("...pushing data");
GSA_wait = true;
httpGet(
url + "temperature=" + temp + "&" + "humidity=" + humidity,
function (response) {
console.log(response);
GSA_wait = false;
}
);
}
}