Mining & Construction Cabin Safety
.const-btn{
width:100%;
margin: 5px 0;
}
Vehicle |
Add
Cabin Air Quality to same System |
Add |
Add |
Inclinometer (Slope Monitor) | Cabin Positive Pressure | Battery Monitor | ✔ |
Pitch (Forward / Backwards) | Cabin CO2 | Fuel tank Monitor | ✔ |
Roll (Sideways) | Cabin Dust PM1, PM2.5, PM10 | Oil Pressure | ✔ |
Cabin Temperature | Engine Temperature | ✔ |
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function currentDiv(n) {
showDivs(slideIndex = n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName(“homeimageswap”);
var dots = document.getElementsByClassName(“demo”);
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" w3-red", "");
}
x[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " w3-red";
}