updated battery tester documentation
[physical.git] / index.html
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <title>Physical projects</title>
5 <!-- 2020-05-24 P 23:49 -->
6 <meta charset="utf-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 <meta name="generator" content="Org-mode">
9 <meta name="author" content="Svjatoslav Agejenko">
10 <link href="https://bootswatch.com/3/darkly/bootstrap.min.css" rel="stylesheet">
11 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
12 <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>
13 <style type="text/css">
14 footer {background-color: #111 !important;}
15 pre {background-color: #111; color: #ccc;}
16 </style>
17 <style type="text/css">
18 /* org mode styles on top of twbs */
19
20 html {
21     position: relative;
22     min-height: 100%;
23 }
24
25 body {
26     font-size: 18px;
27     margin-bottom: 105px;
28 }
29
30 footer {
31     position: absolute;
32     bottom: 0;
33     width: 100%;
34     height: 101px;
35     background-color: #f5f5f5;
36 }
37
38 footer > div {
39     padding: 10px;
40 }
41
42 footer p {
43     margin: 0 0 5px;
44     text-align: center;
45     font-size: 16px;
46 }
47
48 #table-of-contents {
49     margin-top: 20px;
50     margin-bottom: 20px;
51 }
52
53 blockquote p {
54     font-size: 18px;
55 }
56
57 pre {
58     font-size: 16px;
59 }
60
61 .footpara {
62     display: inline-block;
63 }
64
65 figcaption {
66   font-size: 16px;
67   color: #666;
68   font-style: italic;
69   padding-bottom: 15px;
70 }
71
72 /* from twbs docs */
73
74 .bs-docs-sidebar.affix {
75     position: static;
76 }
77 @media (min-width: 768px) {
78     .bs-docs-sidebar {
79         padding-left: 20px;
80     }
81 }
82
83 /* All levels of nav */
84 .bs-docs-sidebar .nav > li > a {
85     display: block;
86     padding: 4px 20px;
87     font-size: 14px;
88     font-weight: 500;
89     color: #999;
90 }
91 .bs-docs-sidebar .nav > li > a:hover,
92 .bs-docs-sidebar .nav > li > a:focus {
93     padding-left: 19px;
94     color: #A1283B;
95     text-decoration: none;
96     background-color: transparent;
97     border-left: 1px solid #A1283B;
98 }
99 .bs-docs-sidebar .nav > .active > a,
100 .bs-docs-sidebar .nav > .active:hover > a,
101 .bs-docs-sidebar .nav > .active:focus > a {
102     padding-left: 18px;
103     font-weight: bold;
104     color: #A1283B;
105     background-color: transparent;
106     border-left: 2px solid #A1283B;
107 }
108
109 /* Nav: second level (shown on .active) */
110 .bs-docs-sidebar .nav .nav {
111     display: none; /* Hide by default, but at >768px, show it */
112     padding-bottom: 10px;
113 }
114 .bs-docs-sidebar .nav .nav > li > a {
115     padding-top: 1px;
116     padding-bottom: 1px;
117     padding-left: 30px;
118     font-size: 12px;
119     font-weight: normal;
120 }
121 .bs-docs-sidebar .nav .nav > li > a:hover,
122 .bs-docs-sidebar .nav .nav > li > a:focus {
123     padding-left: 29px;
124 }
125 .bs-docs-sidebar .nav .nav > .active > a,
126 .bs-docs-sidebar .nav .nav > .active:hover > a,
127 .bs-docs-sidebar .nav .nav > .active:focus > a {
128     padding-left: 28px;
129     font-weight: 500;
130 }
131
132 /* Nav: third level (shown on .active) */
133 .bs-docs-sidebar .nav .nav .nav {
134     padding-bottom: 10px;
135 }
136 .bs-docs-sidebar .nav .nav .nav > li > a {
137     padding-top: 1px;
138     padding-bottom: 1px;
139     padding-left: 40px;
140     font-size: 12px;
141     font-weight: normal;
142 }
143 .bs-docs-sidebar .nav .nav .nav > li > a:hover,
144 .bs-docs-sidebar .nav .nav .nav > li > a:focus {
145     padding-left: 39px;
146 }
147 .bs-docs-sidebar .nav .nav .nav > .active > a,
148 .bs-docs-sidebar .nav .nav .nav > .active:hover > a,
149 .bs-docs-sidebar .nav .nav .nav > .active:focus > a {
150     padding-left: 38px;
151     font-weight: 500;
152 }
153
154 /* Show and affix the side nav when space allows it */
155 @media (min-width: 992px) {
156     .bs-docs-sidebar .nav > .active > ul {
157         display: block;
158     }
159     /* Widen the fixed sidebar */
160     .bs-docs-sidebar.affix,
161     .bs-docs-sidebar.affix-bottom {
162         width: 213px;
163     }
164     .bs-docs-sidebar.affix {
165         position: fixed; /* Undo the static from mobile first approach */
166         top: 20px;
167     }
168     .bs-docs-sidebar.affix-bottom {
169         position: absolute; /* Undo the static from mobile first approach */
170     }
171     .bs-docs-sidebar.affix .bs-docs-sidenav,.bs-docs-sidebar.affix-bottom .bs-docs-sidenav {
172         margin-top: 0;
173         margin-bottom: 0
174     }
175 }
176 @media (min-width: 1200px) {
177     /* Widen the fixed sidebar again */
178     .bs-docs-sidebar.affix-bottom,
179     .bs-docs-sidebar.affix {
180         width: 263px;
181     }
182 }
183 </style>
184 <script type="text/javascript">
185 $(function() {
186     'use strict';
187
188     $('.bs-docs-sidebar li').first().addClass('active');
189
190     $(document.body).scrollspy({target: '.bs-docs-sidebar'});
191
192     $('.bs-docs-sidebar').affix();
193 });
194 </script>
195 </head>
196 <body>
197 <div id="content" class="container">
198 <div class="row"><div class="col-md-9"><h1 class="title">Physical projects</h1>
199
200 <div id="outline-container-sec-1" class="outline-2">
201 <h2 id="sec-1"><span class="section-number-2">1</span> General</h2>
202 <div class="outline-text-2" id="text-1">
203 <p>
204 Collection of physical projects. Electronics, 3D designs etc..
205 </p>
206
207 <ul class="org-ul">
208 <li>DISCLAIMER: I DO ELECTRONICS AND 3D DESIGN SOLELY AS A HOBBY. THERE
209 COULD BE ERRORS THAT CAN RESULT IN ALL KINDS OF DAMAGE. USE THESE
210 DESIGNS AT YOUR OWN RISK.
211 </li>
212
213 <li>Designs in this repository are released under Creative Commons Zero
214 (CC0) license.
215 </li>
216
217 <li>Author:
218 <ul class="org-ul">
219 <li>Svjatoslav Agejenko
220 </li>
221 <li>Homepage: <a href="https://svjatoslav.eu">https://svjatoslav.eu</a>
222 </li>
223 <li>Email: <a href="mailto://svjatoslav@svjatoslav.eu">svjatoslav@svjatoslav.eu</a>
224 </li>
225 </ul>
226 </li>
227
228 <li><a href="https://www.svjatoslav.eu/projects/">Other projects hosted at svjatoslav.eu</a>
229 </li>
230 </ul>
231 </div>
232
233 <div id="outline-container-sec-1-1" class="outline-3">
234 <h3 id="sec-1-1"><span class="section-number-3">1.1</span> repository</h3>
235 <div class="outline-text-3" id="text-1-1">
236 <ul class="org-ul">
237 <li><a href="https://www2.svjatoslav.eu/gitweb/?p=physical.git;a=snapshot;h=HEAD;sf=tgz">Download latest snapshot in TAR GZ format</a>
238 </li>
239
240 <li><a href="https://www2.svjatoslav.eu/gitweb/?p=physical.git;a=summary">Browse Git repository online</a>
241 </li>
242
243 <li>Clone Git repository using command:
244 <pre class="example">
245 git clone https://www2.svjatoslav.eu/git/physical.git
246
247 </pre>
248 </li>
249 </ul>
250 </div>
251 </div>
252 </div>
253
254 <div id="outline-container-sec-2" class="outline-2">
255 <h2 id="sec-2"><span class="section-number-2">2</span> Projects</h2>
256 <div class="outline-text-2" id="text-2">
257 </div><div id="outline-container-sec-2-1" class="outline-3">
258 <h3 id="sec-2-1"><span class="section-number-3">2.1</span> Audio</h3>
259 <div class="outline-text-3" id="text-2-1">
260 <ul class="org-ul">
261 <li>Portable stereo speaker
262 <br/><a href="audio/Portable%20stereo%20active%20speaker/index.html"><img style="width:100%; max-width:500px;" src=" audio/Portable%20stereo%20active%20speaker/make.png"></a>
263 </li>
264
265 <li>Headphone hub
266 <br/><a href="audio/Headphone%20hub/index.html"><img style="width:100%; max-width:500px;" src=" audio/Headphone%20hub/make.png"></a>
267 </li>
268 </ul>
269 </div>
270 </div>
271
272 <div id="outline-container-sec-2-2" class="outline-3">
273 <h3 id="sec-2-2"><a id="ID-0482740b-0f2e-4138-804d-37c7025124d3" name="ID-0482740b-0f2e-4138-804d-37c7025124d3"></a><span class="section-number-3">2.2</span> Miscellaneous</h3>
274 <div class="outline-text-3" id="text-2-2">
275 <ul class="org-ul">
276 <li>Charging terminal alternative cover for CAT B30 phone
277 <br/><a href="misc/CAT%20B30%20phone%20cover/index.html"><img style="width:100%; max-width:500px;" src=" file:misc/CAT%20B30%20phone%20cover/make.png"></a>
278 </li>
279 </ul>
280
281
282 <ul class="org-ul">
283 <li>Nokia 105 (2019) modification for disabled
284 <br/><a href="misc/Nokia%20105%20(2019)%20modification%20for%20disabled/index.html"><img style="width:100%; max-width:500px;" src="
285         misc/Nokia%20105%20(2019)%20modification%20for%20disabled/make.png
286         "></a>
287 </li>
288 </ul>
289 </div>
290 </div>
291
292 <div id="outline-container-sec-2-3" class="outline-3">
293 <h3 id="sec-2-3"><span class="section-number-3">2.3</span> Power</h3>
294 <div class="outline-text-3" id="text-2-3">
295 <ul class="org-ul">
296 <li>12V Lead-Acid battery charger and terminal
297 <br/><a href="power/12V%20Lead-Acid%20battery%20changer%20and%20terminal/index.html"><img style="width:100%; max-width:500px;" src="
298         power/12V%20Lead-Acid%20battery%20changer%20and%20terminal/make.png
299         "></a>
300 </li>
301
302 <li>battery tester
303 <br/><a href="power/battery%20tester/index.html"><img style="width:100%; max-width:500px;" src="
304         power/battery%20tester/make.png
305         "></a>
306 </li>
307 </ul>
308 </div>
309 </div>
310
311 <div id="outline-container-sec-2-4" class="outline-3">
312 <h3 id="sec-2-4"><span class="section-number-3">2.4</span> USB</h3>
313 <div class="outline-text-3" id="text-2-4">
314 <ul class="org-ul">
315 <li>USB cable terminals
316 <br/><a href="USB/USB%20cable%20terminals/index.html"><img style="width:100%; max-width:500px;" src="
317         USB/USB%20cable%20terminals/schematic.png
318         "></a>
319 </li>
320 </ul>
321 </div>
322 </div>
323
324 <div id="outline-container-sec-2-5" class="outline-3">
325 <h3 id="sec-2-5"><a id="ID-0ff5c7f6-e08d-4cdf-923f-3aa75d050b1c" name="ID-0ff5c7f6-e08d-4cdf-923f-3aa75d050b1c"></a><span class="section-number-3">2.5</span> Optics</h3>
326 <div class="outline-text-3" id="text-2-5">
327 <ul class="org-ul">
328 <li>35mm film copying device
329 <br/><a href="optics/35mm%20film%20copying%20device/index.html"><img style="width:100%; max-width:500px;" src="
330         optics/35mm%20film%20copying%20device/make.png
331         "></a>
332 </li>
333
334 <li>Fujifilm camera battery (Newell NP-W126) box
335 <br/><a href="optics/Fujifilm%20camera%20battery%20box/index.html"><img style="width:100%; max-width:500px;" src="
336         optics/Fujifilm%20camera%20battery%20box/make.png
337         "></a>
338 </li>
339
340 <li>Fujifilm X-mount to microscope adapter
341 <br/><a href="optics/Fujifilm%20X-mount%20microscope%20adapter/index.html"><img style="width:100%; max-width:500px;" src="
342         optics/Fujifilm%20X-mount%20microscope%20adapter/make.png
343         "></a>
344 </li>
345
346 <li>Case for 52mm macro filter
347 <br/><a href="optics/macro%20filter%20storage%20compartment/index.html"><img style="width:100%; max-width:500px;" src="
348         optics/macro%20filter%20storage%20compartment/make.png
349         "></a>
350 </li>
351
352 <li>Case for microscope slides and cover slips
353 <br/><a href="optics/microscope%20slide%20box/index.html"><img style="width:100%; max-width:500px;" src="
354         optics/microscope%20slide%20box/make.png
355         "></a>
356 </li>
357 </ul>
358 </div>
359 </div>
360
361 <div id="outline-container-sec-2-6" class="outline-3">
362 <h3 id="sec-2-6"><span class="section-number-3">2.6</span> Organizers / boxes / covers</h3>
363 <div class="outline-text-3" id="text-2-6">
364 <ul class="org-ul">
365 <li>Cable organizer
366 <br/><a href="organizers/cable%20organizer/index.html"><img style="width:100%; max-width:500px;" src="
367         organizers/cable%20organizer/make.png
368         "></a>
369 </li>
370
371 <li>Digital caliphers battery mod and storage box
372 <br/><a href="organizers/digital%20calipers%20mod%20and%20box/index.html"><img style="width:100%; max-width:500px;" src="
373         organizers/digital%20calipers%20mod%20and%20box/make.png
374         "></a>
375 </li>
376
377 <li>Wire rolls
378 <br/><a href="organizers/roll/index.html"><img style="width:100%; max-width:500px;" src="
379         organizers/roll/make.png
380         "></a>
381 </li>
382
383 <li>Wall shelf
384 <br/><a href="organizers/shelf/index.html"><img style="width:100%; max-width:500px;" src="
385         organizers/shelf/make.png
386         "></a>
387 </li>
388
389 <li>Book stand
390 <br/><a href="organizers/book%20stand/index.html"><img style="width:100%; max-width:500px;" src="
391         organizers/book%20stand/make.png
392         "></a>
393 </li>
394 </ul>
395 </div>
396 </div>
397
398 <div id="outline-container-sec-2-7" class="outline-3">
399 <h3 id="sec-2-7"><span class="section-number-3">2.7</span> Radio</h3>
400 <div class="outline-text-3" id="text-2-7">
401 <ul class="org-ul">
402 <li>NanoVNA case
403 <br/><a href="RF/NanoVNA%20case/index.html"><img style="width:100%; max-width:500px;" src="
404         RF/NanoVNA%20case/make.png
405         "></a>
406 </li>
407
408 <li>DIY Yagi antenna connector
409 <br/><a href="RF/Yagi%20antenna%20connector/index.html"><img style="width:100%; max-width:500px;" src="
410         RF/Yagi%20antenna%20connector/make.png
411         "></a>
412 </li>
413 </ul>
414 </div>
415 </div>
416 </div>
417 </div><div class="col-md-3"><nav id="table-of-contents">
418 <div id="text-table-of-contents" class="bs-docs-sidebar">
419 <ul class="nav">
420 <li><a href="#sec-1">1. General</a>
421 <ul class="nav">
422 <li><a href="#sec-1-1">1.1. repository</a></li>
423 </ul>
424 </li>
425 <li><a href="#sec-2">2. Projects</a>
426 <ul class="nav">
427 <li><a href="#sec-2-1">2.1. Audio</a></li>
428 <li><a href="#sec-2-2">2.2. Miscellaneous</a></li>
429 <li><a href="#sec-2-3">2.3. Power</a></li>
430 <li><a href="#sec-2-4">2.4. USB</a></li>
431 <li><a href="#sec-2-5">2.5. Optics</a></li>
432 <li><a href="#sec-2-6">2.6. Organizers / boxes / covers</a></li>
433 <li><a href="#sec-2-7">2.7. Radio</a></li>
434 </ul>
435 </li>
436 </ul>
437 </div>
438 </nav>
439 </div></div></div>
440 <footer id="postamble" class="">
441 <div><p class="author">Author: Svjatoslav Agejenko</p>
442 <p class="date">Created: 2020-05-24 P 23:49</p>
443 <p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 26.1 (<a href="http://orgmode.org">Org-mode</a> 9.1.9)</p>
444 </div>
445 </footer>
446 </body>
447 </html>