TTGO T-CameraをESP-IDF & Eclipseで動かす(その3)
では”camera_index.h”をデコードしていきます。
“camera_index.h”はテキスト文なのでこれをいったんバイナリーファイルにします。
テキスト文からバイナリーファイルへの変換はPythonを使うのがいいかと思います。
ネットで検索・参照して以下のコードを作ってみました。
1 2 3 4 5 6 7 8 9 10 11 |
# str2bin.py # Python 2.7.12 import re with open('camera_index_data.h', 'r') as fin: s = fin.read() s = re.sub(r'[\r\n\t ]|0x', '', s) ls = s.split(',') bins = [int(a,16) for a in ls] with open('camera_index.gz', 'wb') as fout: fout.write(bytearray(bins)) |
“camera_index.h”の内、”index_html_gz[]…”といった部分は削除して0x1f,0x8b,…といったデータ部分だけを取り出した”camera_index_data.h”を作りPythonプログラムを走らせてcamera_index.gzを生成します。
このcamera_index.gzを解凍した結果が以下のhtmlファイルになります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>TTGO Camera</title> <style> body{font-family:Arial,Helvetica,sans-serif;background:#181818;color:#EFEFEF;font-size:16px}h2{font-size:18px}section.main{display:flex}#menu,section.main{flex-direction:column}#menu{display:none;flex-wrap:nowrap;min-width:340px;background:#363636;padding:8px;border-radius:4px;margin-top:-10px;margin-right:10px}#content{display:flex;flex-wrap:wrap;align-items:stretch}figure{padding:0;margin:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-start:0;margin-inline-start:0;-webkit-margin-end:0;margin-inline-end:0}figure img{display:block;width:100%;height:auto;border-radius:4px;margin-top:8px}@media (min-width: 800px) and (orientation:landscape){#content{display:flex;flex-wrap:nowrap;align-items:stretch}figure img{display:block;max-width:100%;max-height:calc(100vh - 40px);width:auto;height:auto}figure{padding:0;margin:0;-webkit-margin-before:0;margin-block-start:0;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-start:0;margin-inline-start:0;-webkit-margin-end:0;margin-inline-end:0}}section#buttons{display:flex;flex-wrap:nowrap;justify-content:space-between}#nav-toggle{cursor:pointer;display:block}#nav-toggle-cb{outline:0;opacity:0;width:0;height:0}#nav-toggle-cb:checked+#menu{display:flex}.input-group{display:flex;flex-wrap:nowrap;line-height:22px;margin:5px 0}.input-group>label{display:inline-block;padding-right:10px;min-width:47%}.input-group input,.input-group select{flex-grow:1}.range-max,.range-min{display:inline-block;padding:0 5px}button{display:block;margin:5px;padding:0 12px;border:0;line-height:28px;cursor:pointer;color:#fff;background:#ff3034;border-radius:5px;font-size:16px;outline:0}button:hover{background:#ff494d}button:active{background:#f21c21}button.disabled{cursor:default;background:#a0a0a0}input[type=range]{-webkit-appearance:none;width:100%;height:22px;background:#363636;cursor:pointer;margin:0}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-runnable-track{width:100%;height:2px;cursor:pointer;background:#EFEFEF;border-radius:0;border:0 solid #EFEFEF}input[type=range]::-webkit-slider-thumb{border:1px solid rgba(0,0,30,0);height:22px;width:22px;border-radius:50px;background:#ff3034;cursor:pointer;-webkit-appearance:none;margin-top:-11.5px}input[type=range]:focus::-webkit-slider-runnable-track{background:#EFEFEF}input[type=range]::-moz-range-track{width:100%;height:2px;cursor:pointer;background:#EFEFEF;border-radius:0;border:0 solid #EFEFEF}input[type=range]::-moz-range-thumb{border:1px solid rgba(0,0,30,0);height:22px;width:22px;border-radius:50px;background:#ff3034;cursor:pointer}input[type=range]::-ms-track{width:100%;height:2px;cursor:pointer;background:0 0;border-color:transparent;color:transparent}input[type=range]::-ms-fill-lower{background:#EFEFEF;border:0 solid #EFEFEF;border-radius:0}input[type=range]::-ms-fill-upper{background:#EFEFEF;border:0 solid #EFEFEF;border-radius:0}input[type=range]::-ms-thumb{border:1px solid rgba(0,0,30,0);height:22px;width:22px;border-radius:50px;background:#ff3034;cursor:pointer;height:2px}input[type=range]:focus::-ms-fill-lower{background:#EFEFEF}input[type=range]:focus::-ms-fill-upper{background:#363636}.switch{display:block;position:relative;line-height:22px;font-size:16px;height:22px}.switch input{outline:0;opacity:0;width:0;height:0}.slider{width:50px;height:22px;border-radius:22px;cursor:pointer;background-color:grey}.slider,.slider:before{display:inline-block;transition:.4s}.slider:before{position:relative;content:"";border-radius:50%;height:16px;width:16px;left:4px;top:3px;background-color:#fff}input:checked+.slider{background-color:#ff3034}input:checked+.slider:before{-webkit-transform:translateX(26px);transform:translateX(26px)}select{border:1px solid #363636;font-size:14px;height:22px;outline:0;border-radius:5px}.image-container{position:relative;min-width:160px}.close{position:absolute;right:5px;top:5px;background:#ff3034;width:16px;height:16px;border-radius:100px;color:#fff;text-align:center;line-height:18px;cursor:pointer}.hidden{display:none} </style> </head> <body> <section class="main"> <div id="logo"> <label for="nav-toggle-cb" id="nav-toggle">☰ Toggle settings</label> </div> <div id="content"> <div id="sidebar"> <input type="checkbox" id="nav-toggle-cb" checked="checked"> <nav id="menu"> <div class="input-group" id="framesize-group"> <label for="framesize">Resolution</label> <select id="framesize" class="default-action"> <option value="10">UXGA(1600x1200)</option> <option value="9">SXGA(1280x1024)</option> <option value="8">XGA(1024x768)</option> <option value="7">SVGA(800x600)</option> <option value="6">VGA(640x480)</option> <option value="5" selected="selected">CIF(400x296)</option> <option value="4">QVGA(320x240)</option> <option value="3">HQVGA(240x176)</option> |
どうせ人間が見るものでないということなのか最初の方のCSSや終わりの方のjavascriptは1行で書かれています。
CSSは適度に改行など入れれば概ねわかりますが、問題はjavascriptの方です。
人間に見せるつもりがないのか関数名がCとかDとかですし、改行、インデントを入れても括弧が省略されているのか括弧の数が合いませんし、let? fetch? 見慣れない単語が並んでいます。
どうやらモダンjavascriptと称されるECMAScript2015以降にいろいろな仕様追加が行われたようです。いずれにしろどこがどこにかかっているかよくわかりません。
いろいろ調べてみると追加仕様に未対応のブラウザーでも対応できるようにコードを変換してくれるBabelというツールがあるのでこれを通すとだいぶ見やすくなりました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
"use strict"; document.addEventListener('DOMContentLoaded', function () { function b(B) { let C; switch (B.type) { case 'checkbox': C = B.checked ? 1 : 0; break; case 'range': case 'select-one': C = B.value; break; case 'button': case 'submit': C = '1'; break; |
仕様がまだよくわかっていないのでまだまだ理解ができていませんが何となくこんな事をやっているのかな、というのが見えてきました。