test lcoation-log

master
louisa 11 months ago
parent 543b477cca
commit ab70954133

@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}

@ -45,11 +45,7 @@ void sendLoRaData(String data)
Serial.println(data);
LoRa.beginPacket();
<<<<<<< HEAD
LoRa.print("node3 " + data);
=======
LoRa.print(data);
>>>>>>> 26fbc8fed3644b1eef44268b84d09fc87be556a3
LoRa.endPacket();
}

@ -22,12 +22,14 @@
if (node === 'node3' && value === '15') {
// Change the background color to red
document.body.style.backgroundColor = 'red';
} else if (node === 'node4' && value === '21') {
// Change the background color to blue
document.body.style.backgroundColor = 'blue';
} else {
// Restore the default background color
document.body.style.backgroundColor = rgb(26, 26, 26);
document.getElementById('location-log').display = block;
} else if (node === 'node4' && value === '21') {
// Change the background color to blue
document.body.style.backgroundColor = 'blue';
} else {
// Restore the default background color
document.body.style.backgroundColor = rgb(26, 26, 26);
}
});
function sendMessage() {
@ -71,7 +73,10 @@
</div> -->
</div>
<div class="section" id="location-log">
<p>user 15 entered zone 4</p>
</div>
<div class="section" id="nav-console">
<p>DISTANCE: <span id="distance">0</span> km</p>
@ -103,7 +108,7 @@
<div class="section" id="back2" onclick="backAgain2()">
↪ log
</div>
<div class="section" id="log1">
<p onclick="log1Open()">LOG 1 03:02:00 02-04-22 PORT: 9.1.13.<br></p>

@ -330,4 +330,8 @@ button:active{
transform: translateX(-50%) translateY(-50%);
z-index: -10;
}
.embed{width: 100%}
.embed{width: 100%}
#location-log{
display: none;
}
Loading…
Cancel
Save