edit_config_template.html 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231
  1. <!DOCTYPE html>
  2. <html lang="en" xml:lang="en">
  3. <head>
  4. <title>Configuration</title>
  5. <meta charset="UTF-8" />
  6. <style>
  7. h1 {font-size: 2em;}
  8. h2 {font-size: 1.5em; margin-block-start: 0.0em; margin-block-end: 0.2em;}
  9. h3 {font-size: 1.2em;}
  10. h4 {font-size: 1.05em; margin-bottom: 0;}
  11. h5 {font-size: 0.83em; margin-top: 0.2em; margin-bottom: 0;}
  12. p {font-size: 1em;}
  13. .table {
  14. border: 0pt;
  15. border-collapse: collapse;
  16. table-layout: fixed;
  17. width:100%;
  18. }
  19. td {
  20. padding: 10px;
  21. vertical-align: middle;
  22. }
  23. .button {
  24. padding: 5px 10px;
  25. width: 220px;
  26. font-size: 16px;
  27. }
  28. input[type=number] {
  29. width: 60px;
  30. min-width: 60px;
  31. max-width: 60px;
  32. margin-right: 10px;
  33. padding: 3px 5px;
  34. display: inline-block;
  35. border: 1px solid #ccc;
  36. font-size: 16px;
  37. vertical-align: middle;
  38. }
  39. input[type=text] {
  40. width: 96%;
  41. min-width:240px;
  42. max-width:96%;
  43. margin-right: 10px;
  44. padding: 3px 5px;
  45. display: inline-block;
  46. border: 1px solid #ccc;
  47. font-size: 16px;
  48. vertical-align: middle;
  49. }
  50. select {
  51. min-width: 72px;
  52. max-width: 100%;
  53. padding: 3px 5px;
  54. display: inline-block;
  55. border: 1px solid #ccc;
  56. font-size: 16px;
  57. margin-right: 10px;
  58. vertical-align: middle;
  59. }
  60. .select_large {
  61. width: 100%;
  62. min-width: 250px;
  63. max-width: 100%;
  64. padding: 3px 5px;
  65. display: inline-block;
  66. border: 1px solid #ccc;
  67. font-size: 16px;
  68. margin-right: 10px;
  69. vertical-align: middle;
  70. }
  71. textarea {
  72. font-size: 14px;
  73. }
  74. .description {
  75. color: black;
  76. font-size: 80%;
  77. }
  78. .disabled {
  79. color:rgb(122, 122, 122);
  80. }
  81. #GPIO_LEDColor_value1 #GPIO_LEDColor_value2 #GPIO_LEDColor_value3 {
  82. width: 30px;
  83. font-size: 16px;
  84. }
  85. .invalid-input {
  86. background-color: #FFAA00;
  87. }
  88. input:out-of-range {
  89. background-color: rgba(255, 0, 0, 0.25);
  90. border: 1px solid red;
  91. }
  92. input:invalid {
  93. background-color: rgba(255, 0, 0, 0.25);
  94. border: 1px solid red;
  95. }
  96. .hidden {
  97. display: none;
  98. }
  99. .expert {
  100. background-color: #ffefef;
  101. font-size: 16px;
  102. }
  103. .indent1 {
  104. padding-left: 25px;
  105. font-size: 16px;
  106. }
  107. .indent2 {
  108. padding-left: 50px;
  109. font-size: 16px;
  110. }
  111. .tooltip {
  112. position: relative;
  113. display: inline-block;
  114. }
  115. .tooltip .tooltiptext {
  116. visibility: hidden;
  117. width: 600px;
  118. background-color: #fcfcfc;
  119. padding: 5px;
  120. padding-bottom: 0;
  121. border: solid black 2px;
  122. /* Position the tooltip */
  123. position: absolute;
  124. z-index: 1;
  125. top: 100%;
  126. left: 100%;
  127. margin-left: -600px;
  128. }
  129. .tooltip:hover .tooltiptext {
  130. visibility: visible;
  131. }
  132. .tooltip-content {
  133. width: calc(100% - 2px);
  134. height: calc(100% - 2px);
  135. padding: 1px;
  136. }
  137. #overlay {
  138. position: fixed;
  139. display: none;
  140. width: 100%;
  141. height: 100%;
  142. top: 0;
  143. left: 0;
  144. right: 0;
  145. bottom: 0;
  146. background-color: rgba(0,0,0,0.8);
  147. z-index: 2;
  148. }
  149. #overlaytext{
  150. position: absolute;
  151. top: 50%;
  152. left: 50%;
  153. font-size: 150%;
  154. color: white;
  155. transform: translate(-50%,-50%);
  156. -ms-transform: translate(-50%,-50%);
  157. }
  158. </style>
  159. <link rel="stylesheet" href="mkdocs_theme.css?v=$COMMIT_HASH" />
  160. <link rel="stylesheet" href="mkdocs_theme_extra.css?v=$COMMIT_HASH" />
  161. <link rel="stylesheet" href="github.min.css?v=$COMMIT_HASH" />
  162. <link href="firework.css?v=$COMMIT_HASH" rel="stylesheet">
  163. <script type="text/javascript" src="jquery-3.6.0.min.js?v=$COMMIT_HASH"></script>
  164. <script type="text/javascript" src="firework.js?v=$COMMIT_HASH"></script>
  165. <script type="text/javascript" src="common.js?v=$COMMIT_HASH"></script>
  166. <script type="text/javascript" src="readconfigcommon.js?v=$COMMIT_HASH"></script>
  167. <script type="text/javascript" src="readconfigparam.js?v=$COMMIT_HASH"></script>
  168. </head>
  169. <body style="font-family: arial; padding: 0px 10px;">
  170. <div id="overlay">
  171. <div id="overlaytext"></div>
  172. </div>
  173. <h2>Configuration</h2>
  174. <details id="desc_details">
  175. <summary><b>CLICK HERE</b> for usage description. More infos in documentation:
  176. <a href="https://jomjol.github.io/AI-on-the-edge-device-docs/Parameters" target="_blank">Parameter</a>
  177. </summary>
  178. <p>
  179. This page lists all available configuration parameters of the device.<br>
  180. The description of each parameter can be shown by hovering over or by clicking the <img src="help.png" width="16px"> icon.
  181. </p>
  182. <p>
  183. The page gets opened with the default view which should be sufficient for regular configuration tasks. Enabling the <b>"Show Expert Parameters"</b>
  184. some expert parameters (light red background color) will be added to the parameter list. Additionally the button <b>"Edit "Config.ini" File"</b>
  185. to edit the underlaying configuration file (config.ini) manually is now shown on top of the page. This function should be only used for special cases.
  186. </p>
  187. <p>
  188. Sections (entire functionality) or single parameters having a checkbox can be enabled or disabled.
  189. Disabling a complete section results in a disabled functionality. Whenever only a single parameter of a section is disabled
  190. the hard-coded default value is used for the disabled parameter.
  191. </p>
  192. <p>
  193. Don't forget to save the changes with the button <b>"Save Config"</b> at the bottom of this page.<br>
  194. <label id="reboot_text" name="reboot_text">
  195. To apply the new configuration a restart of the device is neccessary: <b>"Reboot to apply changes"</b>
  196. </label>
  197. </p>
  198. </details>
  199. <hr />
  200. <div id="divall" style="display:none">
  201. <table class="table">
  202. <colgroup>
  203. <col span="1" style="width:290px">
  204. <col span="1" style="width:300px;">
  205. <col span="1">
  206. </colgroup>
  207. <tr style="border-bottom: 2px solid lightgray;">
  208. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Configuration View</h4></td>
  209. </tr>
  210. <tr>
  211. <td class="indent1">
  212. <input style="margin-top:12px;margin-bottom:12px" type="checkbox" id="ExpertModus_enabled" value="1" onclick='UpdateExpertModus()' unchecked>
  213. <label for="ExpertModus_enabled">Show Expert Parameters</label>
  214. </td>
  215. <td>
  216. <button style="display:none;" class="button" id="Button_Edit_Config_Raw" onclick="editConfigRaw()">Edit Config file in raw mode</button>
  217. </td>
  218. </tr>
  219. <!------------- Take Image ------------------>
  220. <tr style="border-bottom: 2px solid lightgray;">
  221. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Take Image</h4></td>
  222. </tr>
  223. <tr>
  224. <td class="indent1">
  225. <input type="checkbox" id="TakeImage_RawImagesLocation_enabled" value="1" onclick='InvertEnableItem("TakeImage", "RawImagesLocation")' unchecked >
  226. <label for=TakeImage_RawImagesLocation_enabled><class id="TakeImage_RawImagesLocation_text" style="color:black;">Raw Images Location</class></label>
  227. </td>
  228. <td>
  229. <input required type="text" name="name" id="TakeImage_RawImagesLocation_value1">
  230. </td>
  231. <td>$TOOLTIP_TakeImage_RawImagesLocation</td>
  232. </tr>
  233. <tr>
  234. <td class="indent1">
  235. <input type="checkbox" id="TakeImage_RawImagesRetention_enabled" value="1" onclick='InvertEnableItem("TakeImage", "RawImagesRetention")' unchecked >
  236. <label for=TakeImage_RawImagesRetention_enabled><class id="TakeImage_RawImagesRetention_text" style="color:black;">Raw Images Retention</class></label>
  237. </td>
  238. <td>
  239. <input required type="number" id="TakeImage_RawImagesRetention_value1" size="13" min="0" step="1"
  240. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Days
  241. </td>
  242. <td>$TOOLTIP_TakeImage_RawImagesRetention</td>
  243. </tr>
  244. <tr class="expert" unused_id="TakeImage_WaitBeforeTakingPicture_ex3">
  245. <td class="indent1">
  246. <class id="TakeImage_WaitBeforeTakingPicture_text" style="color:black;">Wait Before Taking Picture</class>
  247. </td>
  248. <td>
  249. <input required type="number" id="TakeImage_WaitBeforeTakingPicture_value1" size="13" min="0" step="any" onchange="cameraParameterChanged()"
  250. oninput="(!validity.rangeUnderflow||(value=0));">Seconds
  251. </td>
  252. <td>$TOOLTIP_TakeImage_WaitBeforeTakingPicture</td>
  253. </tr>
  254. <tr class="expert" unused_id="TakeImage_CamGainceiling_ex3">
  255. <td class="indent1">
  256. <class id="TakeImage_CamGainceiling_text" style="color:black;">CamGainceiling</class>
  257. </td>
  258. <td>
  259. <select id="TakeImage_CamGainceiling_value1" onchange="cameraParameterChanged()">
  260. <option value="x2" selected>x2</option>
  261. <option value="x4" >x4</option>
  262. <option value="x8" >x8</option>
  263. <option value="x16" >x16</option>
  264. <option value="x32" >x32</option>
  265. <option value="x64" >x64</option>
  266. <option value="x128" >x128</option>
  267. </select>
  268. </td>
  269. <td>$TOOLTIP_TakeImage_CamGainceiling</td>
  270. </tr>
  271. <tr class="expert" unused_id="TakeImage_CamQuality_ex3">
  272. <td class="indent1">
  273. <class id="TakeImage_CamQuality_text" style="color:black;">Image Quality</class>
  274. </td>
  275. <td>
  276. <input required type="number" id="TakeImage_CamQuality_value1" size="13" min="5" max="63" onchange="cameraParameterChanged()"
  277. oninput="(!validity.rangeUnderflow||(value=5)) && (!validity.rangeOverflow||(value=63)) &&
  278. (!validity.stepMismatch||(value=parseInt(this.value)));">
  279. </td>
  280. <td>$TOOLTIP_TakeImage_CamQuality</td>
  281. </tr>
  282. <tr unused_id="TakeImage_CamBrightness_ex3">
  283. <td class="indent1">
  284. <class id="TakeImage_CamBrightness_text" style="color:black;">Brightness</class>
  285. </td>
  286. <td>
  287. <input required type="number" id="TakeImage_CamBrightness_value1" size="13" min="-2" max="2" onchange="cameraParameterChanged()"
  288. oninput="(!validity.rangeUnderflow||(value=-2)) && (!validity.rangeOverflow||(value=2)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  289. </td>
  290. <td>$TOOLTIP_TakeImage_CamBrightness</td>
  291. </tr>
  292. <tr unused_id="TakeImage_CamContrast_ex3">
  293. <td class="indent1">
  294. <class id="TakeImage_CamContrast_text" style="color:black;">Contrast</class>
  295. </td>
  296. <td>
  297. <input required type="number" id="TakeImage_CamContrast_value1" size="13" min="-2" max="2" onchange="cameraParameterChanged()"
  298. oninput="(!validity.rangeUnderflow||(value=-2)) && (!validity.rangeOverflow||(value=2)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  299. </td>
  300. <td>$TOOLTIP_TakeImage_CamContrast</td>
  301. </tr>
  302. <tr unused_id="TakeImage_CamSaturation_ex3">
  303. <td class="indent1">
  304. <class id="TakeImage_CamSaturation_text" style="color:black;">Saturation</class>
  305. </td>
  306. <td>
  307. <input required type="number" id="TakeImage_CamSaturation_value1" size="13" min="-2" max="2" onchange="cameraParameterChanged()"
  308. oninput="(!validity.rangeUnderflow||(value=-2)) && (!validity.rangeOverflow||(value=2)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  309. </td>
  310. <td>$TOOLTIP_TakeImage_CamSaturation</td>
  311. </tr>
  312. <tr class="expert" unused_id="TakeImage_CamAutoSharpness_ex3">
  313. <td class="indent1">
  314. <class id="TakeImage_CamAutoSharpness_text" style="color:black;">AutoSharpness</class>
  315. </td>
  316. <td>
  317. <select id="TakeImage_CamAutoSharpness_value1" onchange="cameraParameterChanged()">
  318. <option value="true">enable</option>
  319. <option value="false" selected>disable</option>
  320. </select>
  321. </td>
  322. <td>$TOOLTIP_TakeImage_CamAutoSharpness</td>
  323. </tr>
  324. <tr class="expert" unused_id="TakeImage_CamSharpness_ex3">
  325. <td class="indent1">
  326. <class id="TakeImage_CamSharpness_text" style="color:black;">Sharpness</class>
  327. </td>
  328. <td>
  329. <input required type="number" id="TakeImage_CamSharpness_value1" size="13" min="-3" max="3" onchange="cameraParameterChanged()"
  330. oninput="(!validity.rangeUnderflow||(value=-3)) && (!validity.rangeOverflow||(value=3)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  331. </td>
  332. <td>$TOOLTIP_TakeImage_CamSharpness</td>
  333. </tr>
  334. <tr class="expert" unused_id="TakeImage_CamSpecialEffect_ex3">
  335. <td class="indent1">
  336. <class id="TakeImage_CamSpecialEffect_text" style="color:black;">SpecialEffect</class>
  337. </td>
  338. <td>
  339. <select id="TakeImage_CamSpecialEffect_value1" onchange="cameraParameterChanged()">
  340. <option value="no_effect" selected>no effect</option>
  341. <option value="negative" >negative</option>
  342. <option value="grayscale" >grayscale</option>
  343. <option value="red" >red</option>
  344. <option value="green" >green</option>
  345. <option value="blue" >blue</option>
  346. <option value="retro" >retro</option>
  347. </select>
  348. </td>
  349. <td>$TOOLTIP_TakeImage_CamSpecialEffect</td>
  350. </tr>
  351. <tr class="expert" unused_id="TakeImage_CamWbMode_ex3">
  352. <td class="indent1">
  353. <class id="TakeImage_CamWbMode_text" style="color:black;">White Balance Mode</class>
  354. </td>
  355. <td>
  356. <select id="TakeImage_CamWbMode_value1" onchange="cameraParameterChanged()">
  357. <option value="auto" selected>auto</option>
  358. <option value="sunny" >sunny</option>
  359. <option value="cloudy" >cloudy</option>
  360. <option value="office" >office</option>
  361. <option value="home" >home</option>
  362. </select>
  363. </td>
  364. <td>$TOOLTIP_TakeImage_CamWbMode</td>
  365. </tr>
  366. <tr class="expert" unused_id="TakeImage_CamAwb_ex3">
  367. <td class="indent1">
  368. <class id="TakeImage_CamAwb_text" style="color:black;">White Balance</class>
  369. </td>
  370. <td>
  371. <select id="TakeImage_CamAwb_value1" onchange="cameraParameterChanged()">
  372. <option value="true">enable</option>
  373. <option value="false" selected>disable</option>
  374. </select>
  375. </td>
  376. <td>$TOOLTIP_TakeImage_CamAwb</td>
  377. </tr>
  378. <tr class="expert" unused_id="TakeImage_CamAwbGain_ex3">
  379. <td class="indent1">
  380. <class id="TakeImage_CamAwbGain_text" style="color:black;">Auto White Balance</class>
  381. </td>
  382. <td>
  383. <select id="TakeImage_CamAwbGain_value1" onchange="cameraParameterChanged()">
  384. <option value="true">enable</option>
  385. <option value="false" selected>disable</option>
  386. </select>
  387. </td>
  388. <td>$TOOLTIP_TakeImage_CamAwbGain</td>
  389. </tr>
  390. <tr class="expert" unused_id="TakeImage_CamAec_ex3">
  391. <td class="indent1">
  392. <class id="TakeImage_CamAec_text" style="color:black;">Auto-Exposure Control</class>
  393. </td>
  394. <td>
  395. <select id="TakeImage_CamAec_value1" onchange="cameraParameterChanged()">
  396. <option value="true">enable</option>
  397. <option value="false" selected>disable</option>
  398. </select>
  399. </td>
  400. <td>$TOOLTIP_TakeImage_CamAec</td>
  401. </tr>
  402. <tr class="expert" unused_id="TakeImage_CamAec2_ex3">
  403. <td class="indent1">
  404. <class id="TakeImage_CamAec2_text" style="color:black;">Auto-Exposure Control 2</class>
  405. </td>
  406. <td>
  407. <select id="TakeImage_CamAec2_value1" onchange="cameraParameterChanged()">
  408. <option value="true">enable</option>
  409. <option value="false" selected>disable</option>
  410. </select>
  411. </td>
  412. <td>$TOOLTIP_TakeImage_CamAec2</td>
  413. </tr>
  414. <tr class="expert" unused_id="TakeImage_CamAeLevel_ex3">
  415. <td class="indent1">
  416. <class id="TakeImage_CamAeLevel_text" style="color:black;">Auto Exposure Level</class>
  417. </td>
  418. <td>
  419. <input required type="number" id="TakeImage_CamAeLevel_value1" size="13" min="-5" max="5" onchange="cameraParameterChanged()"
  420. oninput="(!validity.rangeUnderflow||(value=-5)) && (!validity.rangeOverflow||(value=5)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  421. </td>
  422. <td>$TOOLTIP_TakeImage_CamAeLevel</td>
  423. </tr>
  424. <tr class="expert" unused_id="TakeImage_CamAecValue_ex3">
  425. <td class="indent1">
  426. <class id="TakeImage_CamAecValue_text" style="color:black;">Auto Exposure Value</class>
  427. </td>
  428. <td>
  429. <input required type="number" id="TakeImage_CamAecValue_value1" size="13" min="0" max="1200" onchange="cameraParameterChanged()"
  430. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=1200)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  431. </td>
  432. <td>$TOOLTIP_TakeImage_CamAecValue</td>
  433. </tr>
  434. <tr class="expert" unused_id="TakeImage_CamAgc_ex3">
  435. <td class="indent1">
  436. <class id="TakeImage_CamAgc_text" style="color:black;">Auto Gain</class>
  437. </td>
  438. <td>
  439. <select id="TakeImage_CamAgc_value1" onchange="cameraParameterChanged()">
  440. <option value="true">enable</option>
  441. <option value="false" selected>disable</option>
  442. </select>
  443. </td>
  444. <td>$TOOLTIP_TakeImage_CamAgc</td>
  445. </tr>
  446. <tr class="expert" unused_id="TakeImage_CamAgcGain_ex3">
  447. <td class="indent1">
  448. <class id="TakeImage_CamAgcGain_text" style="color:black;">Gain Manuall Value</class>
  449. </td>
  450. <td>
  451. <input required type="number" id="TakeImage_CamAgcGain_value1" size="13" min="0" max="30" onchange="cameraParameterChanged()"
  452. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=30)) &&
  453. (!validity.stepMismatch||(value=parseInt(this.value)));">
  454. </td>
  455. <td>$TOOLTIP_TakeImage_CamAgcGain</td>
  456. </tr>
  457. <tr class="expert" unused_id="TakeImage_CamBpc_ex3">
  458. <td class="indent1">
  459. <class id="TakeImage_CamBpc_text" style="color:black;">Black Pixel Correction</class>
  460. </td>
  461. <td>
  462. <select id="TakeImage_CamBpc_value1" onchange="cameraParameterChanged()">
  463. <option value="true">enable</option>
  464. <option value="false" selected>disable</option>
  465. </select>
  466. </td>
  467. <td>$TOOLTIP_TakeImage_CamBpc</td>
  468. </tr>
  469. <tr class="expert" unused_id="TakeImage_CamWpc_ex3">
  470. <td class="indent1">
  471. <class id="TakeImage_CamWpc_text" style="color:black;">White Pixel Correction</class>
  472. </td>
  473. <td>
  474. <select id="TakeImage_CamWpc_value1" onchange="cameraParameterChanged()">
  475. <option value="true">enable</option>
  476. <option value="false" selected>disable</option>
  477. </select>
  478. </td>
  479. <td>$TOOLTIP_TakeImage_CamWpc</td>
  480. </tr>
  481. <tr class="expert" unused_id="TakeImage_CamRawGma_ex3">
  482. <td class="indent1">
  483. <class id="TakeImage_CamRawGma_text" style="color:black;">CamRawGma</class>
  484. </td>
  485. <td>
  486. <select id="TakeImage_CamRawGma_value1" onchange="cameraParameterChanged()">
  487. <option value="true">enable</option>
  488. <option value="false" selected>disable</option>
  489. </select>
  490. </td>
  491. <td>$TOOLTIP_TakeImage_CamRawGma</td>
  492. </tr>
  493. <tr class="expert" unused_id="TakeImage_CamLenc_ex3">
  494. <td class="indent1">
  495. <class id="TakeImage_CamLenc_text" style="color:black;">Lens Correction</class>
  496. </td>
  497. <td>
  498. <select id="TakeImage_CamLenc_value1" onchange="cameraParameterChanged()">
  499. <option value="true">enable</option>
  500. <option value="false" selected>disable</option>
  501. </select>
  502. </td>
  503. <td>$TOOLTIP_TakeImage_CamLenc</td>
  504. </tr>
  505. <tr unused_id="TakeImage_CamHmirror_ex3">
  506. <td class="indent1">
  507. <class id="TakeImage_CamHmirror_text" style="color:black;">Mirror Image</class>
  508. </td>
  509. <td>
  510. <select id="TakeImage_CamHmirror_value1" onchange="cameraParameterChanged()">
  511. <option value="true">enable</option>
  512. <option value="false" selected>disable</option>
  513. </select>
  514. </td>
  515. <td>$TOOLTIP_TakeImage_CamHmirror</td>
  516. </tr>
  517. <tr unused_id="TakeImage_CamVflip_ex3">
  518. <td class="indent1">
  519. <class id="TakeImage_CamVflip_text" style="color:black;">Flip Image</class>
  520. </td>
  521. <td>
  522. <select id="TakeImage_CamVflip_value1" onchange="cameraParameterChanged()">
  523. <option value="true">enable</option>
  524. <option value="false" selected>disable</option>
  525. </select>
  526. </td>
  527. <td>$TOOLTIP_TakeImage_CamVflip</td>
  528. </tr>
  529. <tr class="expert" unused_id="TakeImage_CamDcw_ex3">
  530. <td class="indent1">
  531. <class id="TakeImage_CamDcw_text" style="color:black;">Downsize</class>
  532. </td>
  533. <td>
  534. <select id="TakeImage_CamDcw_value1" onchange="cameraParameterChanged()">
  535. <option value="true">enable</option>
  536. <option value="false" selected>disable</option>
  537. </select>
  538. </td>
  539. <td>$TOOLTIP_TakeImage_CamDcw</td>
  540. </tr>
  541. <tr class="expert" unused_id="TakeImage_CamDenoise_ex3">
  542. <td class="indent1">
  543. <class id="TakeImage_CamDenoise_text" style="color:black;">Denoise</class>
  544. </td>
  545. <td>
  546. <input required type="number" id="TakeImage_CamDenoise_value1" value="0" min="0" max="8" step="1" onchange="cameraParameterChanged()"
  547. oninput="(!validity.rangeOverflow||(value=8)) && (!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  548. </td>
  549. <td>$TOOLTIP_TakeImage_CamDenoise</td>
  550. </tr>
  551. <tr class="expert" unused_id="TakeImage_CamZoom_ex3">
  552. <td class="indent1">
  553. <class id="TakeImage_CamZoom_text" style="color:black;">Zoom</class>
  554. </td>
  555. <td>
  556. <select id="TakeImage_CamZoom_value1" onchange="cameraParameterChanged()">
  557. <option value="true">enable</option>
  558. <option value="false" selected>disable</option>
  559. </select>
  560. </td>
  561. <td>$TOOLTIP_TakeImage_CamZoom</td>
  562. </tr>
  563. <tr class="expert" unused_id="TakeImage_CamZoomSize_ex3">
  564. <td class="indent1">
  565. <class id="TakeImage_CamZoomSize_text" style="color:black;">Zoom Size</class>
  566. </td>
  567. <td>
  568. <input required type="number" id="TakeImage_CamZoomSize_value1" value="0" min="0" max="59" step="1" onchange="cameraParameterChanged()"
  569. oninput="(!validity.rangeOverflow||(value=59)) && (!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  570. </td>
  571. <td>$TOOLTIP_TakeImage_CamZoomSize</td>
  572. </tr>
  573. <tr class="expert" unused_id="TakeImage_CamZoomOffsetX_ex3">
  574. <td class="indent1">
  575. <class id="TakeImage_CamZoomOffsetX_text" style="color:black;">Zoom Offset X</class>
  576. </td>
  577. <td>
  578. <input required type="number" id="TakeImage_CamZoomOffsetX_value1" value="0" min="-960" max="960" step="8" onchange="cameraParameterChanged()"
  579. oninput="(!validity.rangeOverflow||(value=960)) && (!validity.rangeUnderflow||(value=-960)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Pixel
  580. </td>
  581. <td>$TOOLTIP_TakeImage_CamZoomOffsetX</td>
  582. </tr>
  583. <tr class="expert" unused_id="TakeImage_CamZoomOffsetY_ex3">
  584. <td class="indent1">
  585. <class id="TakeImage_CamZoomOffsetY_text" style="color:black;">Zoom Offset Y</class>
  586. </td>
  587. <td>
  588. <input required type="number" id="TakeImage_CamZoomOffsetY_value1" value="0" min="-720" max="720" step="8" onchange="cameraParameterChanged()"
  589. oninput="(!validity.rangeOverflow||(value=720)) && (!validity.rangeUnderflow||(value=-720)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Pixel
  590. </td>
  591. <td>$TOOLTIP_TakeImage_CamZoomOffsetY</td>
  592. </tr>
  593. <tr unused_id="TakeImage_LEDIntensity_ex3">
  594. <td class="indent1">
  595. <class id="TakeImage_LEDIntensity_text" style="color:black;">LED Intensity</class>
  596. </td>
  597. <td>
  598. <input required type="number" id="TakeImage_LEDIntensity_value1" size="13" min="0" max="100" onchange="cameraParameterChanged()"
  599. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=100)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  600. </td>
  601. <td>$TOOLTIP_TakeImage_LEDIntensity</td>
  602. </tr>
  603. <tr class="expert" unused_id="TakeImage_Demo_ex3">
  604. <td class="indent1">
  605. <label>
  606. <class id="TakeImage_Demo_text" style="color:black;">Demo Mode</class>
  607. </label>
  608. </td>
  609. <td>
  610. <select id="TakeImage_Demo_value1">
  611. <option value="true">enable</option>
  612. <option value="false" selected>disable</option>
  613. </select>
  614. </td>
  615. <td>$TOOLTIP_TakeImage_Demo</td>
  616. </tr>
  617. <!------------- Alignment ------------------>
  618. <tr style="border-bottom: 2px solid lightgray;" id="ex4">
  619. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Alignment</h4></td>
  620. </tr>
  621. <tr class="expert" unused_id="Alignment_SearchFieldX_ex6">
  622. <td class="indent1">
  623. <class id="Alignment_SearchFieldX_text" style="color:black;">Search Field X</class>
  624. </td>
  625. <td>
  626. <input required type="number" name="name" id="Alignment_SearchFieldX_value1" size="13" min="1" step="1"
  627. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Pixel
  628. </td>
  629. <td>$TOOLTIP_Alignment_SearchFieldX</td>
  630. </tr>
  631. <tr class="expert" unused_id="Alignment_SearchFieldY_ex8">
  632. <td class="indent1">
  633. <class id="Alignment_SearchFieldY_text" style="color:black;">Search Field Y</class>
  634. </td>
  635. <td>
  636. <input required type="number" name="name" id="Alignment_SearchFieldY_value1" size="13" min="1"
  637. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Pixel
  638. </td>
  639. <td>$TOOLTIP_Alignment_SearchFieldY</td>
  640. </tr>
  641. <tr class="expert" unused_id="Alignment_AlignmentAlgo_ex8">
  642. <td class="indent1">
  643. <input type="checkbox" id="Alignment_AlignmentAlgo_enabled" value="1" onclick = 'InvertEnableItem("Alignment", "AlignmentAlgo")' unchecked >
  644. <label for=Alignment_AlignmentAlgo_enabled><class id="Alignment_AlignmentAlgo_text" style="color:black;">Alignment Algorithm</class></label>
  645. </td>
  646. <td>
  647. <select id="Alignment_AlignmentAlgo_value1">
  648. <option value="default" selected>Default</option>
  649. <option value="highAccuracy" >HighAccuracy</option>
  650. <option value="fast" >Fast</option>
  651. <option value="off" >Off</option><!-- add disable aligment algo |01.2023 -->
  652. </select>
  653. </td>
  654. <td>$TOOLTIP_Alignment_AlignmentAlgo</td>
  655. </tr>
  656. <tr unused_id="Alignment_InitialRotate_ex8">
  657. <td class="indent1">
  658. <class id="Alignment_InitialRotate_text" style="color:black;">Rotation angle</class>
  659. </td>
  660. <td>
  661. <input required type="number" name="name" id="Alignment_InitialRotate_value1" size="13" min="-180" max="+180" step="0.1"
  662. oninput="(!validity.rangeOverflow||(value=180)) && (!validity.rangeUnderflow||(value=-180)) && (!validity.stepMismatch||(value=parseInt(this.value)));">degree
  663. </td>
  664. <td>$TOOLTIP_Alignment_InitialRotate</td>
  665. </tr>
  666. <!------------- Digit ROIs ------------------>
  667. <tr style="border-bottom: 2px solid lightgray;" id="Category_Digits_ex4">
  668. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  669. <h4><input type="checkbox" id="Category_Digits_enabled" value="1" onclick ='UpdateAfterCategoryCheck()' unchecked >
  670. <label for=Category_Digits_enabled>Digit ROI Processing</label></h4>
  671. </td>
  672. </tr>
  673. <tr class="DigitItem">
  674. <td class="indent1" >
  675. <class id="Digits_Model_text" style="color:black;">Model</class>
  676. </td>
  677. <td>
  678. <select required class="select_large" id="Digits_Model_value1">
  679. </select>
  680. </td>
  681. <td>$TOOLTIP_Digits_Model</td>
  682. </tr>
  683. <tr class="DigitItem expert" unused_id="ex91">
  684. <td class="indent1">
  685. <input type="checkbox" id="Digits_CNNGoodThreshold_enabled" value="1" onclick = 'InvertEnableItem("Digits", "CNNGoodThreshold")' unchecked >
  686. <label for=Digits_CNNGoodThreshold_enabled><class id="Digits_CNNGoodThreshold_text" style="color:black;">CNN Good Threshold</class></label>
  687. </td>
  688. <td>
  689. <input required type="number" id="Digits_CNNGoodThreshold_value1" min="0" max="1" step="0.1"
  690. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=1)) &&
  691. (!validity.stepMismatch||(value=parseInt(this.value)));">
  692. </td>
  693. <td>$TOOLTIP_Digits_CNNGoodThreshold</td>
  694. </tr>
  695. <tr class="DigitItem">
  696. <td class="indent1">
  697. <input type="checkbox" id="Digits_ROIImagesLocation_enabled" value="1" onclick = 'InvertEnableItem("Digits", "ROIImagesLocation")' unchecked >
  698. <label for=Digits_ROIImagesLocation_enabled><class id="Digits_ROIImagesLocation_text" style="color:black;">ROI Images Location</class></label>
  699. </td>
  700. <td>
  701. <input required type="text" name="name" id="Digits_ROIImagesLocation_value1">
  702. </td>
  703. <td>$TOOLTIP_Digits_ROIImagesLocation</td>
  704. </tr>
  705. <tr class="DigitItem">
  706. <td class="indent1">
  707. <input type="checkbox" id="Digits_ROIImagesRetention_enabled" value="1" onclick = 'InvertEnableItem("Digits", "ROIImagesRetention")' unchecked >
  708. <label for=Digits_ROIImagesRetention_enabled><class id="Digits_ROIImagesRetention_text" style="color:black;">ROI Images Retention</class></label>
  709. </td>
  710. <td>
  711. <input required type="number" id="Digits_ROIImagesRetention_value1" min="0" step="1"
  712. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Days
  713. </td>
  714. <td>$TOOLTIP_Digits_ROIImagesRetention</td>
  715. </tr>
  716. <!------------- Ananlog ROIs ------------------>
  717. <tr style="border-bottom: 2px solid lightgray;" id="Category_Analog_ex4">
  718. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  719. <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'UpdateAfterCategoryCheck()' unchecked >
  720. <label for=Category_Analog_enabled>Analog ROI Processing</label></h4>
  721. </td>
  722. </tr>
  723. <tr class="AnalogItem">
  724. <td class="indent1">
  725. <class id="Analog_Model_text" style="color:black;">Model</class>
  726. </td>
  727. <td>
  728. <select required class="select_large" id="Analog_Model_value1">
  729. </select>
  730. </td>
  731. <td>$TOOLTIP_Analog_Model</td>
  732. </tr>
  733. <tr class="AnalogItem">
  734. <td class="indent1">
  735. <input type="checkbox" id="Analog_ROIImagesLocation_enabled" value="1" onclick = 'InvertEnableItem("Analog", "ROIImagesLocation")' unchecked >
  736. <label for=Analog_ROIImagesLocation_enabled><class id="Analog_ROIImagesLocation_text" style="color:black;">ROI Images Location</class>
  737. </label>
  738. </td>
  739. <td> <input required type="text" name="name" id="Analog_ROIImagesLocation_value1"> </td>
  740. <td>$TOOLTIP_Analog_ROIImagesLocation</td>
  741. </tr>
  742. <tr class="AnalogItem">
  743. <td class="indent1">
  744. <input type="checkbox" id="Analog_ROIImagesRetention_enabled" value="1" onclick = 'InvertEnableItem("Analog", "ROIImagesRetention")' unchecked >
  745. <label for=Analog_ROIImagesRetention_enabled><class id="Analog_ROIImagesRetention_text" style="color:black;">ROI Images Retention</class></label></td>
  746. <td>
  747. <input required type="number" id="Analog_ROIImagesRetention_value1" min="0" step="1"
  748. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Days
  749. </td>
  750. <td>$TOOLTIP_Analog_ROIImagesRetention</td>
  751. </tr>
  752. <!------------- Post-Processing ------------------>
  753. <tr style="border-bottom: 2px solid lightgray;">
  754. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Post-Processing</h4></td>
  755. </tr>
  756. <tr>
  757. <td class="indent1">
  758. <label><class id="PostProcessing_PreValueUse_text" style="color:black;">Previous Value</class></label>
  759. </td>
  760. <td>
  761. <select id="PostProcessing_PreValueUse_value1">
  762. <option value="true">enable</option>
  763. <option value="false" selected>disable</option>
  764. </select>
  765. </td>
  766. <td>$TOOLTIP_PostProcessing_PreValueUse</td>
  767. </tr>
  768. <tr class="expert" unused_id="ex11">
  769. <td class="indent1">
  770. <input type="checkbox" id="PostProcessing_PreValueAgeStartup_enabled" value="1" onclick = 'InvertEnableItem("PostProcessing", "PreValueAgeStartup")' unchecked >
  771. <label for=PostProcessing_PreValueAgeStartup_enabled><class id="PostProcessing_PreValueAgeStartup_text" style="color:black;">Maximum Age of Previous Value after Startup</class></label>
  772. </td>
  773. <td>
  774. <input required type="number" id="PostProcessing_PreValueAgeStartup_value1" size="13" min="0"
  775. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Minutes
  776. </td>
  777. <td>$TOOLTIP_PostProcessing_PreValueAgeStartup</td>
  778. </tr>
  779. <tr class="expert" unused_id="ex12">
  780. <td class="indent1">
  781. <label><class id="PostProcessing_ErrorMessage_text" style="color:black;">Skip Messages on Error</class></label>
  782. </td>
  783. <td>
  784. <select id="PostProcessing_ErrorMessage_value1">
  785. <option value="true">enable</option>
  786. <option value="false" selected>disable</option>
  787. </select>
  788. </td>
  789. <td>$TOOLTIP_PostProcessing_ErrorMessage</td>
  790. </tr>
  791. <tr class="expert" unused_id="ex1dddd">
  792. <td class="indent1">
  793. <label><class id="PostProcessing_CheckDigitIncreaseConsistency_text" style="color:black;">Check Digit Increase Consistency</class></label>
  794. </td>
  795. <td>
  796. <select id="PostProcessing_CheckDigitIncreaseConsistency_value1">
  797. <option value="true">enable</option>
  798. <option value="false" selected>disable</option>
  799. </select>
  800. </td>
  801. <td>$TOOLTIP_PostProcessing_CheckDigitIncreaseConsistency</td>
  802. </tr>
  803. <tr style="margin-top:12px">
  804. <td class="indent1" style="padding-top:25px" colspan="3">
  805. <b>Parameter per number sequence:</b>
  806. <select
  807. style="font-weight: bold; margin-left:17px" id="Numbers_value1" onchange="numberChanged()">
  808. </select>
  809. </td>
  810. </tr>
  811. <tr>
  812. <td class="indent2">
  813. <label><class id="PostProcessing_AllowNegativeRates_text" style="color:black;">Allow Negative Rate</class></label>
  814. </td>
  815. <td>
  816. <select id="PostProcessing_AllowNegativeRates_value1">
  817. <option value="true">enable</option>
  818. <option value="false" selected>disable</option>
  819. </select>
  820. </td>
  821. <td>$TOOLTIP_PostProcessing_NUMBER.AllowNegativeRates</td>
  822. </tr>
  823. <tr>
  824. <td class="indent2">
  825. <input type="checkbox" id="PostProcessing_DecimalShift_enabled" value="1" onclick = 'InvertEnableItem("PostProcessing", "DecimalShift")' unchecked >
  826. <label for=PostProcessing_DecimalShift_enabled><class id="PostProcessing_DecimalShift_text" style="color:black;">Decimal Shift</class></label>
  827. </td>
  828. <td>
  829. <input required type="number" id="PostProcessing_DecimalShift_value1" value="0" step="1" min="-9" max="9"
  830. oninput="(!validity.rangeUnderflow||(value=-9)) && (!validity.rangeOverflow||(value=9)) &&
  831. (!validity.stepMismatch||(value=parseInt(this.value)));">
  832. </td>
  833. <td>$TOOLTIP_PostProcessing_NUMBER.DecimalShift</td>
  834. </tr>
  835. <tr>
  836. <td class="indent2">
  837. <input type="checkbox" id="PostProcessing_AnalogDigitalTransitionStart_enabled" value="1" onclick = 'InvertEnableItem("PostProcessing", "AnalogDigitalTransitionStart")' unchecked >
  838. <label for=PostProcessing_AnalogDigitalTransitionStart_enabled><class id="PostProcessing_AnalogDigitalTransitionStart_text" style="color:black;">Analog/Digital Transition Start</class></label>
  839. </td>
  840. <td>
  841. <input required type="number" id="PostProcessing_AnalogDigitalTransitionStart_value1" step="0.1" min="5.0" max="9.9" value="9.2"
  842. oninput="(!validity.rangeUnderflow||(value=5.0)) && (!validity.rangeOverflow||(value=9.9)) &&
  843. (!validity.stepMismatch||(value=parseInt(this.value)));">
  844. </td>
  845. <td>$TOOLTIP_PostProcessing_NUMBER.AnalogDigitalTransitionStart</td>
  846. </tr>
  847. <tr>
  848. <td class="indent2">
  849. <input type="checkbox" id="PostProcessing_MaxRateValue_enabled" value="1" onclick = 'InvertEnableItem("PostProcessing", "MaxRateValue")' unchecked >
  850. <label for=PostProcessing_MaxRateValue_enabled><class id="PostProcessing_MaxRateValue_text" style="color:black;">Maximum Rate Value</class></label>
  851. </td>
  852. <td>
  853. <input required type="number" id="PostProcessing_MaxRateValue_value1" size="13" min="0" step="any"
  854. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  855. </td>
  856. <td>$TOOLTIP_PostProcessing_NUMBER.MaxRateValue</td>
  857. </tr>
  858. <tr>
  859. <td class="indent2">
  860. <input type="checkbox" id="PostProcessing_MaxRateType_enabled" value="1" onclick = 'InvertEnableItem("PostProcessing", "MaxRateType")' unchecked >
  861. <label for=PostProcessing_MaxRateType_enabled><class id="PostProcessing_MaxRateType_text" style="color:black;">Maximum Rate Type</class></label>
  862. </td>
  863. <td>
  864. <select id="PostProcessing_MaxRateType_value1">
  865. <option value="AbsoluteChange" >AbsoluteChange</option>
  866. <option value="RateChange" selected>RateChange</option>
  867. </select>
  868. </td>
  869. <td>$TOOLTIP_PostProcessing_NUMBER.MaxRateType</td>
  870. </tr>
  871. <tr>
  872. <td class="indent2">
  873. <input type="checkbox" id="PostProcessing_ChangeRateThreshold_enabled" value="1" onclick = 'InvertEnableItem("PostProcessing", "ChangeRateThreshold")' unchecked >
  874. <label for=PostProcessing_ChangeRateThreshold_enabled><class id="PostProcessing_ChangeRateThreshold_text" style="color:black;">Change Rate Threshold</class></label>
  875. </td>
  876. <td>
  877. <input required type="number" id="PostProcessing_ChangeRateThreshold_value1" step="1" min="1" max="9" value="2"
  878. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=9)) &&
  879. (!validity.stepMismatch||(value=parseInt(this.value)));">
  880. </td>
  881. <td>$TOOLTIP_PostProcessing_NUMBER.ChangeRateThreshold</td>
  882. </tr>
  883. <tr>
  884. <td class="indent2">
  885. <label><class id="PostProcessing_ExtendedResolution_text" style="color:black;">Extended Resolution</class></label>
  886. </td>
  887. <td>
  888. <select id="PostProcessing_ExtendedResolution_value1">
  889. <option value="true">enable</option>
  890. <option value="false" selected>disable</option>
  891. </select>
  892. </td>
  893. <td>$TOOLTIP_PostProcessing_NUMBER.ExtendedResolution</td>
  894. </tr>
  895. <tr>
  896. <td class="indent2">
  897. <label><class id="PostProcessing_IgnoreLeadingNaN_text" style="color:black;">Ignore Leading NaNs</class></label>
  898. </td>
  899. <td>
  900. <select id="PostProcessing_IgnoreLeadingNaN_value1">
  901. <option value="true">enable</option>
  902. <option value="false" selected>disable</option>
  903. </select>
  904. </td>
  905. <td>$TOOLTIP_PostProcessing_NUMBER.IgnoreLeadingNaN</td>
  906. </tr>
  907. <!-------------
  908. <tr>
  909. <td class="indent2">
  910. <label><class id="PostProcessing_IgnoreAllNaN_text" style="color:black;">Ignore All NaNs</class></label>
  911. </td>
  912. <td>
  913. <select id="PostProcessing_IgnoreAllNaN_value1">
  914. <option value="true">enable</option>
  915. <option value="false" selected>disable</option>
  916. </select>
  917. </td>
  918. <td>$TOOLTIP_PostProcessing_NUMBER.IgnoreAllNaN</td>
  919. </tr>
  920. ------------------>
  921. <!------------- MQTT ------------------>
  922. <tr style="border-bottom: 2px solid lightgray;">
  923. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  924. <h4>
  925. <input type="checkbox" id="Category_MQTT_enabled" value="1" onclick = 'UpdateAfterCategoryCheck()' unchecked >
  926. <label for=Category_MQTT_enabled>MQTT</label>
  927. </h4>
  928. </td>
  929. </tr>
  930. <tr class="MQTTItem">
  931. <td class="indent1">
  932. <input type="checkbox" id="MQTT_Uri_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "Uri")' unchecked >
  933. <label for=MQTT_Uri_enabled><class id="MQTT_Uri_text" style="color:black;">URI</class></label>
  934. </td>
  935. <td>
  936. <input required type="text" id="MQTT_Uri_value1">
  937. </td>
  938. <td>$TOOLTIP_MQTT_Uri</td>
  939. </tr>
  940. <tr class="MQTTItem">
  941. <td class="indent1">
  942. <input type="checkbox" id="MQTT_MainTopic_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "MainTopic")' unchecked >
  943. <label for=MQTT_MainTopic_enabled><class id="MQTT_MainTopic_text" style="color:black;">Main Topic</class></label>
  944. </td>
  945. <td>
  946. <input required type="text" id="MQTT_MainTopic_value1">
  947. </td>
  948. <td>$TOOLTIP_MQTT_MainTopic</td>
  949. </tr>
  950. <tr class="MQTTItem">
  951. <td class="indent1">
  952. <input type="checkbox" id="MQTT_ClientID_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "ClientID")' unchecked >
  953. <label for=MQTT_ClientID_enabled><class id="MQTT_ClientID_text" style="color:black;">Client ID</class></label>
  954. </td>
  955. <td>
  956. <input required type="text" id="MQTT_ClientID_value1">
  957. </td>
  958. <td>$TOOLTIP_MQTT_ClientID</td>
  959. </tr>
  960. <tr class="MQTTItem">
  961. <td class="indent1">
  962. <input type="checkbox" id="MQTT_user_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "user")' unchecked >
  963. <label for=MQTT_user_enabled><class id="MQTT_user_text" style="color:black;">Username</class></label>
  964. </td>
  965. <td>
  966. <input type="text" id="MQTT_user_value1">
  967. </td>
  968. <td>$TOOLTIP_MQTT_user</td>
  969. </tr>
  970. <tr class="MQTTItem">
  971. <td class="indent1">
  972. <input type="checkbox" id="MQTT_password_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "password")' unchecked >
  973. <label for=MQTT_password_enabled><class id="MQTT_password_text" style="color:black;">Password</class></label>
  974. </td>
  975. <td>
  976. <input type="text" id="MQTT_password_value1">
  977. </td>
  978. <td>$TOOLTIP_MQTT_password</td>
  979. </tr>
  980. <tr class="MQTTItem expert" unused_id="exMqtt">
  981. <td class="indent1">
  982. <input type="checkbox" id="MQTT_CACert_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "CACert")' unchecked >
  983. <label for=MQTT_CACert_enabled><class id="MQTT_CACert_text" style="color:black;">Root CA Certificate file</class></label>
  984. </td>
  985. <td>
  986. <input type="text" id="MQTT_CACert_value1">
  987. </td>
  988. <td>$TOOLTIP_MQTT_CACert</td>
  989. </tr>
  990. <tr class="MQTTItem expert" unused_id="exMqtt">
  991. <td class="indent1">
  992. <input type="checkbox" id="MQTT_ClientCert_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "ClientCert")' unchecked >
  993. <label for=MQTT_ClientCert_enabled><class id="MQTT_ClientCert_text" style="color:black;">Client Certificate file</class></label>
  994. </td>
  995. <td>
  996. <input type="text" id="MQTT_ClientCert_value1">
  997. </td>
  998. <td>$TOOLTIP_MQTT_ClientCert</td>
  999. </tr>
  1000. <tr class="MQTTItem expert" unused_id="exMqtt">
  1001. <td class="indent1">
  1002. <input type="checkbox" id="MQTT_ClientKey_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "ClientKey")' unchecked >
  1003. <label for=MQTT_ClientKey_enabled><class id="MQTT_ClientKey_text" style="color:black;">Client Key file</class></label>
  1004. </td>
  1005. <td>
  1006. <input type="text" id="MQTT_ClientKey_value1">
  1007. </td>
  1008. <td>$TOOLTIP_MQTT_ClientKey</td>
  1009. </tr>
  1010. <tr class="MQTTItem">
  1011. <td class="indent1">
  1012. <label><class id="MQTT_RetainMessages_text" style="color:black;">Retain Messages</class></label>
  1013. </td>
  1014. <td>
  1015. <select id="MQTT_RetainMessages_value1">
  1016. <option value="true">enable</option>
  1017. <option value="false" selected>disable</option>
  1018. </select>
  1019. </td>
  1020. <td>$TOOLTIP_MQTT_RetainMessages</td>
  1021. </tr>
  1022. <tr class="MQTTItem">
  1023. <td class="indent1" style="padding-top:25px" colspan="2">
  1024. <b>Homeassistant Discovery (using MQTT)</b><br>
  1025. If activated, the discovery topics gets automatically scheduled to sent once after device startup during state "Publish to MQTT".
  1026. To schedule a retransmission: Use "Manual Control > Resend HA Discovery" or call REST API:
  1027. <a href=mqtt_publish_discovery target="_blank">http://&lt;IP&gt;/mqtt_publish_discovery</a>
  1028. </td>
  1029. </tr>
  1030. <tr class="MQTTItem">
  1031. <td class="indent2">
  1032. <label><class id="MQTT_HomeassistantDiscovery_text" style="color:black;">Homeassistant Discovery</class></label>
  1033. </td>
  1034. <td>
  1035. <select id="MQTT_HomeassistantDiscovery_value1">
  1036. <option value="true">enable</option>
  1037. <option value="false" selected>disable</option>
  1038. </select>
  1039. </td>
  1040. <td>$TOOLTIP_MQTT_HomeassistantDiscovery</td>
  1041. </tr>
  1042. <tr class="MQTTItem">
  1043. <td class="indent2">
  1044. <input type="checkbox" id="MQTT_MeterType_enabled" value="1" onclick = 'InvertEnableItem("MQTT", "MeterType")' unchecked >
  1045. <label for=MQTT_MeterType_enabled><class id="MQTT_MeterType_text" style="color:black;">Meter Type</class></label>
  1046. </td>
  1047. <td>
  1048. <select class="select_large" id="MQTT_MeterType_value1"> <!-- See https://developers.home-assistant.io/docs/core/entity/sensor/#available-device-classes -->
  1049. <option value="other" selected>Other (no Units)</option>
  1050. <option value="water_m3">Watermeter (Value: m³, Rate: m³/h)</option>
  1051. <option value="water_l">Watermeter (Value: l, Rate: l/h)</option>
  1052. <option value="water_gal">Watermeter (Value: gal, Rate: gal/h)</option>
  1053. <option value="water_ft3">Watermeter (Value: ft³, Rate: ft³/m)</option>
  1054. <option value="gas_m3">Gasmeter (Value: m³, Rate: m³/h)</option>
  1055. <option value="gas_ft3">Gasmeter (Value: ft³, Rate: ft³/m)</option>
  1056. <option value="energy_wh">Energymeter (Value: Wh, Rate: W)</option>
  1057. <option value="energy_kwh">Energymeter (Value: kWh, Rate: kW)</option>
  1058. <option value="energy_mwh">Energymeter (Value: MWh, Rate: MW)</option>
  1059. <option value="energy_gj">Energymeter (Value: GJ, Rate: GJ/h)</option>
  1060. </select>
  1061. </td>
  1062. <td>$TOOLTIP_MQTT_MeterType</td>
  1063. </tr>
  1064. <!------------- INFLUXDB v1 ------------------>
  1065. <tr style="border-bottom: 2px solid lightgray;">
  1066. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  1067. <h4>
  1068. <input type="checkbox" id="Category_InfluxDB_enabled" value="1" onclick = 'UpdateAfterCategoryCheck()' unchecked >
  1069. <label for=Category_InfluxDB_enabled>InfluxDB v1.x</label></h4>
  1070. </td>
  1071. </tr>
  1072. <tr class="InfluxDBv1Item">
  1073. <td class="indent1">
  1074. <input type="checkbox" id="InfluxDB_Uri_enabled" value="1" onclick = 'InvertEnableItem("InfluxDB", "Uri")' unchecked >
  1075. <label for=InfluxDB_Uri_enabled><class id="InfluxDB_Uri_text" style="color:black;">URI</class></label>
  1076. </td>
  1077. <td>
  1078. <input required type="text" id="InfluxDB_Uri_value1">
  1079. </td>
  1080. <td>$TOOLTIP_InfluxDB_Uri</td>
  1081. </tr>
  1082. <tr class="InfluxDBv1Item">
  1083. <td class="indent1">
  1084. <input type="checkbox" id="InfluxDB_Database_enabled" value="1" onclick = 'InvertEnableItem("InfluxDB", "Database")' unchecked >
  1085. <label for=InfluxDB_Database_enabled><class id="InfluxDB_Database_text" style="color:black;">Database</class></label>
  1086. </td>
  1087. <td>
  1088. <input required type="text" id="InfluxDB_Database_value1">
  1089. </td>
  1090. <td>$TOOLTIP_InfluxDB_Database</td>
  1091. </tr>
  1092. <tr class="InfluxDBv1Item">
  1093. <td class="indent1">
  1094. <input type="checkbox" id="InfluxDB_user_enabled" value="1" onclick = 'InvertEnableItem("InfluxDB", "user")' unchecked >
  1095. <label for=InfluxDB_user_enabled><class id="InfluxDB_user_text" style="color:black;">Username</class></label>
  1096. </td>
  1097. <td>
  1098. <input type="text" id="InfluxDB_user_value1">
  1099. </td>
  1100. <td>$TOOLTIP_InfluxDB_user</td>
  1101. </tr>
  1102. <tr class="InfluxDBv1Item">
  1103. <td class="indent1">
  1104. <input type="checkbox" id="InfluxDB_password_enabled" value="1" onclick = 'InvertEnableItem("InfluxDB", "password")' unchecked >
  1105. <label for=InfluxDB_password_enabled><class id="InfluxDB_password_text" style="color:black;">Password</class></label>
  1106. </td>
  1107. <td>
  1108. <input type="text" id="InfluxDB_password_value1">
  1109. </td>
  1110. <td>$TOOLTIP_InfluxDB_password</td>
  1111. </tr>
  1112. <tr class="InfluxDBv1Item" style="margin-top:12px">
  1113. <td class="indent1" style="padding-top:25px" colspan="3">
  1114. <b>Parameter per number sequence:</b>
  1115. <select
  1116. style="font-weight: bold; margin-left:17px" id="NumbersInfluxDB_value1" onchange="numberInfluxDBChanged()">
  1117. </select>
  1118. </td>
  1119. </tr>
  1120. <tr class="InfluxDBv1Item">
  1121. <td class="indent2">
  1122. <input type="checkbox" id="InfluxDB_Measurement_enabled" value="1" onclick = 'InvertEnableItem("InfluxDB", "Measurement")' unchecked >
  1123. <label for=InfluxDB_Measurement_enabled><class id="InfluxDB_Measurement_text" style="color:black;">Measurement</class></label>
  1124. </td>
  1125. <td>
  1126. <input required type="text" id="InfluxDB_Measurement_value1">
  1127. </td>
  1128. <td>$TOOLTIP_InfluxDB_NUMBER.Measurement</td>
  1129. </tr>
  1130. <tr class="InfluxDBv1Item">
  1131. <td class="indent2">
  1132. <input type="checkbox" id="InfluxDB_Field_enabled" value="1" onclick = 'InvertEnableItem("InfluxDB", "Field")' unchecked >
  1133. <label for=InfluxDB_Field_enabled><class id="InfluxDB_Field_text" style="color:black;">Field</class></label>
  1134. </td>
  1135. <td>
  1136. <input required type="text" id="InfluxDB_Field_value1">
  1137. </td>
  1138. <td>$TOOLTIP_InfluxDB_NUMBER.Field</td>
  1139. </tr>
  1140. <!------------- INFLUXDB v2 ------------------>
  1141. <tr style="border-bottom: 2px solid lightgray;">
  1142. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  1143. <h4>
  1144. <input type="checkbox" id="Category_InfluxDBv2_enabled" value="1" onclick = 'UpdateAfterCategoryCheck()' unchecked >
  1145. <label for=Category_InfluxDBv2_enabled>InfluxDB v2.x</label></h4>
  1146. </td>
  1147. </tr>
  1148. <tr class="InfluxDBv2Item">
  1149. <td class="indent1">
  1150. <input type="checkbox" id="InfluxDBv2_Uri_enabled" value="1" onclick = 'InvertEnableItem("InfluxDBv2", "Uri")' unchecked >
  1151. <label for=InfluxDBv2_Uri_enabled><class id="InfluxDBv2_Uri_text" style="color:black;">URI</class></label>
  1152. </td>
  1153. <td>
  1154. <input required type="text" id="InfluxDBv2_Uri_value1">
  1155. </td>
  1156. <td>$TOOLTIP_InfluxDBv2_Uri</td>
  1157. </tr>
  1158. <tr class="InfluxDBv2Item">
  1159. <td class="indent1">
  1160. <input type="checkbox" id="InfluxDBv2_Bucket_enabled" value="1" onclick = 'InvertEnableItem("InfluxDBv2", "Bucket")' unchecked >
  1161. <label for=InfluxDBv2_Bucket_enabled><class id="InfluxDBv2_Bucket_text" style="color:black;">Bucket</class></label>
  1162. </td>
  1163. <td>
  1164. <input required type="text" id="InfluxDBv2_Bucket_value1">
  1165. </td>
  1166. <td>$TOOLTIP_InfluxDBv2_Bucket</td>
  1167. </tr>
  1168. <tr class="InfluxDBv2Item">
  1169. <td class="indent1">
  1170. <input type="checkbox" id="InfluxDBv2_Org_enabled" value="1" onclick = 'InvertEnableItem("InfluxDBv2", "Org")' unchecked >
  1171. <label for=InfluxDBv2_Org_enabled><class id="InfluxDBv2_Org_text" style="color:black;">Organization (Org)</class></label>
  1172. </td>
  1173. <td>
  1174. <input type="text" id="InfluxDBv2_Org_value1">
  1175. </td>
  1176. <td>$TOOLTIP_InfluxDBv2_Org</td>
  1177. </tr>
  1178. <tr class="InfluxDBv2Item">
  1179. <td class="indent1">
  1180. <input type="checkbox" id="InfluxDBv2_Token_enabled" value="1" onclick = 'InvertEnableItem("InfluxDBv2", "Token")' unchecked >
  1181. <label for=InfluxDBv2_Token_enabled><class id="InfluxDBv2_Token_text" style="color:black;">Token</class></label>
  1182. </td>
  1183. <td>
  1184. <input type="text" id="InfluxDBv2_Token_value1">
  1185. </td>
  1186. <td>$TOOLTIP_InfluxDBv2_Token</td>
  1187. </tr>
  1188. <tr class="InfluxDBv2Item" style="margin-top:12px">
  1189. <td class="indent1" style="padding-top:25px" colspan="3">
  1190. <b>Parameter per number sequence:</b>
  1191. <select
  1192. style="font-weight: bold; margin-left:17px" id="NumbersInfluxDBv2_value1" onchange="numberInfluxDBv2Changed()">
  1193. </select>
  1194. </td>
  1195. </tr>
  1196. <tr class="InfluxDBv2Item">
  1197. <td class="indent2">
  1198. <input type="checkbox" id="InfluxDBv2_Measurement_enabled" value="1" onclick = 'InvertEnableItem("InfluxDBv2", "Measurement")' unchecked >
  1199. <label for=InfluxDBv2_Measurement_enabled><class id="InfluxDBv2_Measurement_text" style="color:black;">Measurement</class></label>
  1200. </td>
  1201. <td>
  1202. <input required type="text" id="InfluxDBv2_Measurement_value1">
  1203. </td>
  1204. <td>$TOOLTIP_InfluxDBv2_NUMBER.Measurement</td>
  1205. </tr>
  1206. <tr class="InfluxDBv2Item">
  1207. <td class="indent2">
  1208. <input type="checkbox" id="InfluxDBv2_Field_enabled" value="1" onclick = 'InvertEnableItem("InfluxDBv2", "Field")' unchecked >
  1209. <label for=InfluxDBv2_Field_enabled><class id="InfluxDBv2_Field_text" style="color:black;">Field</class></label>
  1210. </td>
  1211. <td>
  1212. <input required type="text" id="InfluxDBv2_Field_value1">
  1213. </td>
  1214. <td>$TOOLTIP_InfluxDBv2_NUMBER.Field</td>
  1215. </tr>
  1216. <!------------- Webhook ------------------>
  1217. <tr style="border-bottom: 2px solid lightgray;">
  1218. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  1219. <h4>
  1220. <input type="checkbox" id="Category_Webhook_enabled" value="1" onclick = 'UpdateAfterCategoryCheck()' unchecked >
  1221. <label for=Category_Webhook_enabled>Webhook</label></h4>
  1222. </td>
  1223. </tr>
  1224. <tr class="WebhookItem">
  1225. <td class="indent1">
  1226. <input type="checkbox" id="Webhook_Uri_enabled" value="1" onclick = 'InvertEnableItem("Webhook", "Uri")' unchecked >
  1227. <label for=Webhook_Uri_enabled><class id="Webhook_Uri_text" style="color:black;">URI</class></label>
  1228. </td>
  1229. <td>
  1230. <input required type="text" id="Webhook_Uri_value1">
  1231. </td>
  1232. <td>$TOOLTIP_Webhook_Uri</td>
  1233. </tr>
  1234. <tr class="WebhookItem">
  1235. <td class="indent1">
  1236. <input type="checkbox" id="Webhook_ApiKey_enabled" value="1" onclick = 'InvertEnableItem("Webhook", "ApiKey")' unchecked >
  1237. <label for=Webhook_ApiKey_enabled><class id="Webhook_ApiKey_text" style="color:black;">ApiKey</class></label>
  1238. </td>
  1239. <td>
  1240. <input required type="text" id="Webhook_ApiKey_value1">
  1241. </td>
  1242. <td>$TOOLTIP_Webhook_ApiKey</td>
  1243. </tr>
  1244. <!------------- GPIO ------------------>
  1245. <tr style="border-bottom: 2px solid lightgray;">
  1246. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;">
  1247. <h4><input type="checkbox" id="Category_GPIO_enabled" value="1" onclick='UpdateAfterCategoryCheck()' unchecked >
  1248. <label for=Category_GPIO_enabled>GPIO (General Purpose Input / Output)</label></h4>
  1249. </td>
  1250. </tr>
  1251. <!------------- GPIO0 begin ------------------>
  1252. <tr class="GPIO_IO0 GPIO_item expert">
  1253. <td class="indent1">
  1254. <input type="checkbox" id="GPIO_IO0_enabled" value="1" onclick = 'InvertEnableItem("GPIO", "IO0")' unchecked>
  1255. <label for=GPIO_IO0_enabled><span id="GPIO_IO0_text">GPIO0 Configuration</span></label>
  1256. </td>
  1257. <td>
  1258. <select id="GPIO_IO0_value1">
  1259. <option value="input">input</option>
  1260. <option value="input-pullup">input pullup</option>
  1261. <option value="input-pulldown">input pulldown</option>
  1262. <option value="output">output</option>
  1263. </select>
  1264. </td>
  1265. <td>$TOOLTIP_GPIO_IO0</td>
  1266. </tr>
  1267. <tr class="GPIO_IO0 GPIO_item expert">
  1268. <td class="indent2">
  1269. <span id="GPIO_IO0_text" class="GPIO_IO0 GPIO_item">GPIO0 Use Interrupt</span>
  1270. </td>
  1271. <td>
  1272. <select id="GPIO_IO0_value2">
  1273. <option value="disabled">disabled</option>
  1274. <option value="rising-edge">rising edge</option>
  1275. <option value="falling-edge">falling edge</option>
  1276. <option value="rising-and-falling">rising and falling</option>
  1277. <option value="low-level-trigger">low level trigger</option>
  1278. <option value="high-level-trigger">high level trigger</option>
  1279. </select>
  1280. </td>
  1281. <td></td>
  1282. </tr>
  1283. <tr class="GPIO_IO0 GPIO_item expert">
  1284. <td class="indent2">
  1285. <span class="GPIO_IO0 GPIO_item">GPIO0 PWM Duty Cycle Resolution</span>
  1286. </td>
  1287. <td>
  1288. <input required type="number" id="GPIO_IO0_value3" min="1" max="20"
  1289. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=20)) &&
  1290. (!validity.stepMismatch||(value=parseInt(this.value)));"><span class="GPIO_IO0 GPIO_item">Bits</span>
  1291. </td>
  1292. <td></td>
  1293. </tr>
  1294. <tr class="GPIO_IO0 GPIO_item expert">
  1295. <td class="indent2">
  1296. <span class="GPIO_IO0 GPIO_item">GPIO0 Enable MQTT</span>
  1297. </td>
  1298. <td><input type="checkbox" id="GPIO_IO0_value4"></td>
  1299. <td></td>
  1300. </tr>
  1301. <tr class="GPIO_IO0 GPIO_item expert">
  1302. <td class="indent2">
  1303. <span class="GPIO_IO0 GPIO_item">GPIO0 Enable REST API</span>
  1304. </td>
  1305. <td><input type="checkbox" id="GPIO_IO0_value5"></td>
  1306. <td></td>
  1307. </tr>
  1308. <tr class="GPIO_IO0 GPIO_item expert">
  1309. <td class="indent2">
  1310. <span class="GPIO_IO0 GPIO_item">GPIO0 Name</span>
  1311. </td>
  1312. <td><input type="text" id="GPIO_IO0_value6"></td>
  1313. <td></td>
  1314. </tr>
  1315. <!------------- GPIO0 end ------------------>
  1316. <!------------- GPIO1 begin ------------------>
  1317. <tr class="GPIO_IO1 GPIO_item expert">
  1318. <td class="indent1">
  1319. <input type="checkbox" id="GPIO_IO1_enabled" value="1" onclick = 'InvertEnableItem("GPIO", "IO1")' unchecked>
  1320. <label for=GPIO_IO1_enabled><span id="GPIO_IO1_text">GPIO1 Configuration</span></label>
  1321. </td>
  1322. <td>
  1323. <select id="GPIO_IO1_value1">
  1324. <option value="input">input</option>
  1325. <option value="input-pullup">input pullup</option>
  1326. <option value="input-pulldown">input pulldown</option>
  1327. <option value="output">output</option>
  1328. </select>
  1329. </td>
  1330. <td>$TOOLTIP_GPIO_IO1</td>
  1331. </tr>
  1332. <tr class="GPIO_IO1 GPIO_item expert">
  1333. <td class="indent2">
  1334. <span class="GPIO_IO1 GPIO_item" class="expert">GPIO1 Use Interrupt</span>
  1335. </td>
  1336. <td>
  1337. <select id="GPIO_IO1_value2">
  1338. <option value="disabled">disabled</option>
  1339. <option value="rising-edge" disabled>rising edge</option>
  1340. <option value="falling-edge" disabled>falling edge</option>
  1341. <option value="rising-and-falling">rising and falling</option>
  1342. <option value="low-level-trigger">low level trigger</option>
  1343. <option value="high-level-trigger">high level trigger</option>
  1344. </select>
  1345. </td>
  1346. <td></td>
  1347. </tr>
  1348. <tr class="GPIO_IO1 GPIO_item expert">
  1349. <td class="indent2">
  1350. <span class="GPIO_IO1 GPIO_item">GPIO1 PWM Duty Cycle Resolution</span>
  1351. </td>
  1352. <td><input required type="number" id="GPIO_IO1_value3" min="1" max="20"
  1353. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=20)) &&
  1354. (!validity.stepMismatch||(value=parseInt(this.value)));"><span class="GPIO_IO1 GPIO_item">Bits</span>
  1355. </td>
  1356. <td></td>
  1357. </tr>
  1358. <tr class="GPIO_IO1 GPIO_item expert">
  1359. <td class="indent2">
  1360. <span class="GPIO_IO1 GPIO_item">GPIO1 Enable MQTT</span>
  1361. </td>
  1362. <td><input type="checkbox" id="GPIO_IO1_value4"></td>
  1363. <td></td>
  1364. </tr>
  1365. <tr class="GPIO_IO1 GPIO_item expert">
  1366. <td class="indent2">
  1367. <span class="GPIO_IO1 GPIO_item">GPIO1 Enable REST API</span>
  1368. </td>
  1369. <td><input type="checkbox" id="GPIO_IO1_value5"></td>
  1370. <td></td>
  1371. </tr>
  1372. <tr class="GPIO_IO1 GPIO_item expert">
  1373. <td class="indent2">
  1374. <span class="GPIO_IO1 GPIO_item" class="expert">GPIO1 Name</span>
  1375. </td>
  1376. <td><input type="text" id="GPIO_IO1_value6"></td>
  1377. <td></td>
  1378. </tr>
  1379. <!------------- GPIO1 end ------------------>
  1380. <!------------- GPIO3 begin ------------------>
  1381. <tr class="GPIO_IO3 GPIO_item expert">
  1382. <td class="indent1">
  1383. <input type="checkbox" id="GPIO_IO3_enabled" value="1" onclick = 'InvertEnableItem("GPIO", "IO3")' unchecked>
  1384. <label for=GPIO_IO3_enabled><span id="GPIO_IO3_text">GPIO3 Configuration</span></label>
  1385. </td>
  1386. <td>
  1387. <select id="GPIO_IO3_value1">
  1388. <option value="input">input</option>
  1389. <option value="input-pullup">input pullup</option>
  1390. <option value="input-pulldown">input pulldown</option>
  1391. <option value="output">output</option>
  1392. </select>
  1393. </td>
  1394. <td>$TOOLTIP_GPIO_IO3</td>
  1395. </tr>
  1396. <tr class="GPIO_IO3 GPIO_item expert">
  1397. <td class="indent2">
  1398. <span class="GPIO_IO3 GPIO_item">GPIO3 Use Interrupt</span>
  1399. </td>
  1400. <td>
  1401. <select id="GPIO_IO3_value2">
  1402. <option value="disabled">disabled</option>
  1403. <option value="rising-edge" disabled>rising edge</option>
  1404. <option value="falling-edge" disabled>falling edge</option>
  1405. <option value="rising-and-falling">rising and falling</option>
  1406. <option value="low-level-trigger">low level trigger</option>
  1407. <option value="high-level-trigger">high level trigger</option>
  1408. </select>
  1409. </td>
  1410. <td></td>
  1411. </tr>
  1412. <tr class="GPIO_IO3 GPIO_item expert">
  1413. <td class="indent2">
  1414. <span class="GPIO_IO3 GPIO_item">GPIO3 PWM Duty Cycle Resolution</span>
  1415. </td>
  1416. <td><input required type="number" id="GPIO_IO3_value3" min="1" max="20"
  1417. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=20)) &&
  1418. (!validity.stepMismatch||(value=parseInt(this.value)));"><span class="GPIO_IO3 GPIO_item">Bits</span>
  1419. </td>
  1420. <td></td>
  1421. </tr>
  1422. <tr class="GPIO_IO3 GPIO_item expert">
  1423. <td class="indent2">
  1424. <span class="GPIO_IO3 GPIO_item">GPIO3 Enable MQTT</span>
  1425. </td>
  1426. <td><input type="checkbox" id="GPIO_IO3_value4"></td>
  1427. <td></td>
  1428. </tr>
  1429. <tr class="GPIO_IO3 GPIO_item expert">
  1430. <td class="indent2">
  1431. <span class="GPIO_IO3 GPIO_item">GPIO3 Enable REST API</span>
  1432. </td>
  1433. <td><input type="checkbox" id="GPIO_IO3_value5"></td>
  1434. <td></td>
  1435. </tr>
  1436. <tr class="GPIO_IO3 GPIO_item expert">
  1437. <td class="indent2">
  1438. <span class="GPIO_IO3 GPIO_item">GPIO3 Name</span>
  1439. </td>
  1440. <td><input type="text" id="GPIO_IO3_value6"></td>
  1441. <td></td>
  1442. </tr>
  1443. <!------------- GPIO3 end ------------------>
  1444. <!------------- GPIO4 begin ------------------>
  1445. <tr class="GPIO_item" style="border-bottom: 0px;">
  1446. <td class="indent1">
  1447. <input type="checkbox" id="GPIO_IO4_enabled" value="1" onclick = 'InvertEnableItem("GPIO", "IO4")' checked>
  1448. <label for=GPIO_IO4_enabled><span id="GPIO_IO4_text">GPIO4 Configuration</span></label>
  1449. </td>
  1450. <td>
  1451. <select id="GPIO_IO4_value1">
  1452. <option value="input">input</option>
  1453. <option value="input-pullup">input pullup</option>
  1454. <option value="input-pulldown">input pulldown</option>
  1455. <option value="output">output</option>
  1456. <option value="built-in-led" select>built-in led flash light</option>
  1457. </select>
  1458. </td>
  1459. <td>$TOOLTIP_GPIO_IO4</td>
  1460. </tr>
  1461. <tr class="GPIO_item" style="border-top: 0px;">
  1462. <td colspan="2" style="padding-left:28px">
  1463. <b>IMPORTANT NOTE:</b><br>
  1464. If you'd like to use the built-in flash LED in parallel with other GPIO functionality,
  1465. you have to explicitely activate the "built-in LED flash light" option on GPIO4. The light
  1466. intensity control (PWM) of the LED flash light is not functional anymore (only 100%).
  1467. </td>
  1468. </tr>
  1469. <tr class="GPIO_IO4 GPIO_item expert">
  1470. <td class="indent2">
  1471. <span class="GPIO_IO4 GPIO_item">GPIO4 Use Interrupt</span>
  1472. </td>
  1473. <td>
  1474. <select id="GPIO_IO4_value2">
  1475. <option value="disabled">disabled</option>
  1476. <option value="rising-edge">rising edge</option>
  1477. <option value="falling-edge">falling edge</option>
  1478. <option value="rising-and-falling">rising and falling</option>
  1479. <option value="low-level-trigger">low level trigger</option>
  1480. <option value="high-level-trigger">high level trigger</option>
  1481. </select>
  1482. </td>
  1483. <td></td>
  1484. </tr>
  1485. <tr class="GPIO_IO4 GPIO_item expert">
  1486. <td class="indent2">
  1487. <span class="GPIO_IO4 GPIO_item">GPIO4 PWM Duty Cycle Resolution</span>
  1488. </td>
  1489. <td><input required type="number" id="GPIO_IO4_value3" min="1" max="20"
  1490. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=20)) &&
  1491. (!validity.stepMismatch||(value=parseInt(this.value)));"><span class="GPIO_IO4 GPIO_item">Bits</span>
  1492. </td>
  1493. <td></td>
  1494. </tr>
  1495. <tr class="GPIO_IO4 GPIO_item expert">
  1496. <td class="indent2">
  1497. <span class="GPIO_IO4 GPIO_item">GPIO4 Enable MQTT</span>
  1498. </td>
  1499. <td><input type="checkbox" id="GPIO_IO4_value4"></td>
  1500. <td></td>
  1501. </tr>
  1502. <tr class="GPIO_IO4 GPIO_item expert">
  1503. <td class="indent2">
  1504. <span class="GPIO_IO4 GPIO_item">GPIO4 Enable REST API</span>
  1505. </td>
  1506. <td><input type="checkbox" id="GPIO_IO4_value5"></td>
  1507. <td></td>
  1508. </tr>
  1509. <tr class="GPIO_IO4 GPIO_item expert">
  1510. <td class="indent2">
  1511. <span class="GPIO_IO4 GPIO_item">GPIO4 Name</span>
  1512. </td>
  1513. <td><input type="text" id="GPIO_IO4_value6"></td>
  1514. <td></td>
  1515. </tr>
  1516. <!------------- GPIO4 end ------------------>
  1517. <!------------- GPIO12 begin ------------------>
  1518. <tr class="GPIO_item">
  1519. <td class="indent1">
  1520. <input type="checkbox" id="GPIO_IO12_enabled" value="1" onclick = 'InvertEnableItem("GPIO", "IO12")' unchecked>
  1521. <label for=GPIO_IO12_enabled><span id="GPIO_IO12_text">GPIO12 Configuration</span></label>
  1522. </td>
  1523. <td>
  1524. <select id="GPIO_IO12_value1">
  1525. <option value="input">input</option>
  1526. <option value="input-pullup">input pullup</option>
  1527. <option value="input-pulldown">input pulldown</option>
  1528. <option value="output">output</option>
  1529. <!-- <option value="output-pwm">output-pwm</option> -->
  1530. <!-- <option value="external-flash-pwm">external-flash-pwm</option> -->
  1531. <option value="external-flash-ws281x">external flash light ws281x controlled</option>
  1532. </select>
  1533. </td>
  1534. <td>$TOOLTIP_GPIO_IO12</td>
  1535. </tr>
  1536. <tr class="GPIO_IO12 GPIO_item expert">
  1537. <td class="indent2">
  1538. <span class="GPIO_IO12 GPIO_item">GPIO12 Use Interrupt</span>
  1539. </td>
  1540. <td>
  1541. <select class="GPIO_IO12 GPIO_item" id="GPIO_IO12_value2">
  1542. <option value="disabled">disabled</option>
  1543. <option value="rising-edge">rising edge</option>
  1544. <option value="falling-edge">falling edge</option>
  1545. <option value="rising-and-falling">rising and falling</option>
  1546. <option value="low-level-trigger">low level trigger</option>
  1547. <option value="high-level-trigger">high level trigger</option>
  1548. </select>
  1549. </td>
  1550. <td></td>
  1551. </tr>
  1552. <tr class="GPIO_IO12 GPIO_item expert">
  1553. <td class="indent2">
  1554. <span class="GPIO_IO12 GPIO_item">GPIO12 PWM Duty Cycle Resolution</span>
  1555. </td>
  1556. <td><input required type="number" id="GPIO_IO12_value3" min="1" max="20"
  1557. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=20)) &&
  1558. (!validity.stepMismatch||(value=parseInt(this.value)));"><span class="GPIO_IO12 GPIO_item">Bits</span>
  1559. </td>
  1560. <td></td>
  1561. </tr>
  1562. <tr class="GPIO_IO12 GPIO_item expert">
  1563. <td class="indent2">
  1564. <span class="GPIO_IO12 GPIO_item">GPIO12 Enable MQTT</span>
  1565. </td>
  1566. <td><input type="checkbox" id="GPIO_IO12_value4"></td>
  1567. <td></td>
  1568. </tr>
  1569. <tr class="GPIO_IO12 GPIO_item expert">
  1570. <td class="indent2">
  1571. <span class="GPIO_IO12 GPIO_item">GPIO12 Enable REST API</span>
  1572. </td>
  1573. <td><input type="checkbox" id="GPIO_IO12_value5"></td>
  1574. <td></td>
  1575. </tr>
  1576. <tr class="GPIO_IO12 GPIO_item expert">
  1577. <td class="indent2">
  1578. <span class="GPIO_IO12 GPIO_item">GPIO12 Name</span>
  1579. </td>
  1580. <td><input type="text" id="GPIO_IO12_value6"></td>
  1581. <td></td>
  1582. </tr>
  1583. <tr class="GPIO_item" unused_id="wstypeex3">
  1584. <td class="indent1">
  1585. <span class="GPIO_IO12 GPIO_item" id="GPIO_LEDType_text">LED Type (NeoPixel)</span>
  1586. </td>
  1587. <td class="GPIO_item">
  1588. <select class="GPIO_item" id="GPIO_LEDType_value1">
  1589. <option value="WS2812" selected>WS2812</option>
  1590. <option value="WS2812B">WS2812B</option>
  1591. <option value="SK6812">SK6812</option>
  1592. <option value="WS2813">WS2813 (not tested)</option>
  1593. </select>
  1594. </td>
  1595. <td>$TOOLTIP_GPIO_LEDType</td>
  1596. </tr>
  1597. <tr class="GPIO_item" unused_id="LEDANZex8" >
  1598. <td class="indent1">
  1599. <span class="GPIO_item" id="GPIO_LEDNumbers_text">Numbers of LEDs</span>
  1600. </td>
  1601. <td>
  1602. <input required type="number" name="name" id="GPIO_LEDNumbers_value1" size="13" min="1"
  1603. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.stepMismatch||(value=parseInt(this.value)));">
  1604. </td>
  1605. <td>$TOOLTIP_GPIO_LEDNumbers</td>
  1606. </tr>
  1607. <tr class="GPIO_item" unused_id="LEDRGBex9">
  1608. <td class="indent1">
  1609. <span class="GPIO_item" id="GPIO_LEDColor_text">LED Color</span>
  1610. </td>
  1611. <td>
  1612. R <input required type="number" class="GPIO_IO12 GPIO_item" id="GPIO_LEDColor_value1"
  1613. min="0" max="255" step="1" oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=255)) &&
  1614. (!validity.stepMismatch||(value=parseInt(this.value)));">
  1615. </td>
  1616. <td>$TOOLTIP_GPIO_LEDColor</td>
  1617. </tr>
  1618. <tr class="GPIO_item" unused_id="LEDRGBex9">
  1619. <td></td>
  1620. <td>
  1621. G <input required type="number" class="GPIO_IO12 GPIO_item" id="GPIO_LEDColor_value2"
  1622. min="0" max="255" step="1" oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=255)) &&
  1623. (!validity.stepMismatch||(value=parseInt(this.value)));">
  1624. </td>
  1625. </tr>
  1626. <tr class="GPIO_item" unused_id="LEDRGBex9">
  1627. <td></td>
  1628. <td>
  1629. B <input required type="number" class="GPIO_IO12 GPIO_item" id="GPIO_LEDColor_value3"
  1630. min="0" max="255" step="1" oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.rangeOverflow||(value=255)) &&
  1631. (!validity.stepMismatch||(value=parseInt(this.value)));">
  1632. </td>
  1633. </tr>
  1634. <!------------- GPIO12 end ------------------>
  1635. <!------------- GPIO13 begin ------------------>
  1636. <tr class="GPIO_IO13 GPIO_item expert">
  1637. <td class="indent1">
  1638. <input type="checkbox" id="GPIO_IO13_enabled" value="1" onclick = 'InvertEnableItem("GPIO", "IO13")' unchecked>
  1639. <label for=GPIO_IO13_enabled><span id="GPIO_IO13_text">GPIO13 Configuration</span></label>
  1640. </td>
  1641. <td>
  1642. <select id="GPIO_IO13_value1">
  1643. <option value="input">input</option>
  1644. <option value="input-pullup">input pullup</option>
  1645. <option value="input-pulldown">input pulldown</option>
  1646. <option value="output">output</option>
  1647. </select>
  1648. </td>
  1649. <td>$TOOLTIP_GPIO_IO13</td>
  1650. </tr>
  1651. <tr class="GPIO_IO13 GPIO_item expert">
  1652. <td class="indent2">
  1653. <span class="GPIO_IO13 GPIO_item">GPIO13 Use Interrupt</span>
  1654. </td>
  1655. <td>
  1656. <select id="GPIO_IO13_value2">
  1657. <option value="disabled">disabled</option>
  1658. <option value="rising-edge" disabled>rising edge</option>
  1659. <option value="falling-edge" disabled>falling edge</option>
  1660. <option value="rising-and-falling">rising and falling</option>
  1661. <option value="low-level-trigger">low level trigger</option>
  1662. <option value="high-level-trigger">high level trigger</option>
  1663. </select>
  1664. </td>
  1665. <td></td>
  1666. </tr>
  1667. <tr class="GPIO_IO13 GPIO_item expert">
  1668. <td class="indent2">
  1669. <span class="GPIO_IO13 GPIO_item">GPIO13 PWM Duty Cycle Resolution</span>
  1670. </td>
  1671. <td><input required type="number" id="GPIO_IO13_value3" min="1" max="20"
  1672. oninput="(!validity.rangeUnderflow||(value=1)) && (!validity.rangeOverflow||(value=20)) &&
  1673. (!validity.stepMismatch||(value=parseInt(this.value)));"><span class="GPIO_IO13 GPIO_item">Bits</span></td>
  1674. <td></td>
  1675. </tr>
  1676. <tr class="GPIO_IO13 GPIO_item expert">
  1677. <td class="indent2">
  1678. <span class="GPIO_IO13 GPIO_item">GPIO13 Enable MQTT</span>
  1679. </td>
  1680. <td><input type="checkbox" id="GPIO_IO13_value4"></td>
  1681. <td></td>
  1682. </tr>
  1683. <tr class="GPIO_IO13 GPIO_item expert">
  1684. <td class="indent2">
  1685. <span class="GPIO_IO13 GPIO_item">GPIO13 Enable REST API</span>
  1686. </td>
  1687. <td><input type="checkbox" id="GPIO_IO13_value5"></td>
  1688. <td></td>
  1689. </tr>
  1690. <tr class="GPIO_IO13 GPIO_item expert">
  1691. <td class="indent2">
  1692. <span class="GPIO_IO13 GPIO_item">GPIO13 Name</span>
  1693. </td>
  1694. <td><input type="text" id="GPIO_IO13_value6"></td>
  1695. <td></td>
  1696. </tr>
  1697. <!------------- GPIO13 end ------------------>
  1698. <!------------- Autotimer ------------------>
  1699. <tr style="border-bottom: 2px solid lightgray;">
  1700. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Auto Timer</h4></td>
  1701. </tr>
  1702. <tr class="expert" unused_id="ex13">
  1703. <td class="indent1">
  1704. <class id="AutoTimer_AutoStart_text" style="color:black;">Automatic Round Start</class>
  1705. </td>
  1706. <td>
  1707. <select id="AutoTimer_AutoStart_value1">
  1708. <option value="true">enable</option>
  1709. <option value="false" selected>disable</option>
  1710. </select>
  1711. </td>
  1712. <td>$TOOLTIP_AutoTimer_AutoStart</td>
  1713. </tr>
  1714. <tr>
  1715. <td class="indent1">
  1716. <class id="AutoTimer_Interval_text" style="color:black;">Round Interval</class>
  1717. </td>
  1718. <td>
  1719. <input required type="number" id="AutoTimer_Interval_value1" size="13" min="1" step="any"
  1720. oninput="(!validity.rangeUnderflow||(value=1));">Minutes
  1721. </td>
  1722. <td>$TOOLTIP_AutoTimer_Interval</td>
  1723. </tr>
  1724. <!------------- Data Logging ------------------>
  1725. <tr style="border-bottom: 2px solid lightgray;">
  1726. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Data Logging</h4></td>
  1727. </tr>
  1728. <tr>
  1729. <td class="indent1">
  1730. <class id="DataLogging_DataLogActive_text" style="color:black;">Data Logging</class>
  1731. </td>
  1732. <td>
  1733. <select id="DataLogging_DataLogActive_value1">
  1734. <option value="true">enable</option>
  1735. <option value="false" selected>disable</option>
  1736. </select>
  1737. </td>
  1738. <td>$TOOLTIP_DataLogging_DataLogActive</td>
  1739. </tr>
  1740. <tr>
  1741. <td class="indent1">
  1742. <class id="DataLogging_DataFilesRetention_text" style="color:black;">Data Files Retention</class>
  1743. </td>
  1744. <td>
  1745. <input required type="number" id="DataLogging_DataFilesRetention_value1" size="13" min="0" step="1"
  1746. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Days
  1747. </td>
  1748. <td>$TOOLTIP_DataLogging_DataFilesRetention</td>
  1749. </tr>
  1750. <!------------- Debug Logging ------------------>
  1751. <tr style="border-bottom: 2px solid lightgray;">
  1752. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>Debug</h4></td>
  1753. </tr>
  1754. <tr>
  1755. <td class="indent1">
  1756. <class id="Debug_LogLevel_text" style="color:black;">Logfile Log Level</class>
  1757. </td>
  1758. <td>
  1759. <select id="Debug_LogLevel_value1">
  1760. <option value="1" selected>ERROR</option> <!-- matches esp_log_level_t -->
  1761. <option value="2">WARNING</option>
  1762. <option value="3">INFO</option>
  1763. <option value="4">DEBUG</option>
  1764. </select>
  1765. </td>
  1766. <td>$TOOLTIP_Debug_LogLevel</td>
  1767. </tr>
  1768. <tr>
  1769. <td class="indent1">
  1770. <class id="Debug_LogfilesRetention_text" style="color:black;">Logfiles Retention</class>
  1771. </td>
  1772. <td>
  1773. <input required type="number" id="Debug_LogfilesRetention_value1" size="13" min="0" step="1"
  1774. oninput="(!validity.rangeUnderflow||(value=0)) && (!validity.stepMismatch||(value=parseInt(this.value)));">Days
  1775. </td>
  1776. <td>$TOOLTIP_Debug_LogfilesRetention</td>
  1777. </tr>
  1778. <!------------- System ------------------>
  1779. <tr style="border-bottom: 2px solid lightgray;">
  1780. <td colspan="3" style="padding-left: 0px; padding-bottom: 3px;"><h4>System</h4></td>
  1781. </tr>
  1782. <tr>
  1783. <td class="indent1">
  1784. <input type="checkbox" id="System_TimeZone_enabled" value="1" onclick = 'InvertEnableItem("System", "TimeZone")' unchecked >
  1785. <label for=System_TimeZone_enabled><class id="System_TimeZone_text" style="color:black;">Time Zone</class></label>
  1786. <p></p><p></p>
  1787. </td>
  1788. <td>
  1789. <input type="text" id="System_TimeZone_value1">
  1790. <p>Use <a href="timezones.html" target="_blank">timezones</a> to find your settings</p>
  1791. </td>
  1792. <td>$TOOLTIP_System_TimeZone</td>
  1793. </tr>
  1794. <tr class="expert" unused_id="ex16">
  1795. <td class="indent1">
  1796. <input type="checkbox" id="System_TimeServer_enabled" value="1" onclick = 'InvertEnableItem("System", "TimeServer")' unchecked >
  1797. <label for=System_TimeServer_enabled><class id="System_TimeServer_text" style="color:black;">Time Server (NTP)</class></label>
  1798. </td>
  1799. <td>
  1800. <input type="text" id="System_TimeServer_value1">
  1801. </td>
  1802. <td>$TOOLTIP_System_TimeServer</td>
  1803. </tr>
  1804. <tr class="expert" unused_id="System_Hostname">
  1805. <td class="indent1">
  1806. <input type="checkbox" id="System_Hostname_enabled" value="1" onclick = 'InvertEnableItem("System", "Hostname")' unchecked >
  1807. <label for=System_Hostname_enabled><class id="System_Hostname_text" style="color:black;">Hostname</class></label>
  1808. </td>
  1809. <td>
  1810. <input type="text" id="System_Hostname_value1">
  1811. </td>
  1812. <td>$TOOLTIP_System_Hostname</td>
  1813. </tr>
  1814. <tr class="expert" unused_id="System_RSSIThreshold">
  1815. <td class="indent1">
  1816. <input type="checkbox" id="System_RSSIThreshold_enabled" value="1" onclick = 'InvertEnableItem("System", "RSSIThreshold")' unchecked >
  1817. <label for=System_RSSIThreshold_enabled><class id="System_RSSIThreshold_text" style="color:black;">RSSI Threshold</class></label>
  1818. </td>
  1819. <td>
  1820. <input required type="number" name="name" id="System_RSSIThreshold_value1" min="-100" max="0" step="1"
  1821. oninput="(!validity.rangeUnderflow||(value=-100)) && (!validity.rangeOverflow||(value=0)) &&
  1822. (!validity.stepMismatch||(value=parseInt(this.value)));">dBm
  1823. </td>
  1824. <td>$TOOLTIP_System_RSSIThreshold</td>
  1825. </tr>
  1826. <tr class="expert" unused_id="System_CPUFrequency">
  1827. <td class="indent1">
  1828. <input type="checkbox" id="System_CPUFrequency_enabled" value="1" onclick = 'InvertEnableItem("System", "CPUFrequency")' unchecked >
  1829. <label for=System_CPUFrequency_enabled><class id="System_CPUFrequency_text" style="color:black;">CPU Frequency</class></label>
  1830. </td>
  1831. <td>
  1832. <select id="System_CPUFrequency_value1">
  1833. <option value="160" selected>160 MHz</option>
  1834. <option value="240">240 MHz</option>
  1835. </select>
  1836. </td>
  1837. <td>$TOOLTIP_System_CPUFrequency</td>
  1838. </tr>
  1839. <tr>
  1840. <td class="indent1">
  1841. <class id="System_Tooltip_text" style="color:black;">Tooltip</class>
  1842. </td>
  1843. <td>
  1844. <select id="System_Tooltip_value1" onchange="UpdateTooltipModus()">
  1845. <option value="true">enable</option>
  1846. <option value="false" selected>disable</option>
  1847. </select>
  1848. </td>
  1849. <td></td>
  1850. </tr>
  1851. </table>
  1852. <table style="padding-top:10px">
  1853. <td>
  1854. <button class="button" onclick="saveTextAsFile()">Save Config</button>
  1855. </td>
  1856. <td>
  1857. <button class="button" id="reboot" type="button" onclick="doReboot()">Reboot to activate changes</button>
  1858. </td>
  1859. </table>
  1860. </div>
  1861. <script type="text/javascript" src="common.js?v=$COMMIT_HASH"></script>
  1862. <script type="text/javascript" src="readconfigcommon.js?v=$COMMIT_HASH"></script>
  1863. <script type="text/javascript" src="readconfigparam.js?v=$COMMIT_HASH"></script>
  1864. <script type="text/javascript">
  1865. var canvas = document.getElementById('canvas'),
  1866. domainname = getDomainname(),
  1867. changeCamValue = 0,
  1868. param,
  1869. category,
  1870. NUNBERSAkt = -1,
  1871. NUMBERS;
  1872. function cameraParameterChanged() {
  1873. changeCamValue = 1;
  1874. if(!document.getElementById("TakeImage_CamZoom_value1").selectedIndex) {
  1875. // EnDisableItem(_status, _param, _category, _cat, _name, _optional, _number = -1)
  1876. EnDisableItem(true, param, category, "TakeImage", "CamZoomOffsetX", false);
  1877. EnDisableItem(true, param, category, "TakeImage", "CamZoomOffsetY", false);
  1878. EnDisableItem(true, param, category, "TakeImage", "CamZoomSize", false);
  1879. }
  1880. else {
  1881. EnDisableItem(false, param, category, "TakeImage", "CamZoomOffsetX", false);
  1882. EnDisableItem(false, param, category, "TakeImage", "CamZoomOffsetY", false);
  1883. EnDisableItem(false, param, category, "TakeImage", "CamZoomSize", false);
  1884. }
  1885. if(document.getElementById("TakeImage_CamAutoSharpness_value1").selectedIndex) {
  1886. EnDisableItem(true, param, category, "TakeImage", "CamSharpness", false);
  1887. }
  1888. else {
  1889. EnDisableItem(false, param, category, "TakeImage", "CamSharpness", false);
  1890. }
  1891. }
  1892. function LoadConfigNeu() {
  1893. domainname = getDomainname();
  1894. if (!loadConfig(domainname)) {
  1895. firework.launch('Configuration could not be loaded! Please reload the page!', 'danger', 30000);
  1896. return;
  1897. }
  1898. param = getCamConfig();
  1899. category = getConfigCategory();
  1900. InitIndivParameter();
  1901. UpdateInput();
  1902. var sel = document.getElementById("Numbers_value1");
  1903. UpdateInputIndividual(sel);
  1904. UpdateExpertModus();
  1905. UpdateTooltipModus();
  1906. document.getElementById("divall").style.display = '';
  1907. if(!document.getElementById("TakeImage_CamZoom_value1").selectedIndex) {
  1908. // EnDisableItem(_status, _param, _category, _cat, _name, _optional, _number = -1)
  1909. EnDisableItem(true, param, category, "TakeImage", "CamZoomOffsetX", false);
  1910. EnDisableItem(true, param, category, "TakeImage", "CamZoomOffsetY", false);
  1911. EnDisableItem(true, param, category, "TakeImage", "CamZoomSize", false);
  1912. }
  1913. else {
  1914. EnDisableItem(false, param, category, "TakeImage", "CamZoomOffsetX", false);
  1915. EnDisableItem(false, param, category, "TakeImage", "CamZoomOffsetY", false);
  1916. EnDisableItem(false, param, category, "TakeImage", "CamZoomSize", false);
  1917. }
  1918. if(document.getElementById("TakeImage_CamAutoSharpness_value1").selectedIndex) {
  1919. EnDisableItem(true, param, category, "TakeImage", "CamSharpness", false);
  1920. }
  1921. else {
  1922. EnDisableItem(false, param, category, "TakeImage", "CamSharpness", false);
  1923. }
  1924. }
  1925. function InitIndivParameter() {
  1926. NUMBERS = getNUMBERInfo();
  1927. var _index = document.getElementById("Numbers_value1");
  1928. while (_index.length) {
  1929. _index.remove(0);
  1930. }
  1931. var _indexInflux = document.getElementById("NumbersInfluxDBv2_value1");
  1932. while (_indexInflux.length) {
  1933. _indexInflux.remove(0);
  1934. }
  1935. var _indexInfluxv1 = document.getElementById("NumbersInfluxDB_value1");
  1936. while (_indexInfluxv1.length) {
  1937. _indexInfluxv1.remove(0);
  1938. }
  1939. for (var i = 0; i < NUMBERS.length; ++i) {
  1940. var option = document.createElement("option");
  1941. option.text = NUMBERS[i]["name"];
  1942. option.value = i;
  1943. _index.add(option);
  1944. var optionInflux = document.createElement("option");
  1945. optionInflux.text = NUMBERS[i]["name"];
  1946. optionInflux.value = i;
  1947. _indexInflux.add(optionInflux);
  1948. var optionInfluxv1 = document.createElement("option");
  1949. optionInfluxv1.text = NUMBERS[i]["name"];
  1950. optionInfluxv1.value = i;
  1951. _indexInfluxv1.add(optionInfluxv1);
  1952. }
  1953. _index.selectedIndex = 0;
  1954. _indexInflux.selectedIndex = 0;
  1955. _indexInfluxv1.selectedIndex = 0;
  1956. }
  1957. function UpdateInputIndividual(sel) {
  1958. if (NUNBERSAkt != -1) {
  1959. // ReadParameter(param, "PostProcessing", "PreValueUse", false, NUNBERSAkt);
  1960. ReadParameter(param, "PostProcessing", "DecimalShift", true, NUNBERSAkt);
  1961. ReadParameter(param, "PostProcessing", "AnalogDigitalTransitionStart", true, NUNBERSAkt);
  1962. ReadParameter(param, "PostProcessing", "ChangeRateThreshold", true, NUNBERSAkt);
  1963. ReadParameter(param, "PostProcessing", "MaxRateValue", true, NUNBERSAkt);
  1964. ReadParameter(param, "PostProcessing", "MaxRateType", true, NUNBERSAkt);
  1965. ReadParameter(param, "PostProcessing", "ExtendedResolution", false, NUNBERSAkt);
  1966. ReadParameter(param, "PostProcessing", "IgnoreLeadingNaN", false, NUNBERSAkt);
  1967. // ReadParameter(param, "PostProcessing", "IgnoreAllNaN", false, NUNBERSAkt);
  1968. ReadParameter(param, "PostProcessing", "AllowNegativeRates", false, NUNBERSAkt);
  1969. ReadParameter(param, "InfluxDB", "Field", true, NUNBERSAkt);
  1970. ReadParameter(param, "InfluxDBv2", "Field", true, NUNBERSAkt);
  1971. ReadParameter(param, "InfluxDB", "Measurement", true, NUNBERSAkt);
  1972. ReadParameter(param, "InfluxDBv2", "Measurement", true, NUNBERSAkt);
  1973. }
  1974. // var sel = document.getElementById("Numbers_value1");
  1975. NUNBERSAkt = sel.selectedIndex;
  1976. // WriteParameter(param, category, "PostProcessing", "PreValueUse", false, NUNBERSAkt);
  1977. WriteParameter(param, category, "PostProcessing", "DecimalShift", true, NUNBERSAkt);
  1978. WriteParameter(param, category, "PostProcessing", "AnalogDigitalTransitionStart", true, NUNBERSAkt);
  1979. WriteParameter(param, category, "PostProcessing", "ChangeRateThreshold", true, NUNBERSAkt);
  1980. WriteParameter(param, category, "PostProcessing", "MaxRateValue", true, NUNBERSAkt);
  1981. WriteParameter(param, category, "PostProcessing", "MaxRateType", true, NUNBERSAkt);
  1982. WriteParameter(param, category, "PostProcessing", "ExtendedResolution", false, NUNBERSAkt);
  1983. WriteParameter(param, category, "PostProcessing", "IgnoreLeadingNaN", false, NUNBERSAkt);
  1984. // WriteParameter(param, category, "PostProcessing", "IgnoreAllNaN", false, NUNBERSAkt);
  1985. WriteParameter(param, category, "PostProcessing", "AllowNegativeRates", false, NUNBERSAkt);
  1986. WriteParameter(param, category, "InfluxDB", "Field", true, NUNBERSAkt);
  1987. WriteParameter(param, category, "InfluxDBv2", "Field", true, NUNBERSAkt);
  1988. WriteParameter(param, category, "InfluxDB", "Measurement", true, NUNBERSAkt);
  1989. WriteParameter(param, category, "InfluxDBv2", "Measurement", true, NUNBERSAkt);
  1990. }
  1991. function UpdateInput() {
  1992. document.getElementById("Category_Digits_enabled").checked = category["Digits"]["enabled"];
  1993. setVisible("DigitItem", category["Digits"]["enabled"]);
  1994. document.getElementById("Category_Analog_enabled").checked = category["Analog"]["enabled"];
  1995. setVisible("AnalogItem", category["Analog"]["enabled"]);
  1996. document.getElementById("Category_MQTT_enabled").checked = category["MQTT"]["enabled"];
  1997. setVisible("MQTTItem", category["MQTT"]["enabled"]);
  1998. document.getElementById("Category_GPIO_enabled").checked = category["GPIO"]["enabled"];
  1999. setVisible("GPIO_item", category["GPIO"]["enabled"]);
  2000. document.getElementById("Category_InfluxDB_enabled").checked = category["InfluxDB"]["enabled"];
  2001. setVisible("InfluxDBv1Item", category["InfluxDB"]["enabled"]);
  2002. document.getElementById("Category_InfluxDBv2_enabled").checked = category["InfluxDBv2"]["enabled"];
  2003. setVisible("InfluxDBv2Item", category["InfluxDBv2"]["enabled"]);
  2004. document.getElementById("Category_Webhook_enabled").checked = category["Webhook"]["enabled"];
  2005. setVisible("WebhookItem", category["Webhook"]["enabled"]);
  2006. WriteParameter(param, category, "TakeImage", "RawImagesLocation", true);
  2007. WriteParameter(param, category, "TakeImage", "RawImagesRetention", true);
  2008. WriteParameter(param, category, "TakeImage", "WaitBeforeTakingPicture", false);
  2009. WriteParameter(param, category, "TakeImage", "CamGainceiling", false);
  2010. WriteParameter(param, category, "TakeImage", "CamQuality", false);
  2011. WriteParameter(param, category, "TakeImage", "CamBrightness", false);
  2012. WriteParameter(param, category, "TakeImage", "CamContrast", false);
  2013. WriteParameter(param, category, "TakeImage", "CamSaturation", false);
  2014. WriteParameter(param, category, "TakeImage", "CamSharpness", false);
  2015. WriteParameter(param, category, "TakeImage", "CamAutoSharpness", false);
  2016. WriteParameter(param, category, "TakeImage", "CamSpecialEffect", false);
  2017. WriteParameter(param, category, "TakeImage", "CamWbMode", false);
  2018. WriteParameter(param, category, "TakeImage", "CamAwb", false);
  2019. WriteParameter(param, category, "TakeImage", "CamAwbGain", false);
  2020. WriteParameter(param, category, "TakeImage", "CamAec", false);
  2021. WriteParameter(param, category, "TakeImage", "CamAec2", false);
  2022. WriteParameter(param, category, "TakeImage", "CamAeLevel", false);
  2023. WriteParameter(param, category, "TakeImage", "CamAecValue", false);
  2024. WriteParameter(param, category, "TakeImage", "CamAgc", false);
  2025. WriteParameter(param, category, "TakeImage", "CamAgcGain", false);
  2026. WriteParameter(param, category, "TakeImage", "CamBpc", false);
  2027. WriteParameter(param, category, "TakeImage", "CamWpc", false);
  2028. WriteParameter(param, category, "TakeImage", "CamRawGma", false);
  2029. WriteParameter(param, category, "TakeImage", "CamLenc", false);
  2030. WriteParameter(param, category, "TakeImage", "CamHmirror", false);
  2031. WriteParameter(param, category, "TakeImage", "CamVflip", false);
  2032. WriteParameter(param, category, "TakeImage", "CamDcw", false);
  2033. WriteParameter(param, category, "TakeImage", "CamDenoise", false);
  2034. WriteParameter(param, category, "TakeImage", "CamZoom", false);
  2035. WriteParameter(param, category, "TakeImage", "CamZoomOffsetX", false);
  2036. WriteParameter(param, category, "TakeImage", "CamZoomOffsetY", false);
  2037. WriteParameter(param, category, "TakeImage", "CamZoomSize", false);
  2038. WriteParameter(param, category, "TakeImage", "LEDIntensity", false);
  2039. WriteParameter(param, category, "TakeImage", "Demo", false);
  2040. WriteParameter(param, category, "Alignment", "SearchFieldX", false);
  2041. WriteParameter(param, category, "Alignment", "SearchFieldY", false);
  2042. WriteParameter(param, category, "Alignment", "AlignmentAlgo", true);
  2043. WriteParameter(param, category, "Alignment", "InitialRotate", false);
  2044. WriteParameter(param, category, "Digits", "CNNGoodThreshold", true);
  2045. WriteParameter(param, category, "Digits", "ROIImagesLocation", true);
  2046. WriteParameter(param, category, "Digits", "ROIImagesRetention", true);
  2047. WriteParameter(param, category, "Analog", "ROIImagesLocation", true);
  2048. WriteParameter(param, category, "Analog", "ROIImagesRetention", true);
  2049. WriteParameter(param, category, "PostProcessing", "PreValueUse", false);
  2050. WriteParameter(param, category, "PostProcessing", "PreValueAgeStartup", true);
  2051. WriteParameter(param, category, "PostProcessing", "ErrorMessage", false);
  2052. WriteParameter(param, category, "PostProcessing", "CheckDigitIncreaseConsistency", false);
  2053. WriteParameter(param, category, "MQTT", "Uri", true);
  2054. WriteParameter(param, category, "MQTT", "MainTopic", true);
  2055. WriteParameter(param, category, "MQTT", "ClientID", true);
  2056. WriteParameter(param, category, "MQTT", "user", true);
  2057. WriteParameter(param, category, "MQTT", "password", true);
  2058. WriteParameter(param, category, "MQTT", "RetainMessages", false);
  2059. WriteParameter(param, category, "MQTT", "HomeassistantDiscovery", false);
  2060. WriteParameter(param, category, "MQTT", "MeterType", true);
  2061. WriteParameter(param, category, "MQTT", "CACert", true);
  2062. WriteParameter(param, category, "MQTT", "ClientCert", true);
  2063. WriteParameter(param, category, "MQTT", "ClientKey", true);
  2064. WriteParameter(param, category, "InfluxDB", "Uri", true);
  2065. WriteParameter(param, category, "InfluxDB", "Database", true);
  2066. // WriteParameter(param, category, "InfluxDB", "Measurement", true);
  2067. WriteParameter(param, category, "InfluxDB", "user", true);
  2068. WriteParameter(param, category, "InfluxDB", "password", true);
  2069. // WriteParameter(param, category, "InfluxDB", "Field", true);
  2070. WriteParameter(param, category, "InfluxDBv2", "Uri", true);
  2071. WriteParameter(param, category, "InfluxDBv2", "Bucket", true);
  2072. // WriteParameter(param, category, "InfluxDBv2", "Measurement", true);
  2073. WriteParameter(param, category, "InfluxDBv2", "Org", true);
  2074. WriteParameter(param, category, "InfluxDBv2", "Token", true);
  2075. // WriteParameter(param, category, "InfluxDBv2", "Field", true);
  2076. WriteParameter(param, category, "Webhook", "Uri", true);
  2077. WriteParameter(param, category, "Webhook", "ApiKey", true);
  2078. WriteParameter(param, category, "GPIO", "IO0", true);
  2079. WriteParameter(param, category, "GPIO", "IO1", true);
  2080. WriteParameter(param, category, "GPIO", "IO3", true);
  2081. WriteParameter(param, category, "GPIO", "IO4", true);
  2082. WriteParameter(param, category, "GPIO", "IO12", true);
  2083. WriteParameter(param, category, "GPIO", "IO13", true);
  2084. WriteParameter(param, category, "GPIO", "LEDType", false);
  2085. WriteParameter(param, category, "GPIO", "LEDNumbers", false);
  2086. WriteParameter(param, category, "GPIO", "LEDColor", false);
  2087. WriteParameter(param, category, "AutoTimer", "AutoStart", false);
  2088. WriteParameter(param, category, "AutoTimer", "Interval", false);
  2089. WriteParameter(param, category, "DataLogging", "DataLogActive", false);
  2090. WriteParameter(param, category, "DataLogging", "DataFilesRetention", false);
  2091. WriteParameter(param, category, "Debug", "LogLevel", false);
  2092. WriteParameter(param, category, "Debug", "LogfilesRetention", false);
  2093. WriteParameter(param, category, "System", "Tooltip", false);
  2094. WriteParameter(param, category, "System", "TimeZone", true);
  2095. WriteParameter(param, category, "System", "Hostname", true);
  2096. WriteParameter(param, category, "System", "TimeServer", true);
  2097. WriteParameter(param, category, "System", "RSSIThreshold", true);
  2098. WriteParameter(param, category, "System", "CPUFrequency", true);
  2099. WriteModelFiles();
  2100. }
  2101. function WriteModelFiles() {
  2102. list_tflite = getTFLITEList();
  2103. var _indexDig = document.getElementById("Digits_Model_value1");
  2104. var _indexAna = document.getElementById("Analog_Model_value1");
  2105. while (_indexDig.length) {
  2106. _indexDig.remove(0);
  2107. }
  2108. while (_indexAna.length) {
  2109. _indexAna.remove(0);
  2110. }
  2111. for (var i = 0; i < list_tflite.length; ++i) {
  2112. var optionDig = document.createElement("option");
  2113. var optionAna = document.createElement("option");
  2114. var text = list_tflite[i].replace("/config/", "");
  2115. if (list_tflite[i].includes("/dig")) { // Its a digital file, only show in the digital list box
  2116. optionDig.text = text;
  2117. optionDig.value = list_tflite[i];
  2118. _indexDig.add(optionDig);
  2119. }
  2120. else if (list_tflite[i].includes("/ana")) { // Its a digital file, only show in the analog list box
  2121. optionAna.text = text;
  2122. optionAna.value = list_tflite[i];
  2123. _indexAna.add(optionAna);
  2124. }
  2125. else { // all other files, show in both list boxes
  2126. optionDig.text = text;
  2127. optionDig.value = list_tflite[i];
  2128. _indexDig.add(optionDig);
  2129. optionAna.text = text;
  2130. optionAna.value = list_tflite[i];
  2131. _indexAna.add(optionAna);
  2132. }
  2133. }
  2134. WriteParameter(param, category, "Analog", "Model", false);
  2135. WriteParameter(param, category, "Digits", "Model", false);
  2136. }
  2137. function ReadParameterAll() {
  2138. category["Analog"]["enabled"] = document.getElementById("Category_Analog_enabled").checked;
  2139. category["Digits"]["enabled"] = document.getElementById("Category_Digits_enabled").checked;
  2140. category["MQTT"]["enabled"] = document.getElementById("Category_MQTT_enabled").checked;
  2141. category["InfluxDB"]["enabled"] = document.getElementById("Category_InfluxDB_enabled").checked;
  2142. category["InfluxDBv2"]["enabled"] = document.getElementById("Category_InfluxDBv2_enabled").checked;
  2143. category["GPIO"]["enabled"] = document.getElementById("Category_GPIO_enabled").checked;
  2144. ReadParameter(param, "TakeImage", "RawImagesLocation", true);
  2145. ReadParameter(param, "TakeImage", "RawImagesRetention", true);
  2146. ReadParameter(param, "TakeImage", "WaitBeforeTakingPicture", false);
  2147. ReadParameter(param, "TakeImage", "CamGainceiling", false);
  2148. ReadParameter(param, "TakeImage", "CamQuality", false);
  2149. ReadParameter(param, "TakeImage", "CamBrightness", false);
  2150. ReadParameter(param, "TakeImage", "CamContrast", false);
  2151. ReadParameter(param, "TakeImage", "CamSaturation", false);
  2152. ReadParameter(param, "TakeImage", "CamSharpness", false);
  2153. ReadParameter(param, "TakeImage", "CamAutoSharpness", false);
  2154. ReadParameter(param, "TakeImage", "CamSpecialEffect", false);
  2155. ReadParameter(param, "TakeImage", "CamWbMode", false);
  2156. ReadParameter(param, "TakeImage", "CamAwb", false);
  2157. ReadParameter(param, "TakeImage", "CamAwbGain", false);
  2158. ReadParameter(param, "TakeImage", "CamAec", false);
  2159. ReadParameter(param, "TakeImage", "CamAec2", false);
  2160. ReadParameter(param, "TakeImage", "CamAeLevel", false);
  2161. ReadParameter(param, "TakeImage", "CamAecValue", false);
  2162. ReadParameter(param, "TakeImage", "CamAgc", false);
  2163. ReadParameter(param, "TakeImage", "CamAgcGain", false);
  2164. ReadParameter(param, "TakeImage", "CamBpc", false);
  2165. ReadParameter(param, "TakeImage", "CamWpc", false);
  2166. ReadParameter(param, "TakeImage", "CamRawGma", false);
  2167. ReadParameter(param, "TakeImage", "CamLenc", false);
  2168. ReadParameter(param, "TakeImage", "CamHmirror", false);
  2169. ReadParameter(param, "TakeImage", "CamVflip", false);
  2170. ReadParameter(param, "TakeImage", "CamDcw", false);
  2171. ReadParameter(param, "TakeImage", "CamDenoise", false);
  2172. ReadParameter(param, "TakeImage", "CamZoom", false);
  2173. ReadParameter(param, "TakeImage", "CamZoomOffsetX", false);
  2174. ReadParameter(param, "TakeImage", "CamZoomOffsetY", false);
  2175. ReadParameter(param, "TakeImage", "CamZoomSize", false);
  2176. ReadParameter(param, "TakeImage", "LEDIntensity", false);
  2177. ReadParameter(param, "TakeImage", "Demo", false);
  2178. ReadParameter(param, "Alignment", "SearchFieldX", false);
  2179. ReadParameter(param, "Alignment", "SearchFieldY", false);
  2180. ReadParameter(param, "Alignment", "AlignmentAlgo", true);
  2181. ReadParameter(param, "Alignment", "InitialRotate", false);
  2182. ReadParameter(param, "Digits", "Model", false);
  2183. ReadParameter(param, "Digits", "CNNGoodThreshold", true);
  2184. ReadParameter(param, "Digits", "ROIImagesLocation", true);
  2185. ReadParameter(param, "Digits", "ROIImagesRetention", true);
  2186. ReadParameter(param, "Analog", "Model", false);
  2187. ReadParameter(param, "Analog", "ROIImagesLocation", true);
  2188. ReadParameter(param, "Analog", "ROIImagesRetention", true);
  2189. ReadParameter(param, "PostProcessing", "PreValueUse", false);
  2190. ReadParameter(param, "PostProcessing", "PreValueAgeStartup", true);
  2191. ReadParameter(param, "PostProcessing", "ErrorMessage", false);
  2192. ReadParameter(param, "PostProcessing", "CheckDigitIncreaseConsistency", false);
  2193. ReadParameter(param, "MQTT", "Uri", true);
  2194. ReadParameter(param, "MQTT", "MainTopic", true);
  2195. ReadParameter(param, "MQTT", "ClientID", true);
  2196. ReadParameter(param, "MQTT", "user", true);
  2197. ReadParameter(param, "MQTT", "password", true);
  2198. ReadParameter(param, "MQTT", "RetainMessages", false);
  2199. ReadParameter(param, "MQTT", "HomeassistantDiscovery", false);
  2200. ReadParameter(param, "MQTT", "MeterType", true);
  2201. ReadParameter(param, "MQTT", "CACert", true);
  2202. ReadParameter(param, "MQTT", "ClientCert", true);
  2203. ReadParameter(param, "MQTT", "ClientKey", true);
  2204. ReadParameter(param, "InfluxDB", "Uri", true);
  2205. ReadParameter(param, "InfluxDB", "Database", true);
  2206. ReadParameter(param, "InfluxDB", "Measurement", true);
  2207. ReadParameter(param, "InfluxDB", "user", true);
  2208. ReadParameter(param, "InfluxDB", "password", true);
  2209. ReadParameter(param, "InfluxDBv2", "Uri", true);
  2210. ReadParameter(param, "InfluxDBv2", "Bucket", true);
  2211. ReadParameter(param, "InfluxDBv2", "Measurement", true);
  2212. ReadParameter(param, "InfluxDBv2", "Org", true);
  2213. ReadParameter(param, "InfluxDBv2", "Token", true);
  2214. // ReadParameter(param, "InfluxDB", "Field", true);
  2215. ReadParameter(param, "Webhook", "Uri", true);
  2216. ReadParameter(param, "Webhook", "ApiKey", true);
  2217. ReadParameter(param, "GPIO", "IO0", true);
  2218. ReadParameter(param, "GPIO", "IO1", true);
  2219. ReadParameter(param, "GPIO", "IO3", true);
  2220. ReadParameter(param, "GPIO", "IO4", true);
  2221. ReadParameter(param, "GPIO", "IO12", true);
  2222. ReadParameter(param, "GPIO", "IO13", true);
  2223. ReadParameter(param, "GPIO", "LEDType", false);
  2224. ReadParameter(param, "GPIO", "LEDNumbers", false);
  2225. ReadParameter(param, "GPIO", "LEDColor", false);
  2226. // Folgende Zeilen sind für Abwärtskompatibität < v9.0.0 notwendig (manchmal parameter auskommentiert)
  2227. param["GPIO"]["LEDType"]["enabled"] = true;
  2228. param["GPIO"]["LEDNumbers"]["enabled"] = true;
  2229. param["GPIO"]["LEDColor"]["enabled"] = true;
  2230. param["GPIO"]["LEDType"]["found"] = true;
  2231. param["GPIO"]["LEDNumbers"]["found"] = true;
  2232. param["GPIO"]["LEDColor"]["found"] = true;
  2233. ReadParameter(param, "AutoTimer", "AutoStart", false);
  2234. ReadParameter(param, "AutoTimer", "Interval", false);
  2235. ReadParameter(param, "DataLogging", "DataLogActive", false);
  2236. ReadParameter(param, "DataLogging", "DataFilesRetention", false);
  2237. ReadParameter(param, "Debug", "LogLevel", false);
  2238. ReadParameter(param, "Debug", "LogfilesRetention", false);
  2239. ReadParameter(param, "System", "Tooltip", false);
  2240. ReadParameter(param, "System", "TimeZone", true);
  2241. ReadParameter(param, "System", "Hostname", true);
  2242. ReadParameter(param, "System", "TimeServer", true);
  2243. ReadParameter(param, "System", "RSSIThreshold", true);
  2244. ReadParameter(param, "System", "CPUFrequency", true);
  2245. var sel = document.getElementById("Numbers_value1");
  2246. UpdateInputIndividual(sel);
  2247. // FormatDecimalValue(param, "PostProcessing", "MaxRateValue");
  2248. }
  2249. function UpdateAfterCategoryCheck() {
  2250. ReadParameterAll();
  2251. category["Analog"]["enabled"] = document.getElementById("Category_Analog_enabled").checked;
  2252. category["Digits"]["enabled"] = document.getElementById("Category_Digits_enabled").checked;
  2253. category["MQTT"]["enabled"] = document.getElementById("Category_MQTT_enabled").checked;
  2254. category["InfluxDB"]["enabled"] = document.getElementById("Category_InfluxDB_enabled").checked;
  2255. category["InfluxDBv2"]["enabled"] = document.getElementById("Category_InfluxDBv2_enabled").checked;
  2256. category["GPIO"]["enabled"] = document.getElementById("Category_GPIO_enabled").checked;
  2257. category["Webhook"]["enabled"] = document.getElementById("Category_Webhook_enabled").checked;
  2258. UpdateInput();
  2259. var sel = document.getElementById("Numbers_value1");
  2260. UpdateInputIndividual(sel);
  2261. }
  2262. function UpdateExpertModus() {
  2263. // var _style = 'display:none;';
  2264. var _style_pur = 'none';
  2265. var _hidden = true;
  2266. if (document.getElementById("ExpertModus_enabled").checked) {
  2267. // _style = '';
  2268. _style_pur = '';
  2269. _hidden = false;
  2270. document.getElementById("Button_Edit_Config_Raw").style.display = "";
  2271. firework.launch("Expert view activated. Please use carefully", 'warning', 5000);
  2272. }
  2273. else {
  2274. document.getElementById("Button_Edit_Config_Raw").style.display = "none";
  2275. }
  2276. const expert = document.querySelectorAll(".expert");
  2277. for (var i = 0; i < expert.length; i++) {
  2278. expert[i].style.display = _style_pur;
  2279. // document.getElementById(expert[i].id).style = _style;
  2280. }
  2281. // Enable / Disable die Optionen in den Menues für die Auswahl. Falls kein Expertenmodus soll nur ein Wert (built-in-led oder externan-flash-ws281x) möglich sein
  2282. Array.from(document.querySelector("#GPIO_IO4_value1").options).forEach(function(option_element) {
  2283. if (option_element.value != "built-in-led") {
  2284. option_element.hidden = _hidden;
  2285. }
  2286. });
  2287. Array.from(document.querySelector("#GPIO_IO12_value1").options).forEach(function(option_element) {
  2288. if (option_element.value != "external-flash-ws281x") {
  2289. option_element.hidden = _hidden;
  2290. }
  2291. });
  2292. }
  2293. function UpdateTooltipModus() {
  2294. var _style_pur = 'none';
  2295. var _hidden = true;
  2296. if (!document.getElementById("System_Tooltip_value1").selectedIndex) {
  2297. _style_pur = '';
  2298. _hidden = false;
  2299. //firework.launch("Tooltip view activated.", 'warning', 5000);
  2300. }
  2301. const tooltip = document.querySelectorAll(".tooltip");
  2302. for (var i = 0; i < tooltip.length; i++) {
  2303. tooltip[i].style.display = _style_pur;
  2304. }
  2305. }
  2306. function saveTextAsFile() {
  2307. ReadParameterAll();
  2308. if (document.getElementsByClassName("invalid-input").length > 0) {
  2309. firework.launch("Settings cannot be saved. Please check your entries!", 'danger', 30000);
  2310. return;
  2311. }
  2312. if (confirm("Are you sure you want to save the configuration?")) {
  2313. ReadParameterAll();
  2314. WriteConfigININew();
  2315. SaveConfigToServer(domainname);
  2316. firework.launch('Configuration saved. It will get applied after the next reboot!', 'success', 5000);
  2317. if (changeCamValue == 1) {
  2318. camSettingsSet();
  2319. firework.launch('You have changed the camera settings, so creating a new reference image and updating the alignment marks is mandatory!', 'success', 10000);
  2320. }
  2321. }
  2322. }
  2323. function camSettingsSet(){
  2324. var domainname = getDomainname();
  2325. document.getElementById("overlay").style.display = "block";
  2326. document.getElementById("overlaytext").innerHTML = "Save Cam Settings...";
  2327. var _waitb_temp = document.getElementById("TakeImage_WaitBeforeTakingPicture_value1").value;
  2328. var _aecgc_temp = document.getElementById("TakeImage_CamGainceiling_value1").selectedIndex;
  2329. var _qual_temp = document.getElementById("TakeImage_CamQuality_value1").value;
  2330. var _bri_temp = document.getElementById("TakeImage_CamBrightness_value1").value;
  2331. var _con_temp = document.getElementById("TakeImage_CamContrast_value1").value;
  2332. var _sat_temp = document.getElementById("TakeImage_CamSaturation_value1").value;
  2333. var _shp_temp = document.getElementById("TakeImage_CamSharpness_value1").value;
  2334. var _ashp_temp = document.getElementById("TakeImage_CamAutoSharpness_value1").value;
  2335. if (_ashp_temp == '0') {
  2336. _ashp_temp = '1';
  2337. }
  2338. else {
  2339. _ashp_temp = '0';
  2340. }
  2341. var _spe_temp = document.getElementById("TakeImage_CamSpecialEffect_value1").selectedIndex;
  2342. var _wbm_temp = document.getElementById("TakeImage_CamWbMode_value1").selectedIndex;
  2343. var _awb_temp = document.getElementById("TakeImage_CamAwb_value1").selectedIndex;
  2344. if (_awb_temp == '0') {
  2345. _awb_temp = '1';
  2346. }
  2347. else {
  2348. _awb_temp = '0';
  2349. }
  2350. var _awbg_temp = document.getElementById("TakeImage_CamAwbGain_value1").selectedIndex;
  2351. if (_awbg_temp == '0') {
  2352. _awbg_temp = '1';
  2353. }
  2354. else {
  2355. _awbg_temp = '0';
  2356. }
  2357. var _aec_temp = document.getElementById("TakeImage_CamAec_value1").selectedIndex;
  2358. if (_aec_temp == '0') {
  2359. _aec_temp = '1';
  2360. }
  2361. else {
  2362. _aec_temp = '0';
  2363. }
  2364. var _aec2_temp = document.getElementById("TakeImage_CamAec2_value1").selectedIndex;
  2365. if (_aec2_temp == '0') {
  2366. _aec2_temp = '1';
  2367. }
  2368. else {
  2369. _aec2_temp = '0';
  2370. }
  2371. var _ael_temp = document.getElementById("TakeImage_CamAeLevel_value1").value;
  2372. var _aecv_temp = document.getElementById("TakeImage_CamAecValue_value1").value;
  2373. var _agc_temp = document.getElementById("TakeImage_CamAgc_value1").selectedIndex;
  2374. if (_agc_temp == '0') {
  2375. _agc_temp = '1';
  2376. }
  2377. else {
  2378. _agc_temp = '0';
  2379. }
  2380. var _agcg_temp = document.getElementById("TakeImage_CamAgcGain_value1").value;
  2381. var _bpc_temp = document.getElementById("TakeImage_CamBpc_value1").selectedIndex;
  2382. if (_bpc_temp == '0') {
  2383. _bpc_temp = '1';
  2384. }
  2385. else {
  2386. _bpc_temp = '0';
  2387. }
  2388. var _wpc_temp = document.getElementById("TakeImage_CamWpc_value1").selectedIndex;
  2389. if (_wpc_temp == '0') {
  2390. _wpc_temp = '1';
  2391. }
  2392. else {
  2393. _wpc_temp = '0';
  2394. }
  2395. var _rgma_temp = document.getElementById("TakeImage_CamRawGma_value1").selectedIndex;
  2396. if (_rgma_temp == '0') {
  2397. _rgma_temp = '1';
  2398. }
  2399. else {
  2400. _rgma_temp = '0';
  2401. }
  2402. var _lenc_temp = document.getElementById("TakeImage_CamLenc_value1").selectedIndex;
  2403. if (_lenc_temp == '0') {
  2404. _lenc_temp = '1';
  2405. }
  2406. else {
  2407. _lenc_temp = '0';
  2408. }
  2409. var _mirror_temp = document.getElementById("TakeImage_CamHmirror_value1").selectedIndex;
  2410. if (_mirror_temp == '0') {
  2411. _mirror_temp = '1';
  2412. }
  2413. else {
  2414. _mirror_temp = '0';
  2415. }
  2416. var _flip_temp = document.getElementById("TakeImage_CamVflip_value1").selectedIndex;
  2417. if (_flip_temp == '0') {
  2418. _flip_temp = '1';
  2419. }
  2420. else {
  2421. _flip_temp = '0';
  2422. }
  2423. var _dcw_temp = document.getElementById("TakeImage_CamDcw_value1").selectedIndex;
  2424. if (_dcw_temp == '0') {
  2425. _dcw_temp = '1';
  2426. }
  2427. else {
  2428. _dcw_temp = '0';
  2429. }
  2430. var _denoise_temp = document.getElementById("TakeImage_CamDenoise_value1").value;
  2431. var _ledi_temp = document.getElementById("TakeImage_LEDIntensity_value1").value;
  2432. var _zoom_temp = document.getElementById("TakeImage_CamZoom_value1").selectedIndex;
  2433. if (_zoom_temp == '0') {
  2434. _zoom_temp = '1';
  2435. }
  2436. else {
  2437. _zoom_temp = '0';
  2438. }
  2439. var _zoomx_temp = document.getElementById("TakeImage_CamZoomOffsetX_value1").value;
  2440. var _zoomy_temp = document.getElementById("TakeImage_CamZoomOffsetY_value1").value;
  2441. var _zooms_temp = document.getElementById("TakeImage_CamZoomSize_value1").value;
  2442. // bei einmal Alles senden kommt es zu problemen!!!!!!!!!!!!!!!!!!!!
  2443. var url_1 = domainname + "/editflow?task=cam_settings";
  2444. url_1 = url_1 + "&waitb=" + _waitb_temp + "&aecgc=" + _aecgc_temp + "&qual=" + _qual_temp;
  2445. url_1 = url_1 + "&bri=" + _bri_temp + "&con=" + _con_temp + "&sat=" + _sat_temp + "&shp=" + _shp_temp + "&ashp=" + _ashp_temp;
  2446. url_1 = url_1 + "&spe=" + _spe_temp + "&wbm=" + _wbm_temp + "&awb=" + _awb_temp + "&awbg=" + _awbg_temp;
  2447. url_1 = url_1 + "&aec=" + _aec_temp + "&aec2=" + _aec2_temp + "&ael=" + _ael_temp + "&aecv=" + _aecv_temp;
  2448. var url_2 = domainname + "/editflow?task=cam_settings";
  2449. url_2 = url_2 + "&agc=" + _agc_temp + "&agcg=" + _agcg_temp + "&bpc=" + _bpc_temp + "&wpc=" + _wpc_temp;
  2450. url_2 = url_2 + "&rgma=" + _rgma_temp + "&lenc=" + _lenc_temp + "&mirror=" + _mirror_temp + "&flip=" + _flip_temp;
  2451. url_2 = url_2 + "&dcw=" + _dcw_temp + "&den=" + _denoise_temp + "&ledi=" + _ledi_temp;
  2452. if (_zoom_temp != '0') {
  2453. url_2 = url_2 + "&zoom=" + _zoom_temp + "&zooms=" + _zooms_temp;
  2454. url_2 = url_2 + "&zoomx=" + _zoomx_temp + "&zoomy=" + _zoomy_temp;
  2455. }
  2456. else {
  2457. url_2 = url_2 + "&zoom=0" + "&zooms=0" + "&zoomx=0" + "&zoomy=0";
  2458. }
  2459. if (domainname.length > 0){
  2460. url_1 = url_1 + "&host=" + domainname;
  2461. url_2 = url_2 + "&host=" + domainname;
  2462. }
  2463. var durchlaufe = 0;
  2464. function sleep(ms) {
  2465. return new Promise(resolve => setTimeout(resolve, ms));
  2466. }
  2467. async function task() {
  2468. while (true) {
  2469. var xhttp1 = new XMLHttpRequest();
  2470. var xhttp2 = new XMLHttpRequest();
  2471. if (durchlaufe > 10) {
  2472. document.getElementById("overlay").style.display = "none";
  2473. firework.launch('Save Cam Settings aborted, timeout!', 'success', 5000);
  2474. return;
  2475. }
  2476. try {
  2477. xhttp1.open("GET", url_1, false);
  2478. xhttp1.send();
  2479. xhttp2.open("GET", url_2, false);
  2480. xhttp2.send();
  2481. } catch (error){}
  2482. if ((xhttp1.responseText == "CamSettingsSet") && (xhttp2.responseText == "CamSettingsSet")) {
  2483. document.getElementById("overlay").style.display = "none";
  2484. return;
  2485. }
  2486. else {
  2487. // Get status
  2488. var _xhttp = new XMLHttpRequest();
  2489. durchlaufe = durchlaufe + 1;
  2490. try {
  2491. _xhttp.open("GET", domainname + "/statusflow", false);
  2492. _xhttp.send();
  2493. }
  2494. catch (error){}
  2495. document.getElementById("overlaytext").innerHTML = "Device is busy, plase waiting...<br><br>Current step: " + _xhttp.responseText;
  2496. console.log("Device is busy, waiting 2s then checking again...");
  2497. await sleep(2000);
  2498. }
  2499. }
  2500. }
  2501. setTimeout(function() { // Delay so the overlay gets shown
  2502. task();
  2503. }, 1);
  2504. }
  2505. function doReboot() {
  2506. if (confirm("Are you sure you want to reboot?")) {
  2507. var stringota = getDomainname() + "/reboot";
  2508. window.location = stringota;
  2509. window.location.href = stringota;
  2510. window.location.assign(stringota);
  2511. window.location.replace(stringota);
  2512. }
  2513. }
  2514. function FormatDecimalValue(_param, _cat, _name) {
  2515. for (var j = 1; j <= _param[_cat][_name]["anzParam"]; ++j) {
  2516. var _val = _param[_cat][_name]["value"+j];
  2517. _val = _val.replace(",", ".");
  2518. _param[_cat][_name]["value"+j] = _val;
  2519. }
  2520. }
  2521. function editConfigRaw() {
  2522. if (confirm("Proceed to switch to raw edit mode? Unsaved changes will get lost")) {
  2523. var stringota = getDomainname() + "/edit_config_raw.html?v=$COMMIT_HASH";
  2524. window.location = stringota;
  2525. window.location.href = stringota;
  2526. window.location.assign(stringota);
  2527. window.location.replace(stringota);
  2528. }
  2529. }
  2530. function numberChanged() {
  2531. var sel = document.getElementById("Numbers_value1");
  2532. _neu = sel.selectedIndex;
  2533. UpdateInputIndividual(sel);
  2534. var _selInflux = document.getElementById("NumbersInfluxDBv2_value1");
  2535. if (_selInflux.selectedIndex != _neu) {
  2536. _selInflux.selectedIndex = _neu
  2537. }
  2538. }
  2539. function numberInfluxDBv2Changed() {
  2540. var sel = document.getElementById("NumbersInfluxDBv2_value1");
  2541. _neu = sel.selectedIndex;
  2542. UpdateInputIndividual(sel);
  2543. var _sel2 = document.getElementById("Numbers_value1");
  2544. if (_sel2.selectedIndex != _neu) {
  2545. _sel2.selectedIndex = _neu
  2546. }
  2547. var _sel3 = document.getElementById("NumbersInfluxDB_value1");
  2548. if (_sel3.selectedIndex != _neu) {
  2549. _sel3.selectedIndex = _neu
  2550. }
  2551. }
  2552. function numberInfluxDBChanged() {
  2553. var sel = document.getElementById("NumbersInfluxDB_value1");
  2554. _neu = sel.selectedIndex;
  2555. UpdateInputIndividual(sel);
  2556. var _sel2 = document.getElementById("Numbers_value1");
  2557. if (_sel2.selectedIndex != _neu) {
  2558. _sel2.selectedIndex = _neu
  2559. }
  2560. var _sel3 = document.getElementById("NumbersInfluxDBv2_value1");
  2561. if (_sel3.selectedIndex != _neu) {
  2562. _sel3.selectedIndex = _neu
  2563. }
  2564. }
  2565. function getParameterByName(name, url = window.location.href) {
  2566. name = name.replace(/[\[\]]/g, '\\$&');
  2567. var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
  2568. results = regex.exec(url);
  2569. if (!results) {return null;}
  2570. if (!results[2]) {return '';}
  2571. return decodeURIComponent(results[2].replace(/\+/g, ' '));
  2572. }
  2573. function InvertEnableItem(_cat, _param) {
  2574. _zw = _cat + "_" + _param + "_enabled";
  2575. _isOn = document.getElementById(_zw).checked;
  2576. _color = "rgb(122, 122, 122)";
  2577. if (_isOn) {
  2578. _color = "black";
  2579. }
  2580. _zw = _cat + "_" + _param + "_text";
  2581. document.getElementById(_zw).disabled = !_isOn;
  2582. document.getElementById(_zw).style.color = _color;
  2583. setEnabled(_cat + "_" + _param, _isOn);
  2584. for (var j = 1; j <= param[_cat][_param]["anzParam"]; ++j) {
  2585. document.getElementById(_cat+"_"+_param+"_value"+j).disabled = !_isOn;
  2586. document.getElementById(_cat+"_"+_param+"_value"+j).style.color = _color;
  2587. }
  2588. }
  2589. function setEnabled(className, enabled) {
  2590. _color = "rgb(122, 122, 122)";
  2591. if (enabled) {
  2592. _color = "black";
  2593. }
  2594. let elements = document.getElementsByClassName(className);
  2595. for (i = 0; i < elements.length; i++) {
  2596. if (enabled) {
  2597. elements[i].classList.remove("disabled");
  2598. }
  2599. else {
  2600. elements[i].classList.add("disabled");
  2601. }
  2602. let inputs = elements[i].getElementsByTagName("input");
  2603. for (j = 0; j < inputs.length; j++) {
  2604. if (inputs[j].id.endsWith("_enabled")) {
  2605. continue;
  2606. }
  2607. inputs[j].style.color = _color;
  2608. if (enabled) {
  2609. inputs[j].removeAttribute("disabled");
  2610. }
  2611. else {
  2612. inputs[j].setAttribute("disabled", "disabled");
  2613. }
  2614. }
  2615. }
  2616. }
  2617. function setVisible(className, visible) {
  2618. let elements = document.getElementsByClassName(className);
  2619. for (i = 0; i < elements.length; i++) {
  2620. if (visible) {
  2621. elements[i].classList.remove("hidden");
  2622. }
  2623. else {
  2624. elements[i].classList.add("hidden");
  2625. }
  2626. }
  2627. }
  2628. function EnDisableItem(_status, _param, _category, _cat, _name, _optional, _number = -1) {
  2629. // _status = _category[_cat]["enabled"];
  2630. _color = "rgb(122, 122, 122)";
  2631. if (_status) {
  2632. _color = "black";
  2633. }
  2634. if (_optional) {
  2635. document.getElementById(_cat+"_"+_name+"_enabled").disabled = !_status;
  2636. document.getElementById(_cat+"_"+_name+"_enabled").style.color = _color;
  2637. }
  2638. if (_number == -1) {
  2639. if (!_param[_cat][_name]["enabled"]) {
  2640. _status = false;
  2641. _color = "rgb(122, 122, 122)";
  2642. }
  2643. }
  2644. else {
  2645. if (!NUMBERS[_number][_cat][_name]["enabled"]) {
  2646. _status = false;
  2647. _color = "rgb(122, 122, 122)";
  2648. }
  2649. }
  2650. document.getElementById(_cat+"_"+_name+"_text").disabled = !_status;
  2651. document.getElementById(_cat+"_"+_name+"_text").style.color = _color;
  2652. setEnabled(_cat+"_"+_name, _status);
  2653. for (var j = 1; j <= _param[_cat][_name]["anzParam"]; ++j) {
  2654. document.getElementById(_cat+"_"+_name+"_value"+j).disabled = !_status;
  2655. document.getElementById(_cat+"_"+_name+"_value"+j).style.color = _color;
  2656. }
  2657. }
  2658. function ReadParameter(_param, _cat, _name, _optional, _number = -1) {
  2659. if (_number > -1) {
  2660. if (_cat == "Digits") {
  2661. _cat = "digit";
  2662. }
  2663. if (_cat == "Analog") {
  2664. _cat = "analog";
  2665. }
  2666. if ((NUMBERS[_number] == undefined) || (NUMBERS[_number][_cat] == undefined) || (NUMBERS[_number][_cat][_name] == undefined)) {
  2667. return;
  2668. }
  2669. if (_optional) {
  2670. NUMBERS[_number][_cat][_name]["enabled"] = document.getElementById(_cat+"_"+_name+"_enabled").checked;
  2671. }
  2672. for (var j = 1; j <= _param[_cat][_name]["anzParam"]; ++j) {
  2673. let element = document.getElementById(_cat+"_"+_name+"_value"+j);
  2674. if (element.tagName.toLowerCase() == "select") {
  2675. NUMBERS[_number][_cat][_name]["value"+j] = element.selectedIndex > -1 ? element.options[element.selectedIndex].value : "";
  2676. }
  2677. else if ((element.getAttribute("type") != null) && (element.getAttribute("type").toLowerCase() == "checkbox")) {
  2678. NUMBERS[_number][_cat][_name]["value"+j] = element.checked;
  2679. }
  2680. else {
  2681. if ((NUMBERS[_number][_cat][_name].checkRegExList != null) && (NUMBERS[_number][_cat][_name].checkRegExList[j-1] != null)) {
  2682. if (!element.value.match(NUMBERS[_cat][_name].checkRegExList[j-1])) {
  2683. element.classList.add("invalid-input");
  2684. }
  2685. else {
  2686. element.classList.remove("invalid-input");
  2687. }
  2688. }
  2689. NUMBERS[_number][_cat][_name]["value"+j] = element.value;
  2690. }
  2691. }
  2692. }
  2693. else
  2694. {
  2695. if (_optional) {
  2696. _param[_cat][_name]["enabled"] = document.getElementById(_cat+"_"+_name+"_enabled").checked;
  2697. }
  2698. for (var j = 1; j <= _param[_cat][_name]["anzParam"]; ++j) {
  2699. let element = document.getElementById(_cat+"_"+_name+"_value"+j);
  2700. if (element.tagName.toLowerCase() == "select") {
  2701. _param[_cat][_name]["value"+j] = element.selectedIndex > -1 ? element.options[element.selectedIndex].value : "";
  2702. }
  2703. else if ((element.getAttribute("type") != null) && (element.getAttribute("type").toLowerCase() == "checkbox")) {
  2704. _param[_cat][_name]["value"+j] = element.checked;
  2705. }
  2706. else {
  2707. if ((_param[_cat][_name].checkRegExList != null) && (_param[_cat][_name].checkRegExList[j-1] != null)) {
  2708. if (!element.value.match(_param[_cat][_name].checkRegExList[j-1])) {
  2709. element.classList.add("invalid-input");
  2710. }
  2711. else {
  2712. element.classList.remove("invalid-input");
  2713. }
  2714. }
  2715. _param[_cat][_name]["value"+j] = element.value;
  2716. }
  2717. }
  2718. }
  2719. }
  2720. function WriteParameter(_param, _category, _cat, _name, _optional, _number = -1) {
  2721. let anzpara;
  2722. try {
  2723. anzpara = _param[_cat][_name].anzParam;
  2724. }
  2725. catch (error) {
  2726. firework.launch("Parameter '" + _name + "' in category '" + _cat + "' is unknown!", 'danger', 30000);
  2727. return;
  2728. }
  2729. if (_number > -1) {
  2730. if ((NUMBERS[_number] == undefined) || (NUMBERS[_number][_cat] == undefined) || (NUMBERS[_number][_cat][_name] == undefined)) {
  2731. return;
  2732. }
  2733. if (_optional) {
  2734. document.getElementById(_cat+"_"+_name+"_enabled").checked = NUMBERS[_number][_cat][_name]["enabled"];
  2735. for (var j = 1; j <= anzpara; ++j) {
  2736. document.getElementById(_cat+"_"+_name+"_value"+j).disabled = !NUMBERS[_number][_cat][_name]["enabled"];
  2737. }
  2738. }
  2739. document.getElementById(_cat+"_"+_name+"_text").style.color = "black"
  2740. setEnabled(_cat+"_"+_name, true);
  2741. for (var j = 1; j <= anzpara; ++j) {
  2742. let element = document.getElementById(_cat+"_"+_name+"_value"+j);
  2743. if (element.tagName.toLowerCase() == "select") {
  2744. var textToFind = NUMBERS[_number][_cat][_name]["value"+j];
  2745. if (textToFind == undefined) {
  2746. continue;
  2747. }
  2748. _isFound = false;
  2749. element.selectedIndex = -1;
  2750. for (var i = 0; i < element.options.length; i++) {
  2751. if (element.options[i].value.toLowerCase() === textToFind.toLowerCase()) {
  2752. element.selectedIndex = i;
  2753. _isFound = true;
  2754. break;
  2755. }
  2756. }
  2757. if (!_isFound) {
  2758. _zw_txt = "In the selected field the value '" + textToFind + "' in the parameter '";
  2759. _zw_txt = _zw_txt + _cat + "' in the field '" + _name + "' is invalid. PLEASE CHECK BEFORE SAVING!";
  2760. firework.launch(_zw_txt, 'warning', 10000);
  2761. }
  2762. }
  2763. else if ((element.getAttribute("type") != null) && (element.getAttribute("type").toLowerCase() == "checkbox")) {
  2764. element.checked = NUMBERS[_number][_cat][_name]["value"+j] == "true";
  2765. }
  2766. else {
  2767. element.value = NUMBERS[_number][_cat][_name]["value"+j];
  2768. }
  2769. }
  2770. }
  2771. else {
  2772. if (_optional) {
  2773. document.getElementById(_cat+"_"+_name+"_enabled").checked = _param[_cat][_name]["enabled"];
  2774. for (var j = 1; j <= anzpara; ++j) {
  2775. document.getElementById(_cat+"_"+_name+"_value"+j).disabled = !_param[_cat][_name]["enabled"];
  2776. }
  2777. }
  2778. document.getElementById(_cat+"_"+_name+"_text").style.color = "black"
  2779. setEnabled(_cat+"_"+_name, true);
  2780. for (var j = 1; j <= anzpara; ++j) {
  2781. let element = document.getElementById(_cat+"_"+_name+"_value"+j);
  2782. if (element.tagName.toLowerCase() == "select") {
  2783. var textToFind = _param[_cat][_name]["value"+j];
  2784. if (textToFind == undefined) {
  2785. continue;
  2786. }
  2787. _isFound = false;
  2788. element.selectedIndex = -1;
  2789. for (var i = 0; i < element.options.length; i++) {
  2790. if (element.options[i].value.toLowerCase() === textToFind.toLowerCase()) {
  2791. element.selectedIndex = i;
  2792. _isFound = true;
  2793. break;
  2794. }
  2795. }
  2796. if (!_isFound) {
  2797. _zw_txt = "In the selected field the value '" + textToFind + "' in the section '";
  2798. _zw_txt = _zw_txt + _cat + "' in the field '" + _name + "' is invalid. PLEASE CHECK BEFORE SAVING!";
  2799. firework.launch(_zw_txt, 'warning', 10000);
  2800. }
  2801. }
  2802. else if ((element.getAttribute("type") != null) && (element.getAttribute("type").toLowerCase() == "checkbox")) {
  2803. element.checked = _param[_cat][_name]["value"+j] == "true";
  2804. }
  2805. else {
  2806. element.value = _param[_cat][_name]["value"+j];
  2807. }
  2808. }
  2809. }
  2810. ///////////////// am Ende, falls Kategorie als gesamtes nicht ausgewählt --> deaktivieren
  2811. if (_category[_cat]["enabled"] == false) {
  2812. if (_optional) {
  2813. document.getElementById(_cat+"_"+_name+"_enabled").disabled = true;
  2814. for (var j = 1; j <= anzpara; ++j) {
  2815. document.getElementById(_cat+"_"+_name+"_value"+j).disabled = true;
  2816. }
  2817. }
  2818. document.getElementById(_cat+"_"+_name+"_text").style="color: gray;"
  2819. setEnabled(_cat+"_"+_name, false);
  2820. }
  2821. EnDisableItem(_category[_cat]["enabled"], _param, _category, _cat, _name, _optional, _number);
  2822. }
  2823. /* hash #description open the details part of the page */
  2824. function openDescription() {
  2825. if(window.location.hash) {
  2826. var hash = window.location.hash.substring(1); //Puts hash in variable, and removes the # character
  2827. if(hash == 'description') {
  2828. document.getElementById("desc_details").open = true;
  2829. document.getElementById("reboot").style.display = "none";
  2830. document.getElementById("reboot_text").style.display = "none";
  2831. }
  2832. }
  2833. }
  2834. openDescription();
  2835. LoadConfigNeu();
  2836. </script>
  2837. </body>
  2838. </html>