codesnippets.html
1 <!DOCTYPE html> 2 <html lang="de"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <meta http-equiv="onion-location" content="http://bopbopl6lohkl2rts3ltesjnag4hzs4jrx2h6k6etgq5xasbpqekzlqd.onion" /> 7 <title>BOP Wiki: Code-Snippets</title> 8 <link rel="stylesheet" href="/assets/stylesheet.css" /> 9 <link rel="icon" type="image/x-icon" href="/assets/img/favicon.png"> 10 </head> 11 <body> 12 <header> 13 <!-- --------------------------------------------------------------------------------------------------------------------------------- --> 14 <script src="/assets/js/navbar-OpenClose.js"></script> 15 <script src="/assets/js/lightbox.js"></script> 16 <script src="/assets/js/copyCodeButton.js"></script> 17 <link rel="stylesheet" href="/resources/js-libraries/highlightJS/atom-one-dark.min.css"> 18 <script src="/resources/js-libraries/highlightJS/highlight.min.js"></script> 19 <script src="/resources/js-libraries/highlightJS/highlightjs-line-numbers.min.js"></script> 20 <script>hljs.highlightAll();</script> 21 <script>hljs.initLineNumbersOnLoad();</script> 22 <!-- --------------------------------------------------------------------------------------------------------------------------------- --> 23 <div class="branding"> 24 <button class="toggle-btn-navbar" id="navbarOpenButton">☰</button> 25 <a href="/"> 26 <img class="logo" src="/assets/img/logo.png"> 27 </a> 28 <div class="typing-animation">BytesOfProgress</div> 29 </div> 30 </header> 31 <div id="navbarContainer" class="navbar-container"> 32 <iframe class="navbar-iframe" src="/assets/navbar/navbar.html" frameBorder= "0"></iframe> 33 </div> 34 <main> 35 <article class="blog-post"> 36 <header class="post-header"> 37 <h1 class="post-title">Code-Snippets</h1> 38 </header> 39 </article> 40 <nav class="breadcrumb"> 41 <a href="/">Home</a> 42 <span class="divider">›</span> 43 <a href="/wiki/">Wiki</a> 44 <span class="divider">›</span> 45 <a href="/wiki/microcontroller/A1-microcontroller.html">Microcontroller</a> 46 <span class="divider">›</span> 47 <span class="current">Code-Snippets</span> 48 49 50 51 52 53 </nav> 54 55 <section class="post-content"> 56 <table> 57 <thead> 58 <tr> 59 <th>Title</th> 60 <th>Description & Link</th> 61 </tr> 62 </thead> 63 <tbody> 64 65 <tr> 66 <td>ESP32 WiFi Connection</td> 67 <td>Code snippet for a quick ESP32 WiFi Connection.<br> 68 <a href="esp32-wifi-snippet.html">Read more</a></td> 69 </tr> 70 71 <tr> 72 <td>ESP32 DHT11 Temperature Sensor</td> 73 <td>Listens to a DHT11-Sensor attached to the ESP32. It outputs the 74 current temperature to the Serial Monitor.<br> 75 <a href="esp32-dht-11-snippet.html">Read more</a></td> 76 </tr> 77 78 <tr> 79 <td>ESP32 I2C LCD Display (16x2 / 20x4)</td> 80 <td>Using a 16x2 or 20x4 I2C LCD Display with the ESP32.<br> 81 <a href="esp32-i2c-lcd.html">Read more</a></td> 82 </tr> 83 84 85 86 87 88 89 90 91 92 93 </table> 94 95 </section> 96 <footer class="post-footer"> 97 <a href="/wiki/microcontroller/A1-microcontroller.html" class="cta-button">← Back</a> 98 </footer> 99 </main> 100 </body> 101 </html>