finish initial visor blog
confuseddbread confuseddbread@gmail.com
Sun, 11 Jan 2026 23:10:51 +0100
5 files changed,
77 insertions(+),
5 deletions(-)
M
blog/visor.html
→
blog/visor.html
@@ -11,26 +11,72 @@ <h1>Blog on this one's visor and modifications</h1>
<section id="about"> <h2><a href="#about" aria-hidden="true">#</a> About this page</h2> <p>This page documents the making and modification of this one's visor. It was created after the Visor was already built, so details and images up until that point may be missing. This one will however try to log future modifications in more detail.</p> + <p><b>WARNING:</b> this visor is very janky and held together by duct tape, hopes and dreams. This is NOT a guide for how to build a good visor, but a log documenting how this one build it's visor.</p> </section> <section id="materials"> <h2><a href="#materials" aria-hidden="true">#</a> Materials</h2> - <p>A short lists of the things used to make this visor with aproximate prices.</p> + <p>A short lists of the things used to make this visor with approximate prices.</p> <ul> <li> cheap 3M 6800 full-face mask knock-off, 30€ </li> <li> - 15% VLT car tinting foil, 21€ for a big roll - (one may also ask this one for a peice since it has a lot left over) + 15% VLT car tinting foil, 21€ for a big roll (one may also ask this one for a piece since it has a lot left over) </li> <li> - 2 WS2812B bendable LED-matrices with holes in them from AliExpress. - These ones are 200x50mm with 8x32 LEDs each and barely fit the Visor while bent. + 2 WS2812B bendable LED-matrices with holes in them from AliExpress for about 20eur each. These ones are 200x50mm with 8x32 LEDs each and barely fit the Visor while bent. </li> <li> an ESP32 for about 5€ </li> </ul> + Total cost: ~96€ + </section> + <section id="assembly"> + <h2><a href="#assembly" aria-hidden="true">#</a> Assembly</h2> + <section> + <div> + <p>First this one removed the rubber ring and straps to (somewhat badly) apply the car tinting foil. It has heard that other units had better success by first creating a paper template to cut out the perfect shape.</p> + <p>This one attached the ESP32 directly to its exhaust vent, below the snoot cap. This has 2 downsides:</p> + <ul> + <li>Corrosion: if your exhaust fumes contain things harmful to electronics (like for example water vapor) they WILL corrode over time</li> + <li>The default 3M 6800 style snoot does not fit an ESP of this size, so tape will be needed to "close" the snoot</li> + </ul> + <p>It also has 2 minor upsides:</p> + <ul> + <li>Corroding and being held together by duct tape is kinda gender</li> + <li>less work (this one is lazy)</li> + </ul> + <p>One will have to replace the duct tape and ESP over time (it is still on it's first ESP after a few months of visoring), because both do not appreciate the moisture.</p> + </div> + <div><img + src="/assets/blog/visor/1.webp" + alt=" + Visor with the rubber ring and straps removed sitting on a table. + The snoot has also been detatched revealing a microcontroller taped on the exhaust vent. + There is car tinting foil applied to the faceplate of the visor with some visible bubbles and folds. + "></div> + </section> + <section> + <div> + <p>One may not be surprised how the LED-matrices are held in place after reading the previous paragraph. It's only zip-ties and friction. They need to be readjusted every now and then but mostly stay put nicely like this. The matrices can be daisy chained so they will only have to be connected to the ESP with one wire each.</p> + </div> + <div><img + src="/assets/blog/visor/2.webp" + alt=" + The inside of the assembled visor, with 2 zip-tied together daisy-chained LED-matrices inside. They bent to fit the visor shape and loosely connected to the ESP through the back of the exhaust vent. + "></div> + </section> + <section> + <div> + <p>The ESP can be connected via USB-C through the hole in at the bottom of the snoot. This one also put a little NFC-sticker on its snoot, so it can sniff other peoples devices to share contact info.</p> + </div> + <div><img + src="/assets/blog/visor/3.webp" + alt=" + The inside of the assembled visor, with 2 zip-tied together daisy-chained LED-matrices inside. They bent to fit the visor shape and loosely connected to the ESP through the back of the exhaust vent. + "></div> + </section> </section> </body> </html>
M
style.css
→
style.css
@@ -81,3 +81,29 @@ image-rendering: pixelated;
image-rendering: -webkit-optimize-contrast; } } + +#assembly section { + display: flex; + flex-direction: row; + img { + max-width: 30dvw; + height: auto; + margin-left: 2rem; + } +} + +@media screen and (max-width: 1200px) { + #assembly section { + display: inline-block; + img { + max-width: 50dvw; + margin-left: 0; + } + } + div:has(img) { + width: 50dvw; + margin: auto; + } +} + +