| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>{{ title }}</title>    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">    <meta http-equiv="refresh" content="300" /><!-- <meta http-equiv="refresh" content="5" />  每 content 秒網頁自動更新-->    <!-- 新 Bootstrap4 核心 CSS 文件 -->    <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.1.0/css/bootstrap.min.css">    <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->    <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>    <!-- popper.min.js 用于弹窗、提示、下拉菜单 -->    <script src="https://cdn.bootcss.com/popper.js/1.12.5/umd/popper.min.js"></script>    <!-- 最新的 Bootstrap4 核心 JavaScript 文件 -->    <script src="https://cdn.bootcss.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>    <!--可用來建立使用者小圖示-->    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">    <script language="JavaScript">        // 指定 秒 刷新網頁一次        var dtn = '{{tid}}';        console.log('dtn:' + dtn)        $(function(){            $("#dry_tank_page").text('乾燥槽 D' + dtn + ' 攝影機畫面   ')            $('#dry_tank_page').attr("href", "/camera_D" + dtn)            $("#dry_container_title").text('乾燥槽 D' + dtn + ' 操作介面')        });        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000)    </script>    <style>        .footer{            position: absolute;            width: 100%;            background-color: #eee;            text-align: center;        }        body {            margin: 0;        }        .navbar-dark .navbar-nav .nav-link {            color: white;            cursor: pointer;            text-decoration: none;            width: 110px;            height: 46px;        }        .nav-top {            line-height: 40px;            background-color: #C4C4C4;        }        .website_title {            font-family: Roboto;            font-style: normal;            font-weight: normal;            font-size: 30px;            color: #000000;        }        .navbar-nav>li {            float: none;            display: inline-block;            width: 100px;            margin: 0 auto;            text-align: center;        }        .navbar-nav>li a {            font-size: 20px;        }        .main-page {            margin-top: 200px;        }        .page-title {            font-family: Roboto;            font-style: normal;            font-weight: bold;            font-size: 36px;        }        .flex {            display: flex;            flex-direction: row;            flex-wrap: wrap;            justify-content: center;        }        .set-link {            display: inline-block;            width: 350px;            height: 100px;            line-height: 100px;            background: #008CBA;            border: 1px solid #CFCFCF;            box-sizing: border-box;            color: #FFFFFF;            border-radius: 10px;            font-size: 36px;        }        .cmn-toggle {            position: absolute;            margin-left: 0px;            visibility: hidden;        }        .cmn-toggle+label {            display: block;            position: relative;            cursor: pointer;            outline: none;            user-select: none;        }        input.cmn-toggle-round-flat+label {            padding: 2px;            width: 60px;            height: 30px;            background-color: #C0C0C0;            border-radius: 60px;            transition: background 0.4s;        }        input.cmn-toggle-round-flat+label:before,        input.cmn-toggle-round-flat+label:after {            display: block;            position: absolute;            content: "";        }        input.cmn-toggle-round-flat+label:before {            top: 2px;            left: 2px;            bottom: 2px;            right: 2px;            background-color: #fff;            border-radius: 60px;            transition: background 0.4s;        }        input.cmn-toggle-round-flat+label:after {            top: 4px;            left: 4px;            bottom: 4px;            width: 24px;            background-color: #dddddd;            border-radius: 52px;            transition: margin 0.4s, background 0.4s;        }        input.cmn-toggle-round-flat:checked+label {            background-color: #C0C0C0;        }        input.cmn-toggle-round-flat:checked+label:after {            margin-left: 27px;            background-color: #008CBA;        }        @media(max-width:373px) {            .card {                margin-right: 0px;            }            .set-link {                width: 250px;            }        }        @media(max-width:577px) {}        @media(min-width:576px) {}        @media(min-width:768px) {            .navbar-nav>li {                margin-left: 0px;            }            .navbar-nav .li-block {                display: none;            }        }        @media(min-width:991px) {            .navbar-nav>li {                margin-left: 20px;            }            .navbar-nav .li-block {                display: none;            }        }        @media(min-width:1200px) {            .navbar-nav>li {                margin-left: 50px;            }            .navbar-nav .li-block {                display: inline-block;                width: 100px;            }        }        @media(min-width:1400px) {            .navbar-nav .li-block {                display: inline-block;                width: 200px;            }        }        @media(min-width:1689px) {            .navbar-nav>li {                margin-left: 50px;            }            .navbar-nav .li-block {                display: inline-block;                width: 500px;            }        }    </style>    <script>        // Rita 制動器運作        var tank_num = '{{tid}}';        // Benson 真空吸料機 (START)入料儲豆槽        function inputVacuum() {            var status = "off";            var check = $("input[name=input_vacuum_status]:checked");  // 這裡面是 jQuery 撈取資料的方法, jQuery 常使用到 $ 錢字號            console.log('check:', check);            //大於0代表有被選中, 如果有多個可以呈現勾取的項目數量            if (check.length > 0) {                status = "on";                $("#cmn-toggle-02").prop('checked', false); // 設定為不要勾選                if (!confirm("你確定要開啟入料儲豆槽真空吸料機嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-02").prop('checked', true); // 設定為勾選                if (!confirm("你確定要關閉入料儲豆槽真空吸料機嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "input_vacuum_status", "value": status };            // jquery 請求 '/mqtt/{{tid}}' 頁面            $.post('/mqtt/{{tid}}', data, function (res) {      //res:HTTP response argument to the middleware function                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-02").prop('checked', true);                    setTimeout("alert('入料儲豆槽真空吸料機_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-02").prop('checked', false);                    setTimeout("alert('入料儲豆槽真空吸料機_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')        };        function inputVacuum_ON() {            var data = { "tank_num": "D" + tank_num, "command": "input_vacuum_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-02").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-02").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function inputVacuum_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "input_vacuum_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-02").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-02").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson 真空吸料機 (END)入料儲豆槽        // Benson 真空吸料機 (START)        function tankVacuum() {            var status = "off";            var check = $("input[name=tank_vacuum_status]:checked");            console.log('check:', check);            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-05").prop('checked', false);                if (!confirm("你確定要開啟真空吸料機嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-05").prop('checked', true);                if (!confirm("你確定要關閉真空吸料機嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_vacuum_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-05").prop('checked', true);                    setTimeout("alert('真空吸料機_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-05").prop('checked', false);                    setTimeout("alert('真空吸料機_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_vacuum == 0) {                    $("#cmn-toggle-05").prop('checked', false);                } else if (res.tank_vacuum == 1) {                    $("#cmn-toggle-05").prop('checked', true);                }            }, 'json');        };        function tankVacuum_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_vacuum_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-05").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-05").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankVacuum_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_vacuum_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-05").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-05").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson 真空吸料機 (END)        function tankThreeWayValve() {            //<!--setInterval(Relay,10000);-->            var status = "off";            var check = $("input[name=tank_threewayvalve_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-08").prop('checked', false);                if (!confirm("你確定要開啟三通閥嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-08").prop('checked', true);                if (!confirm("你確定要關閉三通閥嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_threewayvalve_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-08").prop('checked', true);                    setTimeout("alert('三通閥入料_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-08").prop('checked', false);                    setTimeout("alert('三通閥排氣_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_threewayvalve == 0) {                    $("#cmn-toggle-08").prop('checked', false);                } else if (res.tank_threewayvalve == 1) {                    $("#cmn-toggle-08").prop('checked', true);                }            }, 'json');        };        function tankThreeWayValve_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_threewayvalve_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-08").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-08").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankThreeWayValve_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_threewayvalve_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-08").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-08").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson cargo2_actuator.html 控制蝴蝶閥函數 (START)        function tankDiskValve() {            //<!--setInterval(Relay,10000);-->            var status = "off";            var check = $("input[name=tank_diskvalve_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-11").prop('checked', false);                if (!confirm("你確定要開啟蝴蝶閥嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-11").prop('checked', true);                if (!confirm("你確定要關閉蝴蝶閥嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_diskvalve_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-11").prop('checked', true);                    setTimeout("alert('蝴蝶閥_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-11").prop('checked', false);                    setTimeout("alert('蝴蝶閥_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_diskvalve == 0) {                    $("#cmn-toggle-11").prop('checked', false);                } else if (res.tank_diskvalve == 1) {                    $("#cmn-toggle-11").prop('checked', true);                }            }, 'json');        };        function tankDiskValve_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_diskvalve_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-11").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-11").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankDiskValve_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_diskvalve_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-11").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-11").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson cargo2_actuator.html 控制蝴蝶閥函數 (END)        // Benson cargo2_actuator.html 閥 (START) 電磁閥消毒        function tankSolenoidDisinfect() {            var status = "off";            var check = $("input[name=tank_solenoid_disinfect_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-14").prop('checked', false);                if (!confirm("你確定要開啟電磁閥消毒嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-14").prop('checked', true);                if (!confirm("你確定要關閉消毒電磁閥嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_solenoid_disinfect_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-14").prop('checked', true);                    setTimeout("alert('電磁閥消毒_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-14").prop('checked', false);                    setTimeout("alert('電磁閥消毒_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_solenoid_disinfect == 0) {                    $("#cmn-toggle-14").prop('checked', false);                } else if (res.tank_solenoid_disinfect == 1) {                    $("#cmn-toggle-14").prop('checked', true);                }            }, 'json');        };        function tankSolenoidDisinfect_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_solenoid_disinfect_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-14").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-14").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankSolenoidDisinfect_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_solenoid_disinfect_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-14").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-14").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson cargo2_actuator.html 閥 (END) 電磁閥消毒        // Benson cargo2_actuator.html 閥 (START) 電磁閥排水        function tankSolenoidWater() {            var status = "off";            var check = $("input[name=tank_solenoid_water_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-17").prop('checked', false);                if (!confirm("你確定要開啟電磁閥排水嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-17").prop('checked', true);                if (!confirm("你確定要關閉排水電磁閥嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_solenoid_water_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-17").prop('checked', true);                    setTimeout("alert('電磁閥排水_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-17").prop('checked', false);                    setTimeout("alert('電磁閥排水_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_solenoid_water == 0) {                    $("#cmn-toggle-17").prop('checked', false);                } else if (res.tank_solenoid_water == 1) {                    $("#cmn-toggle-17").prop('checked', true);                }            }, 'json');        };        function tankSolenoidWater_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_solenoid_water_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-17").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-17").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankSolenoidWater_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_solenoid_water_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-17").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-17").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson cargo2_actuator.html 閥 (END) 電磁閥排水        /*        function Motor() {            $.get('/peeling', '', function (res) {                //console.log(res.peeling);                $("#motor_rpm_status").text(res.peeling + ' rpm(每1分鐘更新一次)');            }, 'json');        };        function ChangeMotor() {            var motor_data = $("input[name=tank_motor_status]").val();            if (!confirm("你確定要更改轉速為" + motor_data + "嗎?")) {                return false;            };            var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": motor_data };            console.log('data:', data)            $.post('/mqtt/{{tid}}', data, function (res) {                if (res == 'on') {                    alert('更改成功');                } else {                    alert(res);                };            }, 'text');            setTimeout(function(){ location.reload(); }, 500);        };        */        // Benson cargo2_actuator.html 脫皮機馬達 (START) 馬達攪拌棒        function ChangeMotor() {            var motor_data = $("input[id=motor_rpm_data]").val();            if (motor_data == '') {                //$("#cmn-toggle-20").prop('checked', false);                alert("請先輸入要運轉的值!");                return false;            } else if (motor_data == 0) {                alert("轉速 0 為關閉馬達");            } else if (Number(motor_data) < -50 || Number(motor_data) > 50 || !Number(motor_data)) {                //                 //$("#cmn-toggle-20").prop('checked', false);                alert("您輸入的值已超過範圍,請重新輸入!" + !Number(motor_data));                return false;            };            var value = "off";            //var check = $("input[name=peeling-machine-on]:checked");            if (motor_data != 0) {                value = motor_data;                //$("#cmn-toggle-20").prop('checked', false);                if (!confirm("你確定要開啟攪拌馬達,運轉速度為 " + motor_data + " RPM 嗎?")) {                    return false;                };            } else {                //$("#cmn-toggle-20").prop('checked', true);                if (!confirm("你確定要關閉攪拌馬達嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": motor_data };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    //$("#cmn-toggle-14").prop('checked', true); // prop 設置元素屬型與元素值, 設定 checked 屬性為 true                    setTimeout("alert('攪拌馬達_開啟成功!')", 500); // 設定時間執行函式 delay(500), 只執行一次                    var timer = setInterval(Rotate, 60000); // 啟動後會在 60000 毫秒(更新時間一分鐘)內不斷執行 (原因須配合更新時間?)                } else if (res == 'off') {                    //$("#cmn-toggle-14").prop('checked', false);                    setTimeout("alert('攪拌馬達_關閉成功!')", 500);                    clearInterval(timer);                   // 取消 timer 的不斷執行                    $("#motor_rpm_status").text('');        // 設置 #motor_rpm_status 的文字為空, #井字號                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                $("#motor_rpm_data").attr("placeholder", res.tank_motor)            }, 'json');        };        function ChangeMotor_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": "20" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    var timer = setInterval(Rotate, 60000);                } else if (res == 'off') {                    clearInterval(timer);                    $("#motor_rpm_status").text('');                } else {                    console.log('res error')                };            }, 'text')        }        function ChangeMotor_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": "0" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    var timer = setInterval(Rotate, 60000);                } else if (res == 'off') {                    clearInterval(timer);                    $("#motor_rpm_status").text('');                } else {                    console.log('res error')                };            }, 'text')        }        function Rotate() {            $.get('/peeling', '', function (res) {                //console.log(res.peeling);                $("#motor_rpm_status-status").text(res.peeling + ' rpm(每1分鐘更新一次)');            }, 'json');            setTimeout(function () { location.reload(); }, 500);        };        // Benson cargo2_actuator.html 脫皮機馬達 (END) 馬達攪拌棒        // Benson cargo2_actuator.html 鼓風機機 (START)        // 鼓風機函數        function tankBlower() {            var status = "off";            var check = $("input[name=tank_blower_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-23").prop('checked', false);                if (!confirm("你確定要開啟鼓風機嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-23").prop('checked', true);                if (!confirm("你確定要關閉鼓風機嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_blower_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-23").prop('checked', true);                    setTimeout("alert('鼓風機_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-23").prop('checked', false);                    setTimeout("alert('鼓風機_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_blower == 0) {                    $("#cmn-toggle-23").prop('checked', false);                } else if (res.tank_blower == 1) {                    $("#cmn-toggle-23").prop('checked', true);                }            }, 'json');        };        function tankBlower_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_blower_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-23").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-23").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankBlower_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_blower_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-23").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-23").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson cargo2_actuator.html 鼓風機 (START)        //電熱管1函數        function tankHeater1() {            var status = "off";            var check = $("input[name=tank_heater1_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-26").prop('checked', false);                if (!confirm("你確定要開啟電熱管1嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-26").prop('checked', true);                if (!confirm("你確定要關閉電熱管1嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_heater1_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-26").prop('checked', true);                    setTimeout("alert('電熱管1_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-26").prop('checked', false);                    setTimeout("alert('電熱管1_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_heater1 == 0) {                    $("#cmn-toggle-26").prop('checked', false);                } else if (res.tank_heater1 == 1) {                    $("#cmn-toggle-26").prop('checked', true);                }            }, 'json');        };        function tankHeater1_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_heater1_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-26").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-26").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankHeater1_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_heater1_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-26").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-26").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        //電熱管2函數        function tankHeater2() {            var status = "off";            var check = $("input[name=tank_heater2_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-29").prop('checked', false);                if (!confirm("你確定要開啟電熱管2嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-29").prop('checked', true);                if (!confirm("你確定要關閉電熱管2嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "tank_heater2_status", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-29").prop('checked', true);                    setTimeout("alert('電熱管2_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-29").prop('checked', false);                    setTimeout("alert('電熱管2_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_heater2 == 0) {                    $("#cmn-toggle-29").prop('checked', false);                } else if (res.tank_heater2 == 1) {                    $("#cmn-toggle-29").prop('checked', true);                }            }, 'json');        };        function tankHeater2_ON() {            var data = { "tank_num": "D" + tank_num, "command": "tank_heater2_status", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-29").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-29").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankHeater2_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "tank_heater2_status", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-29").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-29").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // 溫度控制         function tankTemp1Enable() {            var status = "off";            var check = $("input[name=tank_temp1_enable_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-35").prop('checked', false);                if (!confirm("你確定要開啟溫度控制嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-35").prop('checked', true);                if (!confirm("你確定要關閉溫度控制嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "temp1_enable", "value": status };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-35").prop('checked', true);                    setTimeout("alert('溫度控制_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-35").prop('checked', false);                    setTimeout("alert('溫度控制_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                if (res.tank_temp1_enable == 0) {                    $("#cmn-toggle-35").prop('checked', false);                } else if (res.tank_temp1_enable == 1) {                    $("#cmn-toggle-35").prop('checked', true);                }            }, 'json');        };        function tankTemp1Enable_ON() {            var data = { "tank_num": "D" + tank_num, "command": "temp1_enable", "value": "on" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-35").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-35").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function tankTemp1Enable_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "temp1_enable", "value": "off" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    $("#cmn-toggle-35").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-35").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        /* 判斷是否整數        function isInteger(obj) {            return obj % 1 === 0        }        isInteger(3) // true        */        // 設定溫度        /*        <h2>溫度控制設定(單位 ℃):(目前設定溫度) {{tank_temp1}}</h2>            <input name="tank_temp1_data" type="text" placeholder="{{tank_temp1}}" style="width: 40px;">℃ (限整數數值)            <span id="tank_temp1_status" style="color:red;"></span>            <input type="button" value="送出(設定溫度時請點擊)" name="tank_temp1_status" onclick="ChangeTemp1()">        */        function ChangeTemp1() {            var temp_data = $("input[id=tank_temp1_data]").val();            if (temp_data == '') {                //$("#cmn-toggle-20").prop('checked', false);                alert("請先輸入設定溫度!");                return false;            }            var value = "0";            //var check = $("input[name=peeling-machine-on]:checked");            if ($("#cmn-toggle-35").prop('checked')) {                value = temp_data;                //$("#cmn-toggle-20").prop('checked', false);                if (!confirm("你確定要設定內桶溫度為 " + temp_data + " ℃ 嗎?")) {                    return false;                };            } else {                //$("#cmn-toggle-20").prop('checked', true);                //你確定要停止桶內溫度設定嗎                if (!confirm("請先開啟溫控開關, 再設定桶內溫度")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "temp1", "value": temp_data };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)                if (res == 'on') {                    //$("#cmn-toggle-14").prop('checked', true); // prop 設置元素屬型與元素值, 設定 checked 屬性為 true                    setTimeout("alert('溫度設定_開啟成功!')", 500); // 設定時間執行函式 delay(500), 只執行一次                    var timer = setInterval(Rotate, 60000); // 啟動後會在 60000 毫秒(更新時間一分鐘)內不斷執行 (原因須配合更新時間?)                } else if (res == 'off') {                    //$("#cmn-toggle-14").prop('checked', false);                    setTimeout("alert('溫度設定_關閉成功!')", 500);                    clearInterval(timer);                   // 取消 timer 的不斷執行                    $("#motor_rpm_status").text('');        // 設置 #motor_rpm_status 的文字為空, #井字號                } else {                    alert(res);                };            }, 'text')            $.get('/loading/D{{tid}}', '', function (res) {                $("#tank_temp1_data").attr("placeholder", res.tank_temp1);            }, 'json');        };        function ChangeTemp1_ON() {            var data = { "tank_num": "D" + tank_num, "command": "temp1", "value": "30" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)            }, 'text')        }        function ChangeTemp1_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "temp1", "value": "25" };            $.post('/mqtt/{{tid}}', data, function (res) {                console.log('data:', data)            }, 'text')        }        // Benson 真空吸料機 (START) 出料儲豆槽        function outputVacuum() {            var status = "off";            var check = $("input[name=output_vacuum_status]:checked");            //大於0代表有被選中            if (check.length > 0) {                status = "on";                $("#cmn-toggle-32").prop('checked', false);                if (!confirm("你確定要開啟出料儲豆槽真空吸料機嗎?")) {                    return false;                };            } else {                $("#cmn-toggle-32").prop('checked', true);                if (!confirm("你確定要關閉出料儲豆槽真空吸料機嗎?")) {                    return false;                };            };            var data = { "tank_num": "D" + tank_num, "command": "output_vacuum_status", "value": status };            console.log('data:', data)            $.post('/mqtt/{{tid}}', data, function (res) {                if (res == 'on') {                    $("#cmn-toggle-32").prop('checked', true);                    setTimeout("alert('出料儲豆槽真空吸料機_開啟成功!')", 500);                } else if (res == 'off') {                    $("#cmn-toggle-32").prop('checked', false);                    setTimeout("alert('出料儲豆槽真空吸料機_關閉成功!')", 500);                } else {                    alert(res);                };            }, 'text')        };        function outputVacuum_ON() {            var data = { "tank_num": "D" + tank_num, "command": "output_vacuum_status", "value": "on" };            console.log('data:', data)            $.post('/mqtt/{{tid}}', data, function (res) {                if (res == 'on') {                    $("#cmn-toggle-32").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-32").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        function outputVacuum_OFF() {            var data = { "tank_num": "D" + tank_num, "command": "output_vacuum_status", "value": "off" };            console.log('data:', data)            $.post('/mqtt/{{tid}}', data, function (res) {                if (res == 'on') {                    $("#cmn-toggle-32").prop('checked', true);                } else if (res == 'off') {                    $("#cmn-toggle-32").prop('checked', false);                } else {                    console.log('res error')                };            }, 'text')        }        // Benson 真空吸料機 (END) 出料儲豆槽    </script></head><body>    <div style="text-align: left;">        <a href="/dry" style="float: left;">   返回乾燥貨櫃首頁</a>    </div>    <div style="text-align: right;">        <a id="dry_tank_page" href="/index_new" style="float: right;">___________________</a>    </div>    <div id="dry_container_title" style="text-align: center; margin-top: 30px; font-size: 24px; margin-bottom: 15px;">        乾燥槽 D 操作介面    </div>    狀態更新時間(秒):    <input name="webupdate_time" type="text" value="5" style="width: 40px;">    <input type="button" value="設定更新時間" onclick="changeUpdate()">    <script language="JavaScript">                function changeUpdate() {            clearInterval(WebUpdate_set);            var webupdate_time = $("input[name=webupdate_time]").val()            console.log('webupdate_time' + webupdate_time)            WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , webupdate_time * 1000);        }        // jQuery 更新感測器制動器狀態        function WebUpdate(dtn) {            $.get('/loading/D' + dtn, '', function (res) {                if (res.tank_vacuum == 0) {                    $("#cmn-toggle-05").prop('checked', false);                } else if (res.tank_vacuum == 1) {                    $("#cmn-toggle-05").prop('checked', true);                }                if (res.tank_threewayvalve == 0) {                    $("#cmn-toggle-08").prop('checked', false);                } else if (res.tank_threewayvalve == 1) {                    $("#cmn-toggle-08").prop('checked', true);                }                if (res.tank_diskvalve == 0) {                    $("#cmn-toggle-11").prop('checked', false);                } else if (res.tank_diskvalve == 1) {                    $("#cmn-toggle-11").prop('checked', true);                }                if (res.tank_solenoid_disinfect == 0) {                    $("#cmn-toggle-14").prop('checked', false);                } else if (res.tank_solenoid_disinfect == 1) {                    $("#cmn-toggle-14").prop('checked', true);                }                if (res.tank_solenoid_water == 0) {                    $("#cmn-toggle-17").prop('checked', false);                } else if (res.tank_solenoid_water == 1) {                    $("#cmn-toggle-17").prop('checked', true);                }                if (res.tank_blower == 0) {                    $("#cmn-toggle-23").prop('checked', false);                } else if (res.tank_blower == 1) {                    $("#cmn-toggle-23").prop('checked', true);                }                if (res.tank_heater1 == 0) {                    $("#cmn-toggle-26").prop('checked', false);                } else if (res.tank_heater1 == 1) {                    $("#cmn-toggle-26").prop('checked', true);                }                if (res.tank_heater2 == 0) {                    $("#cmn-toggle-29").prop('checked', false);                } else if (res.tank_heater2 == 1) {                    $("#cmn-toggle-29").prop('checked', true);                }                if (res.tank_temp1_enable == 0) {                    $("#cmn-toggle-35").prop('checked', false);                } else if (res.tank_temp1_enable == 1) {                    $("#cmn-toggle-35").prop('checked', true);                }                                $("#motor_rpm_data").attr("placeholder", res.tank_motor);                $("#tank_temp1_data").attr("placeholder", res.tank_temp1);                $("#UltraSonic_t_status").text(res.UltraSonic);                $("#SHT11_Temp_t_status").text(res.SHT11_Temp);                $("#SHT11_Humidity_t_status").text(res.SHT11_Humidity);                $("#soil_Temp_t_status").text(res.soil_Temp);                $("#soil_Humidity_t_status").text(res.soil_Humidity);                $("#soil_EC_t_status").text(res.soil_EC);                $("#PA_t_status").text(res.PA);                var float_SHT11_Temp = parseFloat(res.SHT11_Temp);            }, 'json');        }    </script>    <h4>制動器</h4>        <table border="1" style="font-size:18px; border:2px #cccccc solid; margin-left: 2px; margin-right: 2px;" width=98%>        <tr>            <td style="color:red;">Valve</td>            <td>入料<br>真空吸料機</td>            <td>乾燥桶<br>真空吸料機</td>            <td>三通閥</td>            <td>桶內消毒<br>電磁閥</td>            <td>馬達</td>            <td>鼓風機</td>            <td>加熱器 1</td>            <td>加熱器 2</td>            <td>溫控開關</td>            <td>溫度設定</td>            <td>排水<br>電磁閥</td>            <td>蝴蝶閥</td>            <td>出料<br>真空吸料機</td>        </tr>        <tr>            <td>                <span style="color:#C0C0C0;">off</span>                <span style="color:#008CBA;">on</span>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-01" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-01"></label>                    </div>                    <div class="switch text-center">                        {% if input_vacuum == 1 %}                        <input id="cmn-toggle-02" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="input_vacuum_status" value="ON" onclick="inputVacuum()">                        {% else %}                        <input id="cmn-toggle-02" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="input_vacuum_status" value="OFF" onclick="inputVacuum()">                        {% endif %}                        <label for="cmn-toggle-02"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-03" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-03" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-04" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-04"></label>                    </div>                    <div class="switch text-center">                        {% if tank_vacuum == 1 %}                        <input id="cmn-toggle-05" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_vacuum_status" value="ON" onclick="tankVacuum()">                        {% else %}                        <input id="cmn-toggle-05" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_vacuum_status" value="OFF" onclick="tankVacuum()">                        {% endif %}                        <label for="cmn-toggle-05"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-06" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-06" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-07" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-07"></label>                    </div>                    <div class="switch text-center">                        {% if tank_threewayvalve == 1 %}                        <input id="cmn-toggle-08" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_threewayvalve_status" value="ON" onclick="tankThreeWayValve()">                        {% else %}                        <input id="cmn-toggle-08" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_threewayvalve_status" value="OFF" onclick="tankThreeWayValve()">                        {% endif %}                        <label for="cmn-toggle-08"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-09" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-09" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-13" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-13"></label>                    </div>                    <div class="switch text-center">                        {% if tank_solenoid_disinfect == 1 %}                        <input id="cmn-toggle-14" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_solenoid_disinfect_status" value="ON" onclick="tankSolenoidDisinfect()">                        {% else %}                        <input id="cmn-toggle-14" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_solenoid_disinfect_status" value="OFF" onclick="tankSolenoidDisinfect()">                        {% endif %}                        <label for="cmn-toggle-14"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-15" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-15" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <input id="motor_rpm_data" type="text" placeholder="{{tank_motor}}" style="width: 40px;">                <span style="font-size: 12px;" >RPM (±50)</span>                <span id="motor_rpm_status" style="color:red;"></span>                <br>                <input type="button" value="送出" name="tank_motor_status" onclick="ChangeMotor()">            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-22" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-22"></label>                    </div>                    <div class="switch text-center">                        {% if tank_blower == 1 %}                        <input id="cmn-toggle-23" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_blower_status" value="ON" onclick="tankBlower()">                        {% else %}                        <input id="cmn-toggle-23" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_blower_status" value="OFF" onclick="tankBlower()">                        {% endif %}                        <label for="cmn-toggle-23"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-24" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-24" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-25" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-25"></label>                    </div>                    <div class="switch text-center">                        {% if tank_heater1 == 1 %}                        <input id="cmn-toggle-26" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_heater1_status" value="ON" onclick="tankHeater1()">                        {% else %}                        <input id="cmn-toggle-26" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_heater1_status" value="OFF" onclick="tankHeater1()">                        {% endif %}                        <label for="cmn-toggle-26"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-27" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-27" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-28" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-28"></label>                    </div>                    <div class="switch text-center">                        {% if tank_heater2== 1 %}                        <input id="cmn-toggle-29" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_heater2_status" value="ON" onclick="tankHeater2()">                        {% else %}                        <input id="cmn-toggle-29" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_heater2_status" value="OFF" onclick="tankHeater2()">                        {% endif %}                        <label for="cmn-toggle-29"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-30" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-30" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-34" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-34"></label>                    </div>                    <div class="switch text-center">                        {% if tank_temp1_enable== 1 %}                        <input id="cmn-toggle-35" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_temp1_enable_status" value="ON" onclick="tankTemp1Enable()">                        {% else %}                        <input id="cmn-toggle-35" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_temp1_enable_status" value="OFF" onclick="tankTemp1Enable()">                        {% endif %}                        <label for="cmn-toggle-35"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-36" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-36" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <input id="tank_temp1_data" type="text" placeholder="{{tank_temp1}}" style="width: 40px;">℃                <span id="tank_temp1_status" style="color:red;"></span>                <br>                <input type="button" value="送出" name="tank_temp1_status" onclick="ChangeTemp1()">            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-16" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-16"></label>                    </div>                    <div class="switch text-center">                        {% if tank_solenoid_water== 1 %}                        <input id="cmn-toggle-17" class="cmn-toggle cmn-toggle-round-flat" checked type="checkbox"                            name="tank_solenoid_water_status" value="ON" onclick="tankSolenoidWater()">                        {% else %}                        <input id="cmn-toggle-17" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_solenoid_water_status" value="OFF" onclick="tankSolenoidWater()">                        {% endif %}                        <label for="cmn-toggle-17"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-18" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-18" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-10" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-10"></label>                    </div>                    <div class="switch text-center">                        {% if tank_diskvalve== 1 %}                        <input id="cmn-toggle-11" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="tank_diskvalve_status" value="ON" onclick="tankDiskValve()">                        {% else %}                        <input id="cmn-toggle-11" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="tank_diskvalve_status" value="OFF" onclick="tankDiskValve()">                        {% endif %}                        <label for="cmn-toggle-11"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-12" class="cmn-toggle cmn-toggle-on-off" type="checkbox">                        <label for="cmn-toggle-12" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>            <td>                <div class="switch_div">                    <div class="switch">                        <input id="cmn-toggle-31" class="cmn-toggle cmn-toggle-round" type="checkbox">                        <label for="cmn-toggle-31"></label>                    </div>                    <div class="switch text-center">                        {% if output_vacuum== 1 %}                        <input id="cmn-toggle-32" class="cmn-toggle cmn-toggle-round-flat" type="checkbox" checked                            name="output_vacuum_status" value="ON" onclick="outputVacuum()">                        {% else %}                        <input id="cmn-toggle-32" class="cmn-toggle cmn-toggle-round-flat" type="checkbox"                            name="output_vacuum_status" value="OFF" onclick="outputVacuum()">                        {% endif %}                        <label for="cmn-toggle-32"></label>                    </div>                    <div class="switch">                        <input id="cmn-toggle-33" class="cmn-toggle cmn-toggle-yes-no" type="checkbox">                        <label for="cmn-toggle-33" data-on="Yes" data-off="No"></label>                    </div>                </div>            </td>        </tr>        <tr>            <td><span style="color:#008CBA;"><b>ON</b></span></td>            <td><input type="button" value="ON" onclick="inputVacuum_ON()"></td>            <td><input type="button" value="ON" onclick="tankVacuum_ON()"></td>            <td><input type="button" value="ON" onclick="tankThreeWayValve_ON()"></td>            <td><input type="button" value="ON" onclick="tankSolenoidDisinfect_ON()"></td>            <td><input type="button" value="ON" onclick="ChangeMotor_ON()"></td>            <td><input type="button" value="ON" onclick="tankBlower_ON()"></td>            <td><input type="button" value="ON" onclick="tankHeater1_ON()"></td>            <td><input type="button" value="ON" onclick="tankHeater2_ON()"></td>            <td><input type="button" value="ON" onclick="tankTemp1Enable_ON()"></td>            <td><input type="button" value="ON" onclick="ChangeTemp1_ON()"></td>            <td><input type="button" value="ON" onclick="tankSolenoidWater_ON()"></td>            <td><input type="button" value="ON" onclick="tankDiskValve_ON()"></td>            <td><input type="button" value="ON" onclick="outputVacuum_ON()"></td>        </tr>        <tr>            <td><span style="color:#C0C0C0;"><b>OFF</b></span></td>            <td><input type="button" value="OFF" onclick="inputVacuum_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankVacuum_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankThreeWayValve_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankSolenoidDisinfect_OFF()"></td>            <td><input type="button" value="OFF" onclick="ChangeMotor_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankBlower_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankHeater1_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankHeater2_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankTemp1Enable_OFF()"></td>            <td><input type="button" value="OFF" onclick="ChangeTemp1_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankSolenoidWater_OFF()"></td>            <td><input type="button" value="OFF" onclick="tankDiskValve_OFF()"></td>            <td><input type="button" value="OFF" onclick="outputVacuum_OFF()"></td>        </tr>    </table>    <br>    <h4>感測器</h4>    <table border="1" style="font-size:18px; border:2px #cccccc solid; margin-left: 2px; margin-right: 2px;" cellpadding="10" width=98%>        <tr>            <td colspan="6">[入料儲豆槽] 生豆高度:{{input_UltraSonic.UltraSonic}} 公分</td>        </tr>        <tr>            <td colspan="6">[桶內] 生豆高度:<span id="UltraSonic_t_status">{{tank_UltraSonic.UltraSonic}}</span> 公分</td>        </tr>        <tr>            <td style="background-color:#f3f3f3">桶內溫度</td>            <td><span id="SHT11_Temp_t_status">{{tank_SHT11.SHT11_Temp}}</span> ℃</td>            <td style="background-color:#f3f3f3">桶內濕度</td>            <td><span id="SHT11_Humidity_t_status">{{tank_SHT11.SHT11_Humidity}}</span> %</td>            <td style="background-color:#f3f3f3">桶內壓力</td>            <td><span id="PA_t_status">{{tank_PA.PA}}</span> Pa</td>        </tr>        <tr>            <td style="background-color:#f3f3f3">咖啡生豆溫度</td>            <td><span id="soil_Temp_t_status">{{tank_Soil.soil_Temp}}</span> ℃</td>            <td style="background-color:#f3f3f3">咖啡生豆濕度</td>            <td><span id="soil_Humidity_t_status">{{tank_Soil.soil_Humidity}}</span> %</td>            <td style="background-color:#f3f3f3">咖啡生豆 EC</td>            <td><span id="soil_EC_t_status">{{tank_Soil.soil_EC}}</span> uS/cm</td>        </tr>        <tr>            <td colspan="6">[出料儲豆槽] 生豆高度:{{output_UltraSonic.UltraSonic}} 公分</td>        </tr>    </table><!--    <div id="input_UltraSonic" d={{input_UltraSonic.UltraSonic}} style="display:none"></div>    <div id="tank_Temp" d={{tank_SHT11.SHT11_Temp}} style="display:none"></div>    <div id="tank_EC" d={{tank_SHT11.SHT11_Humidity}} style="display:none"></div>    <div id="tank_EC" d={{tank_Soil.soil_Temp}} style="display:none"></div>    <div id="tank_EC" d={{tank_Soil.soil_Humidity}} style="display:none"></div>    <div id="tank_EC" d={{tank_Soil.soil_EC}} style="display:none"></div>    <div id="tank_PA" d={{tank_PA.PA}} style="display:none"></div>    <div id="tank_UltraSonic" d={{tank_UltraSonic.UltraSonic}} style="display:none"></div>    <div id="output_UltraSonic" d={{output_UltraSonic.UltraSonic}} style="display:none"></div>-->    <br>    <h4>排程設計</h4>    <table border="1" style="font-size:18px; border:2px #cccccc solid; margin-left: 2px; margin-right: 2px;" width=98%>        <tr>            <td>乾燥</td>            <td>入料</td>            <td>攪拌加熱</td>            <td>出料</td>            <td>循環測試</td>        </tr>        <tr>            <td>                -- 入料 --<br>                指定生豆高度                <input name="testing_BeanIn_Height_D" type="text" value="45" style="width: 40px;">公分<br>                吸料時間                <input name="testing_in_vacuum_in_D" type="text" value="3" style="width: 40px;">秒<br>                放料時間(>10)                <input name="testing_in_vacuum_out_D" type="text" value="5" style="width: 40px;">秒<br>                循環次數                <input name="testing_in_vacuum_loop_D" type="text" value="3" style="width: 40px;">次<br>                -- 乾燥 --<br>                馬達轉速                <input name="testing_Heat_Motor_D" type="text" value="30" style="width: 40px;">rpm<br>                指定溫度                <input name="testing_Heat_Temp_D" type="text" value="35" style="width: 40px;">℃<br>                指定濕度                <input name="testing_Heat_Humidity_D" type="text" value="35" style="width: 40px;">%<br>                乾燥秒數                <input name="testing_Heat_time_D" type="text" value="20" style="width: 40px;">秒<br>                               -- 出料 --<br>                指定空桶高度                <input name="testing_BeanEmpty_Height_D" type="text" value="10" style="width: 40px;">公分<br>                吸料時間                <input name="testing_out_vacuum_in_D" type="text" value="3" style="width: 40px;">秒<br>                放料時間(>10)                <input name="testing_out_vacuum_out_D" type="text" value="5" style="width: 40px;">秒<br>                循環次數                <input name="testing_out_vacuum_loop_D" type="text" value="3" style="width: 40px;">次<br>            </td>            <td>                指定桶內生豆高度                <input name="testing_BeanIn_Height" type="text" value="0" style="width: 40px;">公分<br>                吸料時間                <input name="testing_in_vacuum_in" type="text" value="1" style="width: 40px;">秒<br>                放料時間                <input name="testing_in_vacuum_out" type="text" value="10" style="width: 40px;">秒<br>                循環次數                <input name="testing_in_vacuum_loop" type="text" value="3" style="width: 40px;">次<br>            </td>            <td>                馬達轉速                <input name="testing_Heat_Motor" type="text" value="20" style="width: 40px;">rpm<br>                指定溫度                <input name="testing_Heat_Temp" type="text" value="25" style="width: 40px;">℃<br>                指定濕度                <input name="testing_Heat_Humidity" type="text" value="35" style="width: 40px;">%<br>                乾燥秒數                <input name="testing_Heat_time" type="text" value="20" style="width: 40px;">秒<br>            </td>            <td>                指定空桶高度                <input name="testing_BeanEmpty_Height" type="text" value="0" style="width: 40px;">公分<br>                吸料時間                <input name="testing_out_vacuum_in" type="text" value="1" style="width: 40px;">秒<br>                放料時間                <input name="testing_out_vacuum_out" type="text" value="10" style="width: 40px;">秒<br>                循環次數                <input name="testing_out_vacuum_loop" type="text" value="3" style="width: 40px;">次<br>            </td>            <td>                ON (開)                  <input name="Testing_starttime" value="3" type="text" style="width: 40px;">秒<br>                OFF (關)                  <input name="Testing_endtime" value="5" type="text" style="width: 40px;">秒<br>                循環                <input name="Testing_loop" value="3" type="text" style="width: 40px;">次            </td>        <tr>            <td>                <button type="submit" class="btn btn-primary" onclick="F_tankDiskValve_ON()">發酵槽蝴蝶閥 ON</button><br>                <button type="submit" class="btn btn-primary" onclick="F_tankDiskValve_OFF()">發酵槽蝴蝶閥 OFF</button><br>                <button type="submit" class="btn btn-primary" onclick="testing_D()">乾燥排程測試</button>                <script>                    function F_tankDiskValve_ON() {                        var data = { "tank_num": "F" + tank_num, "command": "tank_diskvalve_status", "value": "on" };                        $.post('/mqtt/{{tid}}', data, function (res) {                            console.log('data:', data)                        }, 'text')                    };                    function F_tankDiskValve_OFF() {                        var data = { "tank_num": "F" + tank_num, "command": "tank_diskvalve_status", "value": "off" };                        $.post('/mqtt/{{tid}}', data, function (res) {                            console.log('data:', data)                        }, 'text')                    };                    function testing_D() {                        clearInterval(WebUpdate_set);                        var BeanIn_D_Process = 0;   // 入豆                        var Heat_D_Process = 0;     // 乾燥                        var BeanOut_D_Process = 0;  // 出豆                        var BeanIn_D_interval;                        var Heat_D_interval;                        var BeanOut_D_interval;                        var testing_BeanIn_Height_D = $("input[name=testing_BeanIn_Height_D]").val();                        var testing_in_vacuum_in_D = $("input[name=testing_in_vacuum_in_D]").val();                        var testing_in_vacuum_out_D = $("input[name=testing_in_vacuum_out_D]").val();                        var testing_in_vacuum_loop_D = $("input[name=testing_in_vacuum_loop_D]").val();                        if (testing_BeanIn_Height_D != 0) {                            console.log('以指定高度入豆')                            BeanIn_D_interval = setInterval(BeanInHeight_D, 5000);                                                    } else if (testing_BeanIn_Height_D == 0) {                            console.log('以循環次數入豆')                            for (step = 1; step <= testing_in_vacuum_loop_D; step++) {                                console.log('-- 循環第 ' + step + ' 次 --');                                tankVacuum_ON()                                console.log('tankVacuum_ON')                                var time = new Date();                                while ((new Date() - time) < testing_in_vacuum_in_D * 1000) { };                                tankVacuum_OFF()                                console.log('tankVacuum_OFF')                                var time = new Date();                                while ((new Date() - time) < testing_in_vacuum_out_D * 1000) { };                            }                            console.log('循環入豆結束')                            var testing_Heat_Motor_D = $("input[name=testing_Heat_Motor_D]").val();                            var testing_Heat_Temp_D = $("input[name=testing_Heat_Temp_D]").val();                            var testing_Heat_Humidity_D = $("input[name=testing_Heat_Humidity_D]").val();                            var testing_Heat_time_D = $("input[name=testing_Heat_time_D]").val();                            console.log('指定馬達轉速: ' + testing_Heat_Motor_D)                            console.log('指定溫度: ' + testing_Heat_Temp_D)                            console.log('指定濕度: ' + testing_Heat_Humidity_D)                            console.log('指定乾燥秒數: ' + testing_Heat_time_D)                            $.get('/dry_SHT11_' + tank_num, '', function (res) {                                if ( (res.SHT11_Temp < testing_Heat_Temp_D) || (res.SHT11_Humidity < testing_Heat_Humidity_D) ) {                                    tankHeater1_ON()                                    console.log('tankHeater1_ON')                                    tankHeater2_ON()                                    console.log('tankHeater2_ON')                                    tankBlower_ON()                                    console.log('tankBlower_ON')                                }                             }, 'json');                            var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": testing_Heat_Motor_D };                            $.post('/mqtt/{{tid}}', data, function (res) {                                console.log('data:', data)                            }, 'text')                            console.log('Motor ' + testing_Heat_Motor_D)                            Heat_D_interval = setInterval(Heater_D, 5000);                        }                        function BeanInHeight_D(){                            if (BeanIn_D_Process == 1) {                                return;                            }                            BeanIn_D_Process == 1;                            $.ajax({                                async:false,                                type:"GET",                                url:"/dry_UltraSonic_" + tank_num,                                dataType:"json",                                success:function(response){                                    var present_Bean_height = response.UltraSonic                                    console.log('目前生豆高度: ' + present_Bean_height)                                    if ( parseInt(present_Bean_height) < parseInt(testing_BeanIn_Height_D) ) {                                        tankVacuum_ON()                                        console.log('tankVacuum_ON')                                                                                var time = new Date();                                        while ((new Date() - time) < testing_in_vacuum_in_D * 1000) { };                                        tankVacuum_OFF()                                        console.log('tankVacuum_OFF')                                        var time = new Date();                                        while ((new Date() - time) < testing_in_vacuum_out_D * 1000) { };                                    } else {                                        clearInterval(BeanIn_D_interval)                                        console.log('生豆已達指定高度!')                                        var testing_Heat_Motor_D = $("input[name=testing_Heat_Motor_D]").val();                                        var testing_Heat_Temp_D = $("input[name=testing_Heat_Temp_D]").val();                                        var testing_Heat_Humidity_D = $("input[name=testing_Heat_Humidity_D]").val();                                        var testing_Heat_time_D = $("input[name=testing_Heat_time_D]").val();                                        console.log('指定馬達轉速: ' + testing_Heat_Motor_D)                                        console.log('指定溫度: ' + testing_Heat_Temp_D)                                        console.log('指定濕度: ' + testing_Heat_Humidity_D)                                        console.log('指定乾燥秒數: ' + testing_Heat_time_D)                                        $.get('/dry_SHT11_' + tank_num, '', function (res) {                                            if ( (res.SHT11_Temp < testing_Heat_Temp_D) || (res.SHT11_Humidity < testing_Heat_Humidity_D) ) {                                                tankHeater1_ON()                                                console.log('tankHeater1_ON')                                                tankHeater2_ON()                                                console.log('tankHeater2_ON')                                                tankBlower_ON()                                                console.log('tankBlower_ON')                                                var time = new Date();                                                while ((new Date() - time) < 5 * 1000) { };                                            }                                         }, 'json');                                        var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": testing_Heat_Motor_D };                                        $.post('/mqtt/{{tid}}', data, function (res) {                                            console.log('data:', data)                                        }, 'text')                                        console.log('Motor ' + testing_Heat_Motor_D)                                        var time = new Date();                                        while ((new Date() - time) < 5 * 1000) { };                                        Heat_D_interval = setInterval(Heater_D, 5000);                                    }                                    BeanIn_D_Process == 0;                                },                                error:function(thrownError){                                    console.log('Error: ' + thrownError)                                    BeanIn_D_Process = 0;                                }                            })                        };                        function Heater_D(){                            if ( Heat_D_Process == 1 ) {                                return;                            }                            Heat_D_Process = 1;                            $.ajax({                                async:false,                                type:"GET",                                url:"/dry_SHT11_" + tank_num,                                dataType:"json",                                success:function(response){                                    var present_Temp = response.SHT11_Temp                                    var present_Humidity = response.SHT11_Humidity                                    var testing_Heat_Temp_D = $("input[name=testing_Heat_Temp_D]").val();                                    var testing_Heat_Humidity_D = $("input[name=testing_Heat_Humidity_D]").val();                                    var testing_Heat_time_D = $("input[name=testing_Heat_time_D]").val();                                    if ( (present_Humidity > testing_Heat_Humidity_D) && (present_Temp > testing_Heat_Temp_D) ) {                                        clearInterval(Heat_D_interval)                                        console.log("已達指定溫濕度, 乾燥 " + testing_Heat_time_D + " 秒")                                                                                var time = new Date();                                        while ( (new Date() - time) < testing_Heat_time_D * 1000 ) { }                                        ChangeMotor_OFF()                                        console.log('ChangeMotor_OFF')                                        tankHeater1_OFF()                                        console.log('tankHeater1_OFF')                                        tankHeater2_OFF()                                        console.log('tankHeater2_OFF')                                        tankBlower_OFF()                                        console.log('tankBlower_OFF')                                        console.log('攪拌加熱完成!')                                        var testing_BeanEmpty_Height_D = $('input[name=testing_BeanEmpty_Height_D]').val();                                        var testing_out_vacuum_in_D = $('input[name=testing_out_vacuum_in_D]').val();                                        var testing_out_vacuum_out_D = $('input[name=testing_out_vacuum_out_D]').val();                                        var testing_out_vacuum_loop_D = $('input[name=testing_out_vacuum_loop_D]').val();                                        console.log('指定空桶高度: ' + testing_BeanEmpty_Height_D)                                        if (testing_BeanEmpty_Height_D != 0) {                                            console.log('以空桶高度出豆')                                            BeanOut_D_interval = setInterval(BeanOutHeight_D, 5000);                                        } else if (testing_BeanEmpty_Height == 0) {                                            console.log('以循環方式出豆')                                            for (step = 1; step <= testing_out_vacuum_loop; step++) {                                                console.log('-- 循環第 ' + step + ' 次 --');                                                tankVacuum_ON()                                                console.log('tankVacuum_ON')                                                var time = new Date();                                                while ((new Date() - time) < testing_out_vacuum_in_D * 1000) { };                                                tankVacuum_OFF()                                                console.log('tankVacuum_OFF')                                                var time = new Date();                                                while ((new Date() - time) < testing_out_vacuum_out_D * 1000) { };                                            }                                            console.log('循環出豆結束')                                        }                                    } else if ( parseInt(present_Humidity) > parseInt(testing_Heat_Humidity_D) ) {                                        console.log("已達指定濕度!")                                                                            } else if ( parseInt(present_Temp) > parseInt(testing_Heat_Temp_D) ){                                        console.log("已達指定溫度!")                                                                            } else {                                        console.log('加熱中, 溫: ' + present_Temp + ' / 濕: ' + present_Humidity)                                    }                                    Heat_D_Process = 0;                                },                                error:function(thrownError){                                    console.log('Error: ' + thrownError)                                    Heat_D_Process = 0;                                }                            })                        };                        function BeanOutHeight_D(){                            if (BeanOut_D_Process == 1) {                                return;                            }                            BeanOut_D_Process = 1;                            $.ajax({                                async:false,                                type:"GET",                                url:"/dry_UltraSonic_" + tank_num,                                dataType:"json",                                success:function(response){                                    var present_Bean_height = response.UltraSonic                                    console.log("目前豆高: " + present_Bean_height)                                    var testing_BeanEmpty_Height_D = $('input[name=testing_BeanEmpty_Height_D]').val();                                    var testing_out_vacuum_in_D = $('input[name=testing_out_vacuum_in_D]').val();                                    var testing_out_vacuum_out_D = $('input[name=testing_out_vacuum_out_D]').val();                                    var testing_out_vacuum_loop_D = $('input[name=testing_out_vacuum_loop_D]').val();                                    if ( parseInt(present_Bean_height) < parseInt(testing_BeanEmpty_Height_D) ) {                                        clearInterval(BeanOut_D_interval)                                        console.log("已達指定空桶高度!")                                    } else {                                        outputVacuum_ON()                                        console.log('outputVacuum_ON')                                        var time = new Date()                                        while ( (new Date() - time) <  testing_out_vacuum_in_D * 1000) { }                                        outputVacuum_OFF()                                        console.log('outputVacuum_OFF')                                        var time = new Date()                                        while ( (new Date() - time) <  testing_out_vacuum_out_D * 1000) { }                                    }                                    BeanOut_D_Process = 0;                                },                                error:function(thrownError){                                    console.log("Error: " + thrownError)                                    BeanOut_D_Process = 0;                                }                            })                        };                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    }                </script>            </td>            <td>                <button type="submit" class="btn btn-primary" onclick="BeanInput()">入料測試</button>                <script>                    var BeanIn_Process = 0;                    var BeanIn_interval;                    function BeanInput() {                        clearInterval(WebUpdate_set);                        var testing_BeanIn_Height = $("input[name=testing_BeanIn_Height]").val();                        var testing_in_vacuum_in = $("input[name=testing_in_vacuum_in]").val();                        var testing_in_vacuum_out = $("input[name=testing_in_vacuum_out]").val();                        var testing_in_vacuum_loop = $("input[name=testing_in_vacuum_loop]").val();                        if (testing_BeanIn_Height != 0) {                            console.log('以指定高度入豆')                            var BeanIn_interval = setInterval(BeanInHeight, 5000);                            function BeanInHeight(){                                if (BeanIn_Process == 1) {                                    return;                                }                                BeanIn_Process == 1;                                $.ajax({                                    async:false,                                    type:"GET",                                    url:"/dry_UltraSonic_" + tank_num,                                    dataType:"json",                                    success:function(response){                                        var present_Bean_height = response.UltraSonic                                        console.log('目前生豆高度: ' + present_Bean_height)                                        if ( parseInt(present_Bean_height) < parseInt(testing_BeanIn_Height) ) {                                            tankVacuum_ON()                                            console.log('tankVacuum_ON')                                                                                        var time = new Date();                                            while ((new Date() - time) < testing_in_vacuum_in * 1000) { };                                            tankVacuum_OFF()                                            console.log('tankVacuum_OFF')                                            var time = new Date();                                            while ((new Date() - time) < testing_in_vacuum_out * 1000) { };                                        } else {                                            clearInterval(BeanIn_interval)                                            console.log('生豆已達指定高度!')                                        }                                        BeanIn_Process == 0;                                    },                                    error:function(thrownError){                                        console.log('Error: ' + thrownError)                                        BeanIn_Process = 0;                                    }                                })                            };                        } else if (testing_BeanIn_Height == 0) {                            console.log('以循環次數入豆')                            for (step = 1; step <= testing_in_vacuum_loop; step++) {                                console.log('-- 循環第 ' + step + ' 次 --');                                tankVacuum_ON()                                console.log('tankVacuum_ON')                                var time = new Date();                                while ((new Date() - time) < testing_in_vacuum_in * 1000) { };                                tankVacuum_OFF()                                console.log('tankVacuum_OFF')                                var time = new Date();                                while ((new Date() - time) < testing_in_vacuum_out * 1000) { };                            }                            console.log('循環入豆結束')                        }                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    }                </script>            </td>            <td>                <button type="submit" class="btn btn-primary" onclick="Heat()">攪拌加熱</button>                <script>                    var Heat_Process = 0;                    function Heat(){                        clearInterval(WebUpdate_set);                        var testing_Heat_Motor = $("input[name=testing_Heat_Motor]").val();                        var testing_Heat_Temp = $("input[name=testing_Heat_Temp]").val();                        var testing_Heat_Humidity = $("input[name=testing_Heat_Humidity]").val();                        var testing_Heat_time = $("input[name=testing_Heat_time]").val();                        console.log('指定馬達轉速: ' + testing_Heat_Motor)                        console.log('指定溫度: ' + testing_Heat_Temp)                        console.log('指定濕度: ' + testing_Heat_Humidity)                        console.log('指定乾燥秒數: ' + testing_Heat_time)                        $.get('/dry_SHT11_' + tank_num, '', function (res) {                            if ( (res.SHT11_Temp < testing_Heat_Temp) || (res.SHT11_Humidity < testing_Heat_Humidity) ) {                                tankHeater1_ON()                                console.log('tankHeater1_ON')                                tankHeater2_ON()                                console.log('tankHeater2_ON')                                tankBlower_ON()                                console.log('tankBlower_ON')                            }                         }, 'json');                        var data = { "tank_num": "D" + tank_num, "command": "tank_motor_status", "value": testing_Heat_Motor };                        $.post('/mqtt/{{tid}}', data, function (res) {                            console.log('data:', data)                        }, 'text')                        console.log('Motor ' + testing_Heat_Motor)                        var Heat_interval = setInterval(Heater, 5000);                        function Heater(){                            if ( Heat_Process == 1 ) {                                return;                            }                            Heat_Process = 1;                            $.ajax({                                async:false,                                type:"GET",                                url:"/dry_SHT11_" + tank_num,                                dataType:"json",                                success:function(response){                                    var present_Temp = response.SHT11_Temp                                    var present_Humidity = response.SHT11_Humidity                                    if ( (present_Humidity > testing_Heat_Humidity) &&                                     (present_Temp > testing_Heat_Temp) ) {                                        console.log("已達指定溫濕度, 乾燥 " + testing_Heat_time + " 秒")                                        clearInterval(Heat_interval)                                                                                var time = new Date();                                        while ( (new Date() - time) < testing_Heat_time * 1000 ) { }                                        ChangeMotor_OFF()                                        console.log('ChangeMotor_OFF')                                        tankHeater1_OFF()                                        console.log('tankHeater1_OFF')                                        tankHeater2_OFF()                                        console.log('tankHeater2_OFF')                                        tankBlower_OFF()                                        console.log('tankBlower_OFF')                                        console.log('攪拌加熱完成!')                                                                             } else if ( present_Humidity > testing_Heat_Humidity ) {                                        console.log('已達指定濕度, 溫: ' + present_Temp + ' / 濕: ' + present_Humidity)                                                                            } else if ( present_Temp > testing_Heat_Temp ) {                                        console.log('已達指定溫度, 溫: ' + present_Temp + ' / 濕: ' + present_Humidity)                                                                            } else {                                        console.log('加熱中, 溫: ' + present_Temp + ' / 濕: ' + present_Humidity)                                    }                                    Heat_Process = 0;                                },                                error:function(thrownError){                                    console.log('Error: ' + thrownError)                                    Heat_Process = 0;                                }                            })                        };                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    };                </script>            </td>            <td>                <button type="submit" class="btn btn-primary" onclick="BeanOut()">出料測試</button>                <script>                    var BeanOut_Process = 0;                    function BeanOut(){                        clearInterval(WebUpdate_set);                        var testing_BeanEmpty_Height = $('input[name=testing_BeanEmpty_Height]').val();                        var testing_out_vacuum_in = $('input[name=testing_out_vacuum_in]').val();                        var testing_out_vacuum_out = $('input[name=testing_out_vacuum_out]').val();                        var testing_out_vacuum_loop = $('input[name=testing_out_vacuum_loop]').val();                        console.log('指定空桶高度: ' + testing_BeanEmpty_Height)                        if (testing_BeanEmpty_Height != 0) {                            console.log('以空桶高度出豆')                            var BeanOut_interval = setInterval(BeanOutHeight, 5000);                            function BeanOutHeight(){                                if (BeanOut_Process == 1) {                                    return;                                }                                BeanOut_Process = 1;                                $.ajax({                                    async:false,                                    type:"GET",                                    url:"/dry_UltraSonic_" + tank_num,                                    dataType:"json",                                    success:function(response){                                        var present_Bean_height = response.UltraSonic                                        console.log("目前豆高: " + present_Bean_height)                                        if ( parseInt(present_Bean_height) < parseInt(testing_BeanEmpty_Height) ) {                                            clearInterval(BeanOut_interval)                                            console.log("已達指定空桶高度!")                                        } else {                                            outputVacuum_ON()                                            console.log('outputVacuum_ON')                                            var time = new Date()                                            while ( (new Date() - time) <  testing_out_vacuum_in * 1000) { }                                            outputVacuum_OFF()                                            console.log('outputVacuum_OFF')                                            var time = new Date()                                            while ( (new Date() - time) <  testing_out_vacuum_out * 1000) { }                                        }                                        BeanOut_Process = 0;                                    },                                    error:function(thrownError){                                        console.log("Error: " + thrownError)                                        BeanOut_Process = 0;                                    }                                })                            };                                                    } else if (testing_BeanEmpty_Height == 0) {                            console.log('以循環方式出豆')                            for (step = 1; step <= testing_out_vacuum_loop; step++) {                                console.log('-- 循環第 ' + step + ' 次 --');                                outputVacuum_ON()                                console.log('outputVacuum_ON')                                var time = new Date();                                while ((new Date() - time) < testing_out_vacuum_in * 1000) { };                                outputVacuum_OFF()                                console.log('outputVacuum_OFF')                                var time = new Date();                                while ((new Date() - time) < testing_out_vacuum_out * 1000) { };                            }                            console.log('循環出豆結束')                        }                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    };                </script>            </td>            <td>                <button type="submit" class="btn btn-primary" onclick="diskValveTest()">蝴蝶閥測試(秒)</button><br>                <button type="submit" class="btn btn-primary" onclick="tankVacuumTest()">真空吸料機測試(秒)</button><br>                <button type="submit" class="btn btn-primary" onclick="threewayvalveTest()">三通閥測試(秒)</button>                <script>                    function threewayvalveTest() {                        clearInterval(WebUpdate_set);                        var Testing_starttime = $("input[name=Testing_starttime]").val();                        var Testing_endtime = $("input[name=Testing_endtime]").val();                        var Testing_loop = $("input[name=Testing_loop]").val();                        alert('測試間隔' + Testing_starttime + ':' + Testing_endtime + ' 次數' + Testing_loop)                        var step;                        for (step = 1; step <= Testing_loop; step++) {                            console.log('循環第 ' + step + ' 次');                            tankThreeWayValve_ON()                            console.log('tankThreeWayValve_ON')                            var time = new Date();                            while ((new Date() - time) < Testing_starttime * 1000) { }                            tankThreeWayValve_OFF()                            console.log('tankThreeWayValve_OFF')                            var time = new Date();                            while ((new Date() - time) < Testing_endtime * 1000) { }                        }                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    }                </script>                <script>                    function tankVacuumTest() {                        clearInterval(WebUpdate_set);                        var Testing_starttime = $("input[name=Testing_starttime]").val();                        var Testing_endtime = $("input[name=Testing_endtime]").val();                        var Testing_loop = $("input[name=Testing_loop]").val();                        alert('測試間隔' + Testing_starttime + ':' + Testing_endtime + ' 次數' + Testing_loop)                        var step;                        for (step = 1; step <= Testing_loop; step++) {                            console.log('循環第 ' + step + ' 次');                            tankVacuum_ON()                            console.log('tankVacuum_ON')                            var time = new Date();                            while ((new Date() - time) < Testing_starttime * 1000) { }                            tankVacuum_OFF()                            console.log('tankVacuum_OFF')                            var time = new Date();                            while ((new Date() - time) < Testing_endtime * 1000) { }                        }                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    }                </script>                <script>                    function diskValveTest() {                        clearInterval(WebUpdate_set);                        var Testing_starttime = $("input[name=Testing_starttime]").val();                        var Testing_endtime = $("input[name=Testing_endtime]").val();                        var Testing_loop = $("input[name=Testing_loop]").val();                        alert('測試間隔' + Testing_starttime + ':' + Testing_endtime + ' 次數' + Testing_loop)                        var step;                        for (step = 1; step <= Testing_loop; step++) {                            console.log('循環第 ' + step + ' 次');                            tankDiskValve_ON()                            console.log('tankDiskValve_ON')                            var time = new Date();                            while ((new Date() - time) < Testing_starttime * 1000) { }                            tankDiskValve_OFF()                            console.log('tankDiskValve_OFF')                            var time = new Date();                            while ((new Date() - time) < Testing_endtime * 1000) { }                        }                        WebUpdate_set = setInterval(function(){WebUpdate(dtn)} , 10 * 1000);                    }                </script>            </td>        </tr>    </table>    <br>    <h4>M5 攝影機畫面 img</h4>    <div class="container-fluid">        <div class="row" style="margin-top:100px;">            <div class="col flex">                <div class="col-md-12 row flex" style="text-align:center;margin-top:5px;">                    <div class="col-md-12 row flex">                        <img src="" id="four" width="70%" height="70%">                    </div>                </div>                <script>                    // M5 攝影機                    //const img = document.querySelector('#one');                    const img3 = document.querySelector('#four');                    const WS_URL3 = 'ws:///60.250.156.230:8093';                    //const WS_URL3 = 'ws:///60.250.156.230:8091';                    const ws3 = new WebSocket(WS_URL3);                    let urlObject3;                    ws3.onopen = () => console.log(`Connected to ${WS_URL3}`);                    ws3.onmessage = message3 => {                        const arrayBuffer3 = message3.data;                        if (urlObject3) {                            URL.revokeObjectURL(urlObject3);                        }                        urlObject3 = URL.createObjectURL(new Blob([arrayBuffer3]));                        img3.src = urlObject3;                    }                </script>            </div>        </div>    </div>    <footer class="footer">        <div style="text-align: center; margin-top: 10px; font-size: 13px; margin-bottom: 10px;">            Copyright © 2021 Gold-in Tech. All Rights Reserved. 金子進科技股份有限公司 版權所有            <a href="mailto:service.gitc@gmail.com" target="_blank">service.gitc@gmail.com</a>        </div>    </footer></body></html>
 |