diff --git a/en/latest/404.html b/en/latest/404.html index 6afbfd9377..c8e6795dfd 100644 --- a/en/latest/404.html +++ b/en/latest/404.html @@ -1,27 +1,34 @@ + + + + + + Page not found — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -283,18 +290,7 @@

Page not found

jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/_sources/scripting/launch_types.rst.txt b/en/latest/_sources/scripting/launch_types.rst.txt index f194949a6f..a2c01e074b 100644 --- a/en/latest/_sources/scripting/launch_types.rst.txt +++ b/en/latest/_sources/scripting/launch_types.rst.txt @@ -58,3 +58,20 @@ If there is no prefix specified, the ``post:`` will be used automatically. pre:pre_extra_script.py post:post_extra_script1.py post_extra_script2.py + +.. note:: + PlatformIO includes a service stage during runtime where it re-executes extra + scripts to gather integration information intended for IDE plugins. If you want + your scripts to run exclusively for the "build" target, include the following + hook at the beginning of your script: + +.. code-block:: python + + Import("env") + + if env.IsIntegrationDump(): + # stop the current script execution + Return() + + # code below runs for the "build" and other targets + env.Append(CPPDEFINES=["MACRO_NAME"]) diff --git a/en/latest/_static/basic.css b/en/latest/_static/basic.css index f316efcb47..7ebbd6d07b 100644 --- a/en/latest/_static/basic.css +++ b/en/latest/_static/basic.css @@ -1,12 +1,5 @@ /* - * basic.css - * ~~~~~~~~~ - * * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ /* -- main layout ----------------------------------------------------------- */ @@ -115,15 +108,11 @@ img { /* -- search page ----------------------------------------------------------- */ ul.search { - margin: 10px 0 0 20px; - padding: 0; + margin-top: 10px; } ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; + padding: 5px 0; } ul.search li a { diff --git a/en/latest/_static/css/badge_only.css b/en/latest/_static/css/badge_only.css index c718cee441..88ba55b965 100644 --- a/en/latest/_static/css/badge_only.css +++ b/en/latest/_static/css/badge_only.css @@ -1 +1 @@ -.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format("svg")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before,.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before,.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before,.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:"";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}} \ No newline at end of file +.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format("svg")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before,.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before,.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before,.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:"";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions .rst-other-versions .rtd-current-item{font-weight:700}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}#flyout-search-form{padding:6px} \ No newline at end of file diff --git a/en/latest/_static/css/theme.css b/en/latest/_static/css/theme.css index 19a446a0e7..0f14f10646 100644 --- a/en/latest/_static/css/theme.css +++ b/en/latest/_static/css/theme.css @@ -1,4 +1,4 @@ html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden],audio:not([controls]){display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;text-decoration:none}ins,mark{color:#000}mark{background:#ff0;font-style:italic;font-weight:700}.rst-content code,.rst-content tt,code,kbd,pre,samp{font-family:monospace,serif;_font-family:courier new,monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:after,q:before{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,ol,ul{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure,form{margin:0}label{cursor:pointer}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{body,html,section{background:none!important}*{box-shadow:none!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}.rst-content .toctree-wrapper>p.caption,h2,h3,p{orphans:3;widows:3}.rst-content .toctree-wrapper>p.caption,h2,h3{page-break-after:avoid}}.btn,.fa:before,.icon:before,.rst-content .admonition,.rst-content .admonition-title:before,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .code-block-caption .headerlink:before,.rst-content .danger,.rst-content .eqno .headerlink:before,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-alert,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .eqno .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a button.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-left.toctree-expand,.wy-menu-vertical li button.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .eqno .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a button.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-right.toctree-expand,.wy-menu-vertical li button.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .eqno .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a button.pull-left.toctree-expand,.wy-menu-vertical li.on a button.pull-left.toctree-expand,.wy-menu-vertical li button.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .eqno .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a button.pull-right.toctree-expand,.wy-menu-vertical li.on a button.pull-right.toctree-expand,.wy-menu-vertical li button.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li button.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content .eqno .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content .eqno a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content p a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li a button.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content .eqno .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content p .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li button.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content .eqno .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a button.toctree-expand,.btn .wy-menu-vertical li.on a button.toctree-expand,.btn .wy-menu-vertical li button.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content .eqno .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a button.toctree-expand,.nav .wy-menu-vertical li.on a button.toctree-expand,.nav .wy-menu-vertical li button.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .eqno .btn .headerlink,.rst-content .eqno .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p .btn .headerlink,.rst-content p .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn button.toctree-expand,.wy-menu-vertical li.current>a .btn button.toctree-expand,.wy-menu-vertical li.current>a .nav button.toctree-expand,.wy-menu-vertical li .nav button.toctree-expand,.wy-menu-vertical li.on a .btn button.toctree-expand,.wy-menu-vertical li.on a .nav button.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .eqno .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li button.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .eqno .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li button.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .eqno .btn .fa-large.headerlink,.rst-content .eqno .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p .btn .fa-large.headerlink,.rst-content p .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn button.fa-large.toctree-expand,.wy-menu-vertical li .nav button.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .eqno .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li button.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .eqno .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li button.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .eqno .btn .fa-spin.headerlink,.rst-content .eqno .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p .btn .fa-spin.headerlink,.rst-content p .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn button.fa-spin.toctree-expand,.wy-menu-vertical li .nav button.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content .eqno .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li button.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content .eqno .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li button.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content .eqno .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li button.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content .eqno .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini button.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:"";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.rst-content section ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.rst-content section ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.rst-content section ul li p:last-child,.rst-content section ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.rst-content section ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.rst-content section ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.rst-content section ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content .section ol.arabic,.rst-content .toctree-wrapper ol,.rst-content .toctree-wrapper ol.arabic,.rst-content section ol,.rst-content section ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol.arabic li,.rst-content .section ol li,.rst-content .toctree-wrapper ol.arabic li,.rst-content .toctree-wrapper ol li,.rst-content section ol.arabic li,.rst-content section ol li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol.arabic li ul,.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content .toctree-wrapper ol.arabic li ul,.rst-content .toctree-wrapper ol li p:last-child,.rst-content .toctree-wrapper ol li ul,.rst-content section ol.arabic li ul,.rst-content section ol li p:last-child,.rst-content section ol li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol.arabic li ul li,.rst-content .section ol li ul li,.rst-content .toctree-wrapper ol.arabic li ul li,.rst-content .toctree-wrapper ol li ul li,.rst-content section ol.arabic li ul li,.rst-content section ol li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs>li{display:inline-block;padding-top:5px}.wy-breadcrumbs>li.wy-breadcrumbs-aside{float:right}.rst-content .wy-breadcrumbs>li code,.rst-content .wy-breadcrumbs>li tt,.wy-breadcrumbs>li .rst-content tt,.wy-breadcrumbs>li code{all:inherit;color:inherit}.breadcrumb-item:before{content:"/";color:#bbb;font-size:13px;padding:0 6px 0 3px}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li button.toctree-expand{display:block;float:left;margin-left:-1.2em;line-height:18px;color:#4d4d4d;border:none;background:none;padding:0}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover button.toctree-expand,.wy-menu-vertical li.on a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand{display:block;line-height:18px;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{padding:.4045em 1.618em .4045em 4.045em}.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{padding:.4045em 1.618em .4045em 5.663em}.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a{padding:.4045em 1.618em .4045em 7.281em}.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a{padding:.4045em 1.618em .4045em 8.899em}.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a{padding:.4045em 1.618em .4045em 10.517em}.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a{padding:.4045em 1.618em .4045em 12.135em}.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a{padding:.4045em 1.618em .4045em 13.753em}.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a{padding:.4045em 1.618em .4045em 15.371em}.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 1.618em .4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 button.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 button.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover button.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active button.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em;max-width:100%}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search>a:hover{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .eqno .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content .eqno .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content .toctree-wrapper>p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-bottom:24px}.rst-content img{max-width:100%;height:auto}.rst-content div.figure,.rst-content figure{margin-bottom:24px}.rst-content div.figure .caption-text,.rst-content figure .caption-text{font-style:italic}.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center,.rst-content figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img,.rst-content section>a>img,.rst-content section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"\f08e";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp,.rst-content div.highlight span.linenos{user-select:none;pointer-events:none}.rst-content div.highlight span.linenos{display:inline-block;padding-left:0;padding-right:12px;margin-right:12px;border-right:1px solid #e6e9ea}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li,.rst-content .toctree-wrapper ol.loweralpha,.rst-content .toctree-wrapper ol.loweralpha>li,.rst-content section ol.loweralpha,.rst-content section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li,.rst-content .toctree-wrapper ol.upperalpha,.rst-content .toctree-wrapper ol.upperalpha>li,.rst-content section ol.upperalpha,.rst-content section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*,.rst-content .toctree-wrapper ol li>*,.rst-content .toctree-wrapper ul li>*,.rst-content section ol li>*,.rst-content section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child,.rst-content .toctree-wrapper ol li>:first-child,.rst-content .toctree-wrapper ul li>:first-child,.rst-content section ol li>:first-child,.rst-content section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child,.rst-content .toctree-wrapper ol li>p,.rst-content .toctree-wrapper ol li>p:last-child,.rst-content .toctree-wrapper ul li>p,.rst-content .toctree-wrapper ul li>p:last-child,.rst-content section ol li>p,.rst-content section ol li>p:last-child,.rst-content section ul li>p,.rst-content section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child,.rst-content .toctree-wrapper ol li>p:only-child,.rst-content .toctree-wrapper ol li>p:only-child:last-child,.rst-content .toctree-wrapper ul li>p:only-child,.rst-content .toctree-wrapper ul li>p:only-child:last-child,.rst-content section ol li>p:only-child,.rst-content section ol li>p:only-child:last-child,.rst-content section ul li>p:only-child,.rst-content section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul,.rst-content .toctree-wrapper ol li>ol,.rst-content .toctree-wrapper ol li>ul,.rst-content .toctree-wrapper ul li>ol,.rst-content .toctree-wrapper ul li>ul,.rst-content section ol li>ol,.rst-content section ol li>ul,.rst-content section ul li>ol,.rst-content section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul,.rst-content .toctree-wrapper ol.simple li>*,.rst-content .toctree-wrapper ol.simple li ol,.rst-content .toctree-wrapper ol.simple li ul,.rst-content .toctree-wrapper ul.simple li>*,.rst-content .toctree-wrapper ul.simple li ol,.rst-content .toctree-wrapper ul.simple li ul,.rst-content section ol.simple li>*,.rst-content section ol.simple li ol,.rst-content section ol.simple li ul,.rst-content section ul.simple li>*,.rst-content section ul.simple li ol,.rst-content section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink{opacity:0;font-size:14px;font-family:FontAwesome;margin-left:.5em}.rst-content .code-block-caption .headerlink:focus,.rst-content .code-block-caption:hover .headerlink,.rst-content .eqno .headerlink:focus,.rst-content .eqno:hover .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink:focus,.rst-content .toctree-wrapper>p.caption:hover .headerlink,.rst-content dl dt .headerlink:focus,.rst-content dl dt:hover .headerlink,.rst-content h1 .headerlink:focus,.rst-content h1:hover .headerlink,.rst-content h2 .headerlink:focus,.rst-content h2:hover .headerlink,.rst-content h3 .headerlink:focus,.rst-content h3:hover .headerlink,.rst-content h4 .headerlink:focus,.rst-content h4:hover .headerlink,.rst-content h5 .headerlink:focus,.rst-content h5:hover .headerlink,.rst-content h6 .headerlink:focus,.rst-content h6:hover .headerlink,.rst-content p.caption .headerlink:focus,.rst-content p.caption:hover .headerlink,.rst-content p .headerlink:focus,.rst-content p:hover .headerlink,.rst-content table>caption .headerlink:focus,.rst-content table>caption:hover .headerlink{opacity:1}.rst-content p a{overflow-wrap:anywhere}.rst-content .wy-table td p,.rst-content .wy-table td ul,.rst-content .wy-table th p,.rst-content .wy-table th ul,.rst-content table.docutils td p,.rst-content table.docutils td ul,.rst-content table.docutils th p,.rst-content table.docutils th ul,.rst-content table.field-list td p,.rst-content table.field-list td ul,.rst-content table.field-list th p,.rst-content table.field-list th ul{font-size:inherit}.rst-content .btn:focus{outline:2px solid}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .citation-reference>span.fn-bracket,.rst-content .footnote-reference>span.fn-bracket{display:none}.rst-content .hlist{width:100%}.rst-content dl dt span.classifier:before{content:" : "}.rst-content dl dt span.classifier-delimiter{display:none!important}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:auto minmax(80%,95%)}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{display:inline-grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{display:grid;grid-template-columns:auto auto minmax(.65rem,auto) minmax(40%,95%)}html.writer-html5 .rst-content aside.citation>span.label,html.writer-html5 .rst-content aside.footnote>span.label,html.writer-html5 .rst-content div.citation>span.label{grid-column-start:1;grid-column-end:2}html.writer-html5 .rst-content aside.citation>span.backrefs,html.writer-html5 .rst-content aside.footnote>span.backrefs,html.writer-html5 .rst-content div.citation>span.backrefs{grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3}html.writer-html5 .rst-content aside.citation>p,html.writer-html5 .rst-content aside.footnote>p,html.writer-html5 .rst-content div.citation>p{grid-column-start:4;grid-column-end:5}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{margin-bottom:24px}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.citation>dt>span.brackets:before,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:"["}html.writer-html5 .rst-content dl.citation>dt>span.brackets:after,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:"]"}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a{word-break:keep-all}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a:not(:first-child):before,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.citation>dd p,html.writer-html5 .rst-content dl.footnote>dd p{font-size:.9rem}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{padding-left:1rem;padding-right:1rem;font-size:.9rem;line-height:1.2rem}html.writer-html5 .rst-content aside.citation p,html.writer-html5 .rst-content aside.footnote p,html.writer-html5 .rst-content div.citation p{font-size:.9rem;line-height:1.2rem;margin-bottom:12px}html.writer-html5 .rst-content aside.citation span.backrefs,html.writer-html5 .rst-content aside.footnote span.backrefs,html.writer-html5 .rst-content div.citation span.backrefs{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content aside.citation span.backrefs>a,html.writer-html5 .rst-content aside.footnote span.backrefs>a,html.writer-html5 .rst-content div.citation span.backrefs>a{word-break:keep-all}html.writer-html5 .rst-content aside.citation span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content aside.footnote span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content div.citation span.backrefs>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content aside.citation span.label,html.writer-html5 .rst-content aside.footnote span.label,html.writer-html5 .rst-content div.citation span.label{line-height:1.2rem}html.writer-html5 .rst-content aside.citation-list,html.writer-html5 .rst-content aside.footnote-list,html.writer-html5 .rst-content div.citation-list{margin-bottom:24px}html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content aside.footnote-list aside.footnote,html.writer-html5 .rst-content div.citation-list>div.citation,html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content aside.footnote-list aside.footnote code,html.writer-html5 .rst-content aside.footnote-list aside.footnote tt,html.writer-html5 .rst-content aside.footnote code,html.writer-html5 .rst-content aside.footnote tt,html.writer-html5 .rst-content div.citation-list>div.citation code,html.writer-html5 .rst-content div.citation-list>div.citation tt,html.writer-html5 .rst-content dl.citation code,html.writer-html5 .rst-content dl.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c;white-space:normal}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040;overflow-wrap:normal}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl dd>ol:last-child,.rst-content dl dd>p:last-child,.rst-content dl dd>table:last-child,.rst-content dl dd>ul:last-child{margin-bottom:0}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px;max-width:100%}html.writer-html4 .rst-content dl:not(.docutils) .k,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .k{font-style:italic}html.writer-html4 .rst-content dl:not(.docutils) .descclassname,html.writer-html4 .rst-content dl:not(.docutils) .descname,html.writer-html4 .rst-content dl:not(.docutils) .sig-name,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#000}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel,.rst-content .menuselection{font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .guilabel,.rst-content .menuselection{border:1px solid #7fbbe3;background:#e7f2fa}.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>.kbd,.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>kbd{color:inherit;font-size:80%;background-color:#fff;border:1px solid #a6a6a6;border-radius:4px;box-shadow:0 2px grey;padding:2.4px 6px;margin:auto 0}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff");font-display:block} \ No newline at end of file + */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .eqno .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a button.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-left.toctree-expand,.wy-menu-vertical li button.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .eqno .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a button.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a button.fa-pull-right.toctree-expand,.wy-menu-vertical li button.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .eqno .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a button.pull-left.toctree-expand,.wy-menu-vertical li.on a button.pull-left.toctree-expand,.wy-menu-vertical li button.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .eqno .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a button.pull-right.toctree-expand,.wy-menu-vertical li.on a button.pull-right.toctree-expand,.wy-menu-vertical li button.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li button.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li button.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content .eqno .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content p .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a button.toctree-expand:before,.wy-menu-vertical li.on a button.toctree-expand:before,.wy-menu-vertical li button.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content .eqno a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content p a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand,.wy-menu-vertical li a button.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content .eqno .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content p .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li button.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content .eqno .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a button.toctree-expand,.btn .wy-menu-vertical li.on a button.toctree-expand,.btn .wy-menu-vertical li button.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content .eqno .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a button.toctree-expand,.nav .wy-menu-vertical li.on a button.toctree-expand,.nav .wy-menu-vertical li button.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .eqno .btn .headerlink,.rst-content .eqno .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p .btn .headerlink,.rst-content p .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn button.toctree-expand,.wy-menu-vertical li.current>a .btn button.toctree-expand,.wy-menu-vertical li.current>a .nav button.toctree-expand,.wy-menu-vertical li .nav button.toctree-expand,.wy-menu-vertical li.on a .btn button.toctree-expand,.wy-menu-vertical li.on a .nav button.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .eqno .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li button.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .eqno .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li button.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .eqno .btn .fa-large.headerlink,.rst-content .eqno .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p .btn .fa-large.headerlink,.rst-content p .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn button.fa-large.toctree-expand,.wy-menu-vertical li .nav button.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .eqno .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li button.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .eqno .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li button.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .eqno .btn .fa-spin.headerlink,.rst-content .eqno .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p .btn .fa-spin.headerlink,.rst-content p .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn button.fa-spin.toctree-expand,.wy-menu-vertical li .nav button.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content .eqno .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li button.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content .eqno .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li button.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content .eqno .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li button.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content .eqno .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini button.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:"";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.rst-content section ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.rst-content section ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.rst-content section ul li p:last-child,.rst-content section ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.rst-content section ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.rst-content section ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.rst-content section ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content .section ol.arabic,.rst-content .toctree-wrapper ol,.rst-content .toctree-wrapper ol.arabic,.rst-content section ol,.rst-content section ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol.arabic li,.rst-content .section ol li,.rst-content .toctree-wrapper ol.arabic li,.rst-content .toctree-wrapper ol li,.rst-content section ol.arabic li,.rst-content section ol li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol.arabic li ul,.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content .toctree-wrapper ol.arabic li ul,.rst-content .toctree-wrapper ol li p:last-child,.rst-content .toctree-wrapper ol li ul,.rst-content section ol.arabic li ul,.rst-content section ol li p:last-child,.rst-content section ol li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol.arabic li ul li,.rst-content .section ol li ul li,.rst-content .toctree-wrapper ol.arabic li ul li,.rst-content .toctree-wrapper ol li ul li,.rst-content section ol.arabic li ul li,.rst-content section ol li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs>li{display:inline-block;padding-top:5px}.wy-breadcrumbs>li.wy-breadcrumbs-aside{float:right}.rst-content .wy-breadcrumbs>li code,.rst-content .wy-breadcrumbs>li tt,.wy-breadcrumbs>li .rst-content tt,.wy-breadcrumbs>li code{all:inherit;color:inherit}.breadcrumb-item:before{content:"/";color:#bbb;font-size:13px;padding:0 6px 0 3px}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li button.toctree-expand{display:block;float:left;margin-left:-1.2em;line-height:18px;color:#4d4d4d;border:none;background:none;padding:0}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover button.toctree-expand,.wy-menu-vertical li.on a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.current>a button.toctree-expand,.wy-menu-vertical li.on a button.toctree-expand{display:block;line-height:18px;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover button.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover button.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{padding:.4045em 1.618em .4045em 4.045em}.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{padding:.4045em 1.618em .4045em 5.663em}.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a{padding:.4045em 1.618em .4045em 7.281em}.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a{padding:.4045em 1.618em .4045em 8.899em}.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a{padding:.4045em 1.618em .4045em 10.517em}.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a{padding:.4045em 1.618em .4045em 12.135em}.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a{padding:.4045em 1.618em .4045em 13.753em}.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a{padding:.4045em 1.618em .4045em 15.371em}.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 1.618em .4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 button.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 button.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover button.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active button.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em;max-width:100%}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search .wy-dropdown>aactive,.wy-side-nav-search .wy-dropdown>afocus,.wy-side-nav-search>a:hover,.wy-side-nav-search>aactive,.wy-side-nav-search>afocus{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon,.wy-side-nav-search>a.icon{display:block}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.switch-menus{position:relative;display:block;margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-side-nav-search>div.switch-menus>div.language-switch,.wy-side-nav-search>div.switch-menus>div.version-switch{display:inline-block;padding:.2em}.wy-side-nav-search>div.switch-menus>div.language-switch select,.wy-side-nav-search>div.switch-menus>div.version-switch select{display:inline-block;margin-right:-2rem;padding-right:2rem;max-width:240px;text-align-last:center;background:none;border:none;border-radius:0;box-shadow:none;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-size:1em;font-weight:400;color:hsla(0,0%,100%,.3);cursor:pointer;appearance:none;-webkit-appearance:none;-moz-appearance:none}.wy-side-nav-search>div.switch-menus>div.language-switch select:active,.wy-side-nav-search>div.switch-menus>div.language-switch select:focus,.wy-side-nav-search>div.switch-menus>div.language-switch select:hover,.wy-side-nav-search>div.switch-menus>div.version-switch select:active,.wy-side-nav-search>div.switch-menus>div.version-switch select:focus,.wy-side-nav-search>div.switch-menus>div.version-switch select:hover{background:hsla(0,0%,100%,.1);color:hsla(0,0%,100%,.5)}.wy-side-nav-search>div.switch-menus>div.language-switch select option,.wy-side-nav-search>div.switch-menus>div.version-switch select option{color:#000}.wy-side-nav-search>div.switch-menus>div.language-switch:has(>select):after,.wy-side-nav-search>div.switch-menus>div.version-switch:has(>select):after{display:inline-block;width:1.5em;height:100%;padding:.1em;content:"\f0d7";font-size:1em;line-height:1.2em;font-family:FontAwesome;text-align:center;pointer-events:none;box-sizing:border-box}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .eqno .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content .eqno .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li button.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version button.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions .rst-other-versions .rtd-current-item{font-weight:700}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}#flyout-search-form{padding:6px}.rst-content .toctree-wrapper>p.caption,.rst-content h1,.rst-content h2,.rst-content h3,.rst-content h4,.rst-content h5,.rst-content h6{margin-bottom:24px}.rst-content img{max-width:100%;height:auto}.rst-content div.figure,.rst-content figure{margin-bottom:24px}.rst-content div.figure .caption-text,.rst-content figure .caption-text{font-style:italic}.rst-content div.figure p:last-child.caption,.rst-content figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center,.rst-content figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img,.rst-content section>a>img,.rst-content section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"\f08e";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp,.rst-content div.highlight span.linenos{user-select:none;pointer-events:none}.rst-content div.highlight span.linenos{display:inline-block;padding-left:0;padding-right:12px;margin-right:12px;border-right:1px solid #e6e9ea}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li,.rst-content .toctree-wrapper ol.loweralpha,.rst-content .toctree-wrapper ol.loweralpha>li,.rst-content section ol.loweralpha,.rst-content section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li,.rst-content .toctree-wrapper ol.upperalpha,.rst-content .toctree-wrapper ol.upperalpha>li,.rst-content section ol.upperalpha,.rst-content section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*,.rst-content .toctree-wrapper ol li>*,.rst-content .toctree-wrapper ul li>*,.rst-content section ol li>*,.rst-content section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child,.rst-content .toctree-wrapper ol li>:first-child,.rst-content .toctree-wrapper ul li>:first-child,.rst-content section ol li>:first-child,.rst-content section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child,.rst-content .toctree-wrapper ol li>p,.rst-content .toctree-wrapper ol li>p:last-child,.rst-content .toctree-wrapper ul li>p,.rst-content .toctree-wrapper ul li>p:last-child,.rst-content section ol li>p,.rst-content section ol li>p:last-child,.rst-content section ul li>p,.rst-content section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child,.rst-content .toctree-wrapper ol li>p:only-child,.rst-content .toctree-wrapper ol li>p:only-child:last-child,.rst-content .toctree-wrapper ul li>p:only-child,.rst-content .toctree-wrapper ul li>p:only-child:last-child,.rst-content section ol li>p:only-child,.rst-content section ol li>p:only-child:last-child,.rst-content section ul li>p:only-child,.rst-content section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul,.rst-content .toctree-wrapper ol li>ol,.rst-content .toctree-wrapper ol li>ul,.rst-content .toctree-wrapper ul li>ol,.rst-content .toctree-wrapper ul li>ul,.rst-content section ol li>ol,.rst-content section ol li>ul,.rst-content section ul li>ol,.rst-content section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul,.rst-content .toctree-wrapper ol.simple li>*,.rst-content .toctree-wrapper ol.simple li ol,.rst-content .toctree-wrapper ol.simple li ul,.rst-content .toctree-wrapper ul.simple li>*,.rst-content .toctree-wrapper ul.simple li ol,.rst-content .toctree-wrapper ul.simple li ul,.rst-content section ol.simple li>*,.rst-content section ol.simple li ol,.rst-content section ol.simple li ul,.rst-content section ul.simple li>*,.rst-content section ul.simple li ol,.rst-content section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .eqno .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content p .headerlink,.rst-content table>caption .headerlink{opacity:0;font-size:14px;font-family:FontAwesome;margin-left:.5em}.rst-content .code-block-caption .headerlink:focus,.rst-content .code-block-caption:hover .headerlink,.rst-content .eqno .headerlink:focus,.rst-content .eqno:hover .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink:focus,.rst-content .toctree-wrapper>p.caption:hover .headerlink,.rst-content dl dt .headerlink:focus,.rst-content dl dt:hover .headerlink,.rst-content h1 .headerlink:focus,.rst-content h1:hover .headerlink,.rst-content h2 .headerlink:focus,.rst-content h2:hover .headerlink,.rst-content h3 .headerlink:focus,.rst-content h3:hover .headerlink,.rst-content h4 .headerlink:focus,.rst-content h4:hover .headerlink,.rst-content h5 .headerlink:focus,.rst-content h5:hover .headerlink,.rst-content h6 .headerlink:focus,.rst-content h6:hover .headerlink,.rst-content p.caption .headerlink:focus,.rst-content p.caption:hover .headerlink,.rst-content p .headerlink:focus,.rst-content p:hover .headerlink,.rst-content table>caption .headerlink:focus,.rst-content table>caption:hover .headerlink{opacity:1}.rst-content p a{overflow-wrap:anywhere}.rst-content .wy-table td p,.rst-content .wy-table td ul,.rst-content .wy-table th p,.rst-content .wy-table th ul,.rst-content table.docutils td p,.rst-content table.docutils td ul,.rst-content table.docutils th p,.rst-content table.docutils th ul,.rst-content table.field-list td p,.rst-content table.field-list td ul,.rst-content table.field-list th p,.rst-content table.field-list th ul{font-size:inherit}.rst-content .btn:focus{outline:2px solid}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .citation-reference>span.fn-bracket,.rst-content .footnote-reference>span.fn-bracket{display:none}.rst-content .hlist{width:100%}.rst-content dl dt span.classifier:before{content:" : "}.rst-content dl dt span.classifier-delimiter{display:none!important}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:auto minmax(80%,95%)}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{display:inline-grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{display:grid;grid-template-columns:auto auto minmax(.65rem,auto) minmax(40%,95%)}html.writer-html5 .rst-content aside.citation>span.label,html.writer-html5 .rst-content aside.footnote>span.label,html.writer-html5 .rst-content div.citation>span.label{grid-column-start:1;grid-column-end:2}html.writer-html5 .rst-content aside.citation>span.backrefs,html.writer-html5 .rst-content aside.footnote>span.backrefs,html.writer-html5 .rst-content div.citation>span.backrefs{grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:3}html.writer-html5 .rst-content aside.citation>p,html.writer-html5 .rst-content aside.footnote>p,html.writer-html5 .rst-content div.citation>p{grid-column-start:4;grid-column-end:5}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{margin-bottom:24px}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.citation>dt,html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.citation>dt>span.brackets:before,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:"["}html.writer-html5 .rst-content dl.citation>dt>span.brackets:after,html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:"]"}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a{word-break:keep-all}html.writer-html5 .rst-content dl.citation>dt>span.fn-backref>a:not(:first-child):before,html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content dl.citation>dd,html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.citation>dd p,html.writer-html5 .rst-content dl.footnote>dd p{font-size:.9rem}html.writer-html5 .rst-content aside.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content div.citation{padding-left:1rem;padding-right:1rem;font-size:.9rem;line-height:1.2rem}html.writer-html5 .rst-content aside.citation p,html.writer-html5 .rst-content aside.footnote p,html.writer-html5 .rst-content div.citation p{font-size:.9rem;line-height:1.2rem;margin-bottom:12px}html.writer-html5 .rst-content aside.citation span.backrefs,html.writer-html5 .rst-content aside.footnote span.backrefs,html.writer-html5 .rst-content div.citation span.backrefs{text-align:left;font-style:italic;margin-left:.65rem;word-break:break-word;word-spacing:-.1rem;max-width:5rem}html.writer-html5 .rst-content aside.citation span.backrefs>a,html.writer-html5 .rst-content aside.footnote span.backrefs>a,html.writer-html5 .rst-content div.citation span.backrefs>a{word-break:keep-all}html.writer-html5 .rst-content aside.citation span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content aside.footnote span.backrefs>a:not(:first-child):before,html.writer-html5 .rst-content div.citation span.backrefs>a:not(:first-child):before{content:" "}html.writer-html5 .rst-content aside.citation span.label,html.writer-html5 .rst-content aside.footnote span.label,html.writer-html5 .rst-content div.citation span.label{line-height:1.2rem}html.writer-html5 .rst-content aside.citation-list,html.writer-html5 .rst-content aside.footnote-list,html.writer-html5 .rst-content div.citation-list{margin-bottom:24px}html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content aside.footnote,html.writer-html5 .rst-content aside.footnote-list aside.footnote,html.writer-html5 .rst-content div.citation-list>div.citation,html.writer-html5 .rst-content dl.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content aside.footnote-list aside.footnote code,html.writer-html5 .rst-content aside.footnote-list aside.footnote tt,html.writer-html5 .rst-content aside.footnote code,html.writer-html5 .rst-content aside.footnote tt,html.writer-html5 .rst-content div.citation-list>div.citation code,html.writer-html5 .rst-content div.citation-list>div.citation tt,html.writer-html5 .rst-content dl.citation code,html.writer-html5 .rst-content dl.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c;white-space:normal}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040;overflow-wrap:normal}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl dd>ol:last-child,.rst-content dl dd>p:last-child,.rst-content dl dd>table:last-child,.rst-content dl dd>ul:last-child{margin-bottom:0}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) dl:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px;max-width:100%}html.writer-html4 .rst-content dl:not(.docutils) .k,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .k{font-style:italic}html.writer-html4 .rst-content dl:not(.docutils) .descclassname,html.writer-html4 .rst-content dl:not(.docutils) .descname,html.writer-html4 .rst-content dl:not(.docutils) .sig-name,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#000}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel,.rst-content .menuselection{font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .guilabel,.rst-content .menuselection{border:1px solid #7fbbe3;background:#e7f2fa}.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>.kbd,.rst-content :not(dl.option-list)>:not(dt):not(kbd):not(.kbd)>kbd{color:inherit;font-size:80%;background-color:#fff;border:1px solid #a6a6a6;border-radius:4px;box-shadow:0 2px grey;padding:2.4px 6px;margin:auto 0}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff");font-display:block} \ No newline at end of file diff --git a/en/latest/_static/doctools.js b/en/latest/_static/doctools.js index 4d67807d17..0398ebb9f0 100644 --- a/en/latest/_static/doctools.js +++ b/en/latest/_static/doctools.js @@ -1,12 +1,5 @@ /* - * doctools.js - * ~~~~~~~~~~~ - * * Base JavaScript utilities for all Sphinx HTML documentation. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ "use strict"; diff --git a/en/latest/_static/fonts/Lato/lato-bold.eot b/en/latest/_static/fonts/Lato/lato-bold.eot new file mode 100644 index 0000000000..3361183a41 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bold.eot differ diff --git a/en/latest/_static/fonts/Lato/lato-bold.ttf b/en/latest/_static/fonts/Lato/lato-bold.ttf new file mode 100644 index 0000000000..29f691d5ed Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bold.ttf differ diff --git a/en/latest/_static/fonts/Lato/lato-bold.woff b/en/latest/_static/fonts/Lato/lato-bold.woff new file mode 100644 index 0000000000..c6dff51f06 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bold.woff differ diff --git a/en/latest/_static/fonts/Lato/lato-bold.woff2 b/en/latest/_static/fonts/Lato/lato-bold.woff2 new file mode 100644 index 0000000000..bb195043cf Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bold.woff2 differ diff --git a/en/latest/_static/fonts/Lato/lato-bolditalic.eot b/en/latest/_static/fonts/Lato/lato-bolditalic.eot new file mode 100644 index 0000000000..3d4154936b Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bolditalic.eot differ diff --git a/en/latest/_static/fonts/Lato/lato-bolditalic.ttf b/en/latest/_static/fonts/Lato/lato-bolditalic.ttf new file mode 100644 index 0000000000..f402040b3e Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bolditalic.ttf differ diff --git a/en/latest/_static/fonts/Lato/lato-bolditalic.woff b/en/latest/_static/fonts/Lato/lato-bolditalic.woff new file mode 100644 index 0000000000..88ad05b9ff Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bolditalic.woff differ diff --git a/en/latest/_static/fonts/Lato/lato-bolditalic.woff2 b/en/latest/_static/fonts/Lato/lato-bolditalic.woff2 new file mode 100644 index 0000000000..c4e3d804b5 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-bolditalic.woff2 differ diff --git a/en/latest/_static/fonts/Lato/lato-italic.eot b/en/latest/_static/fonts/Lato/lato-italic.eot new file mode 100644 index 0000000000..3f826421a1 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-italic.eot differ diff --git a/en/latest/_static/fonts/Lato/lato-italic.ttf b/en/latest/_static/fonts/Lato/lato-italic.ttf new file mode 100644 index 0000000000..b4bfc9b24a Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-italic.ttf differ diff --git a/en/latest/_static/fonts/Lato/lato-italic.woff b/en/latest/_static/fonts/Lato/lato-italic.woff new file mode 100644 index 0000000000..76114bc033 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-italic.woff differ diff --git a/en/latest/_static/fonts/Lato/lato-italic.woff2 b/en/latest/_static/fonts/Lato/lato-italic.woff2 new file mode 100644 index 0000000000..3404f37e2e Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-italic.woff2 differ diff --git a/en/latest/_static/fonts/Lato/lato-regular.eot b/en/latest/_static/fonts/Lato/lato-regular.eot new file mode 100644 index 0000000000..11e3f2a5f0 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-regular.eot differ diff --git a/en/latest/_static/fonts/Lato/lato-regular.ttf b/en/latest/_static/fonts/Lato/lato-regular.ttf new file mode 100644 index 0000000000..74decd9ebb Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-regular.ttf differ diff --git a/en/latest/_static/fonts/Lato/lato-regular.woff b/en/latest/_static/fonts/Lato/lato-regular.woff new file mode 100644 index 0000000000..ae1307ff5f Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-regular.woff differ diff --git a/en/latest/_static/fonts/Lato/lato-regular.woff2 b/en/latest/_static/fonts/Lato/lato-regular.woff2 new file mode 100644 index 0000000000..3bf9843328 Binary files /dev/null and b/en/latest/_static/fonts/Lato/lato-regular.woff2 differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot new file mode 100644 index 0000000000..79dc8efed3 Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf new file mode 100644 index 0000000000..df5d1df273 Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff new file mode 100644 index 0000000000..6cb6000018 Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 new file mode 100644 index 0000000000..7059e23142 Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot new file mode 100644 index 0000000000..2f7ca78a1e Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf new file mode 100644 index 0000000000..eb52a79073 Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff new file mode 100644 index 0000000000..f815f63f99 Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff differ diff --git a/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 new file mode 100644 index 0000000000..f2c76e5bda Binary files /dev/null and b/en/latest/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 differ diff --git a/en/latest/_static/js/html5shiv-printshiv.min.js b/en/latest/_static/js/html5shiv-printshiv.min.js deleted file mode 100644 index 2b43bd062e..0000000000 --- a/en/latest/_static/js/html5shiv-printshiv.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/** -* @preserve HTML5 Shiv 3.7.3-pre | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed -*/ -!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=y.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=y.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),y.elements=c+" "+a,j(b)}function f(a){var b=x[a[v]];return b||(b={},w++,a[v]=w,x[w]=b),b}function g(a,c,d){if(c||(c=b),q)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():u.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||t.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),q)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return y.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(y,b.frag)}function j(a){a||(a=b);var d=f(a);return!y.shivCSS||p||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),q||i(a,d),a}function k(a){for(var b,c=a.getElementsByTagName("*"),e=c.length,f=RegExp("^(?:"+d().join("|")+")$","i"),g=[];e--;)b=c[e],f.test(b.nodeName)&&g.push(b.applyElement(l(b)));return g}function l(a){for(var b,c=a.attributes,d=c.length,e=a.ownerDocument.createElement(A+":"+a.nodeName);d--;)b=c[d],b.specified&&e.setAttribute(b.nodeName,b.nodeValue);return e.style.cssText=a.style.cssText,e}function m(a){for(var b,c=a.split("{"),e=c.length,f=RegExp("(^|[\\s,>+~])("+d().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),g="$1"+A+"\\:$2";e--;)b=c[e]=c[e].split("}"),b[b.length-1]=b[b.length-1].replace(f,g),c[e]=b.join("}");return c.join("{")}function n(a){for(var b=a.length;b--;)a[b].removeNode()}function o(a){function b(){clearTimeout(g._removeSheetTimer),d&&d.removeNode(!0),d=null}var d,e,g=f(a),h=a.namespaces,i=a.parentWindow;return!B||a.printShived?a:("undefined"==typeof h[A]&&h.add(A),i.attachEvent("onbeforeprint",function(){b();for(var f,g,h,i=a.styleSheets,j=[],l=i.length,n=Array(l);l--;)n[l]=i[l];for(;h=n.pop();)if(!h.disabled&&z.test(h.media)){try{f=h.imports,g=f.length}catch(o){g=0}for(l=0;g>l;l++)n.push(f[l]);try{j.push(h.cssText)}catch(o){}}j=m(j.reverse().join("")),e=k(a),d=c(a,j)}),i.attachEvent("onafterprint",function(){n(e),clearTimeout(g._removeSheetTimer),g._removeSheetTimer=setTimeout(b,500)}),a.printShived=!0,a)}var p,q,r="3.7.3",s=a.html5||{},t=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,u=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,v="_html5shiv",w=0,x={};!function(){try{var a=b.createElement("a");a.innerHTML="",p="hidden"in a,q=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){p=!0,q=!0}}();var y={elements:s.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:r,shivCSS:s.shivCSS!==!1,supportsUnknownElements:q,shivMethods:s.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=y,j(b);var z=/^$|\b(?:all|print)\b/,A="html5shiv",B=!q&&function(){var c=b.documentElement;return!("undefined"==typeof b.namespaces||"undefined"==typeof b.parentWindow||"undefined"==typeof c.applyElement||"undefined"==typeof c.removeNode||"undefined"==typeof a.attachEvent)}();y.type+=" print",y.shivPrint=o,o(b),"object"==typeof module&&module.exports&&(module.exports=y)}("undefined"!=typeof window?window:this,document); \ No newline at end of file diff --git a/en/latest/_static/js/html5shiv.min.js b/en/latest/_static/js/html5shiv.min.js deleted file mode 100644 index cd1c674f5e..0000000000 --- a/en/latest/_static/js/html5shiv.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/** -* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed -*/ -!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3-pre",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document); \ No newline at end of file diff --git a/en/latest/_static/js/versions.js b/en/latest/_static/js/versions.js new file mode 100644 index 0000000000..4958195e07 --- /dev/null +++ b/en/latest/_static/js/versions.js @@ -0,0 +1,228 @@ +const themeFlyoutDisplay = "hidden"; +const themeVersionSelector = true; +const themeLanguageSelector = true; + +if (themeFlyoutDisplay === "attached") { + function renderLanguages(config) { + if (!config.projects.translations.length) { + return ""; + } + + // Insert the current language to the options on the selector + let languages = config.projects.translations.concat(config.projects.current); + languages = languages.sort((a, b) => a.language.name.localeCompare(b.language.name)); + + const languagesHTML = ` +
+
Languages
+ ${languages + .map( + (translation) => ` +
+ ${translation.language.code} +
+ `, + ) + .join("\n")} +
+ `; + return languagesHTML; + } + + function renderVersions(config) { + if (!config.versions.active.length) { + return ""; + } + const versionsHTML = ` +
+
Versions
+ ${config.versions.active + .map( + (version) => ` +
+ ${version.slug} +
+ `, + ) + .join("\n")} +
+ `; + return versionsHTML; + } + + function renderDownloads(config) { + if (!Object.keys(config.versions.current.downloads).length) { + return ""; + } + const downloadsNameDisplay = { + pdf: "PDF", + epub: "Epub", + htmlzip: "HTML", + }; + + const downloadsHTML = ` +
+
Downloads
+ ${Object.entries(config.versions.current.downloads) + .map( + ([name, url]) => ` +
+ ${downloadsNameDisplay[name]} +
+ `, + ) + .join("\n")} +
+ `; + return downloadsHTML; + } + + document.addEventListener("readthedocs-addons-data-ready", function (event) { + const config = event.detail.data(); + + const flyout = ` +
+ + Read the Docs + v: ${config.versions.current.slug} + + +
+
+ ${renderLanguages(config)} + ${renderVersions(config)} + ${renderDownloads(config)} +
+
On Read the Docs
+
+ Project Home +
+
+ Builds +
+
+ Downloads +
+
+
+
Search
+
+
+ +
+
+
+
+ + Hosted by Read the Docs + +
+
+ `; + + // Inject the generated flyout into the body HTML element. + document.body.insertAdjacentHTML("beforeend", flyout); + + // Trigger the Read the Docs Addons Search modal when clicking on the "Search docs" input from inside the flyout. + document + .querySelector("#flyout-search-form") + .addEventListener("focusin", () => { + const event = new CustomEvent("readthedocs-search-show"); + document.dispatchEvent(event); + }); + }) +} + +if (themeLanguageSelector || themeVersionSelector) { + function onSelectorSwitch(event) { + const option = event.target.selectedIndex; + const item = event.target.options[option]; + window.location.href = item.dataset.url; + } + + document.addEventListener("readthedocs-addons-data-ready", function (event) { + const config = event.detail.data(); + + const versionSwitch = document.querySelector( + "div.switch-menus > div.version-switch", + ); + if (themeVersionSelector) { + let versions = config.versions.active; + if (config.versions.current.hidden || config.versions.current.type === "external") { + versions.unshift(config.versions.current); + } + const versionSelect = ` + + `; + + versionSwitch.innerHTML = versionSelect; + versionSwitch.firstElementChild.addEventListener("change", onSelectorSwitch); + } + + const languageSwitch = document.querySelector( + "div.switch-menus > div.language-switch", + ); + + if (themeLanguageSelector) { + if (config.projects.translations.length) { + // Add the current language to the options on the selector + let languages = config.projects.translations.concat( + config.projects.current, + ); + languages = languages.sort((a, b) => + a.language.name.localeCompare(b.language.name), + ); + + const languageSelect = ` + + `; + + languageSwitch.innerHTML = languageSelect; + languageSwitch.firstElementChild.addEventListener("change", onSelectorSwitch); + } + else { + languageSwitch.remove(); + } + } + }); +} + +document.addEventListener("readthedocs-addons-data-ready", function (event) { + // Trigger the Read the Docs Addons Search modal when clicking on "Search docs" input from the topnav. + document + .querySelector("[role='search'] input") + .addEventListener("focusin", () => { + const event = new CustomEvent("readthedocs-search-show"); + document.dispatchEvent(event); + }); +}); \ No newline at end of file diff --git a/en/latest/_static/language_data.js b/en/latest/_static/language_data.js index 367b8ed81b..c7fe6c6faf 100644 --- a/en/latest/_static/language_data.js +++ b/en/latest/_static/language_data.js @@ -1,13 +1,6 @@ /* - * language_data.js - * ~~~~~~~~~~~~~~~~ - * * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; diff --git a/en/latest/_static/searchtools.js b/en/latest/_static/searchtools.js index b08d58c9b9..2c774d17af 100644 --- a/en/latest/_static/searchtools.js +++ b/en/latest/_static/searchtools.js @@ -1,12 +1,5 @@ /* - * searchtools.js - * ~~~~~~~~~~~~~~~~ - * * Sphinx JavaScript utilities for the full-text search. - * - * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * */ "use strict"; @@ -20,7 +13,7 @@ if (typeof Scorer === "undefined") { // and returns the new score. /* score: result => { - const [docname, title, anchor, descr, score, filename] = result + const [docname, title, anchor, descr, score, filename, kind] = result return score }, */ @@ -47,6 +40,14 @@ if (typeof Scorer === "undefined") { }; } +// Global search result kind enum, used by themes to style search results. +class SearchResultKind { + static get index() { return "index"; } + static get object() { return "object"; } + static get text() { return "text"; } + static get title() { return "title"; } +} + const _removeChildren = (element) => { while (element && element.lastChild) element.removeChild(element.lastChild); }; @@ -64,9 +65,13 @@ const _displayItem = (item, searchTerms, highlightTerms) => { const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY; const contentRoot = document.documentElement.dataset.content_root; - const [docName, title, anchor, descr, score, _filename] = item; + const [docName, title, anchor, descr, score, _filename, kind] = item; let listItem = document.createElement("li"); + // Add a class representing the item's type: + // can be used by a theme's CSS selector for styling + // See SearchResultKind for the class names. + listItem.classList.add(`kind-${kind}`); let requestUrl; let linkUrl; if (docBuilder === "dirhtml") { @@ -115,8 +120,10 @@ const _finishSearch = (resultCount) => { "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." ); else - Search.status.innerText = _( - "Search finished, found ${resultCount} page(s) matching the search query." + Search.status.innerText = Documentation.ngettext( + "Search finished, found one page matching the search query.", + "Search finished, found ${resultCount} pages matching the search query.", + resultCount, ).replace('${resultCount}', resultCount); }; const _displayNextItem = ( @@ -138,7 +145,7 @@ const _displayNextItem = ( else _finishSearch(resultCount); }; // Helper function used by query() to order search results. -// Each input is an array of [docname, title, anchor, descr, score, filename]. +// Each input is an array of [docname, title, anchor, descr, score, filename, kind]. // Order the results by score (in opposite order of appearance, since the // `_displayNextItem` function uses pop() to retrieve items) and then alphabetically. const _orderResultsByScoreThenName = (a, b) => { @@ -248,6 +255,7 @@ const Search = { searchSummary.classList.add("search-summary"); searchSummary.innerText = ""; const searchList = document.createElement("ul"); + searchList.setAttribute("role", "list"); searchList.classList.add("search"); const out = document.getElementById("search-results"); @@ -318,7 +326,7 @@ const Search = { const indexEntries = Search._index.indexentries; // Collect multiple result groups to be sorted separately and then ordered. - // Each is an array of [docname, title, anchor, descr, score, filename]. + // Each is an array of [docname, title, anchor, descr, score, filename, kind]. const normalResults = []; const nonMainIndexResults = []; @@ -337,6 +345,7 @@ const Search = { null, score + boost, filenames[file], + SearchResultKind.title, ]); } } @@ -354,6 +363,7 @@ const Search = { null, score, filenames[file], + SearchResultKind.index, ]; if (isMain) { normalResults.push(result); @@ -475,6 +485,7 @@ const Search = { descr, score, filenames[match[0]], + SearchResultKind.object, ]); }; Object.keys(objects).forEach((prefix) => @@ -585,6 +596,7 @@ const Search = { null, score, filenames[file], + SearchResultKind.text, ]); } return results; diff --git a/en/latest/advanced/static-code-analysis/cli.html b/en/latest/advanced/static-code-analysis/cli.html index ec40c6a7cb..628ba9d116 100644 --- a/en/latest/advanced/static-code-analysis/cli.html +++ b/en/latest/advanced/static-code-analysis/cli.html @@ -1,28 +1,35 @@ + + + + + + CLI Guide — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -315,18 +322,7 @@

CLI Guide - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/configuration.html b/en/latest/advanced/static-code-analysis/configuration.html index 10b25b6350..dcbff6720d 100644 --- a/en/latest/advanced/static-code-analysis/configuration.html +++ b/en/latest/advanced/static-code-analysis/configuration.html @@ -1,28 +1,35 @@ + + + + + + Configuration — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -327,18 +334,7 @@

Configuration - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/index.html b/en/latest/advanced/static-code-analysis/index.html index d5505769e3..712ace4a0d 100644 --- a/en/latest/advanced/static-code-analysis/index.html +++ b/en/latest/advanced/static-code-analysis/index.html @@ -1,28 +1,35 @@ + + + + + + Static Code Analysis — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -352,18 +359,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/severity.html b/en/latest/advanced/static-code-analysis/severity.html index 32c7ea7352..cca330defd 100644 --- a/en/latest/advanced/static-code-analysis/severity.html +++ b/en/latest/advanced/static-code-analysis/severity.html @@ -1,28 +1,35 @@ + + + + + + Defect severity — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -321,18 +328,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/tools/clang-tidy.html b/en/latest/advanced/static-code-analysis/tools/clang-tidy.html index 06fd778151..352f8d1546 100644 --- a/en/latest/advanced/static-code-analysis/tools/clang-tidy.html +++ b/en/latest/advanced/static-code-analysis/tools/clang-tidy.html @@ -1,28 +1,35 @@ + + + + + + Clang-Tidy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -460,18 +467,7 @@

Extra flags - - - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/tools/cppcheck.html b/en/latest/advanced/static-code-analysis/tools/cppcheck.html index 202e823721..750239e962 100644 --- a/en/latest/advanced/static-code-analysis/tools/cppcheck.html +++ b/en/latest/advanced/static-code-analysis/tools/cppcheck.html @@ -1,28 +1,35 @@ + + + + + + Cppcheck — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -552,18 +559,7 @@

CERT - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/tools/index.html b/en/latest/advanced/static-code-analysis/tools/index.html index bb962053f0..62e51f4c9f 100644 --- a/en/latest/advanced/static-code-analysis/tools/index.html +++ b/en/latest/advanced/static-code-analysis/tools/index.html @@ -1,28 +1,35 @@ + + + + + + Check tools — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -321,18 +328,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/tools/pvs-studio.html b/en/latest/advanced/static-code-analysis/tools/pvs-studio.html index 2cb1f91ea7..ab0060669c 100644 --- a/en/latest/advanced/static-code-analysis/tools/pvs-studio.html +++ b/en/latest/advanced/static-code-analysis/tools/pvs-studio.html @@ -1,28 +1,35 @@ + + + + + + PVS-Studio — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -430,18 +437,7 @@

Obtaining license jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/static-code-analysis/ui.html b/en/latest/advanced/static-code-analysis/ui.html index 5fcc47a3d4..333ed1860d 100644 --- a/en/latest/advanced/static-code-analysis/ui.html +++ b/en/latest/advanced/static-code-analysis/ui.html @@ -1,28 +1,35 @@ + + + + + + User Interface — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -303,18 +310,7 @@

User Interface - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/cli.html b/en/latest/advanced/unit-testing/cli.html index 5c1d955d86..0b1aabe47b 100644 --- a/en/latest/advanced/unit-testing/cli.html +++ b/en/latest/advanced/unit-testing/cli.html @@ -1,28 +1,35 @@ + + + + + + CLI Guide — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -326,18 +333,7 @@

CLI Guide - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/configuration.html b/en/latest/advanced/unit-testing/configuration.html index 8e90b0e9ef..a1138aa028 100644 --- a/en/latest/advanced/unit-testing/configuration.html +++ b/en/latest/advanced/unit-testing/configuration.html @@ -1,28 +1,35 @@ + + + + + + Configuration — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -322,18 +329,7 @@

Configuration - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/custom/api.html b/en/latest/advanced/unit-testing/frameworks/custom/api.html index 0c2ad25e64..01e53ef3f6 100644 --- a/en/latest/advanced/unit-testing/frameworks/custom/api.html +++ b/en/latest/advanced/unit-testing/frameworks/custom/api.html @@ -1,28 +1,35 @@ + + + + + + Test Runner API — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -558,18 +565,7 @@

TestCaseSource - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/custom/examples/custom_unity_library.html b/en/latest/advanced/unit-testing/frameworks/custom/examples/custom_unity_library.html index d6f27ed3a9..6ee6335897 100644 --- a/en/latest/advanced/unit-testing/frameworks/custom/examples/custom_unity_library.html +++ b/en/latest/advanced/unit-testing/frameworks/custom/examples/custom_unity_library.html @@ -1,28 +1,35 @@ + + + + + + Custom Unity Library — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -414,18 +421,7 @@

File contents - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/custom/examples/index.html b/en/latest/advanced/unit-testing/frameworks/custom/examples/index.html index 76aded08e1..48c04d45d9 100644 --- a/en/latest/advanced/unit-testing/frameworks/custom/examples/index.html +++ b/en/latest/advanced/unit-testing/frameworks/custom/examples/index.html @@ -1,28 +1,35 @@ + + + + + + Examples — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -320,18 +327,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/custom/index.html b/en/latest/advanced/unit-testing/frameworks/custom/index.html index 1d2cd43050..bc86241543 100644 --- a/en/latest/advanced/unit-testing/frameworks/custom/index.html +++ b/en/latest/advanced/unit-testing/frameworks/custom/index.html @@ -1,28 +1,35 @@ + + + + + + Custom Testing Framework — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -346,18 +353,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/custom/runner.html b/en/latest/advanced/unit-testing/frameworks/custom/runner.html index 3c926021b5..57018695d2 100644 --- a/en/latest/advanced/unit-testing/frameworks/custom/runner.html +++ b/en/latest/advanced/unit-testing/frameworks/custom/runner.html @@ -1,28 +1,35 @@ + + + + + + Custom Test Runner — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -366,18 +373,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/doctest.html b/en/latest/advanced/unit-testing/frameworks/doctest.html index 854649ba16..3cf2e2030b 100644 --- a/en/latest/advanced/unit-testing/frameworks/doctest.html +++ b/en/latest/advanced/unit-testing/frameworks/doctest.html @@ -1,28 +1,35 @@ + + + + + + Doctest — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -483,18 +490,7 @@

Test Runner - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/googletest.html b/en/latest/advanced/unit-testing/frameworks/googletest.html index 5ca3f8740c..8714e73ee6 100644 --- a/en/latest/advanced/unit-testing/frameworks/googletest.html +++ b/en/latest/advanced/unit-testing/frameworks/googletest.html @@ -1,28 +1,35 @@ + + + + + + GoogleTest — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -475,18 +482,7 @@

Test Runner - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/index.html b/en/latest/advanced/unit-testing/frameworks/index.html index 0a242ff5e7..30bd5ce96b 100644 --- a/en/latest/advanced/unit-testing/frameworks/index.html +++ b/en/latest/advanced/unit-testing/frameworks/index.html @@ -1,28 +1,35 @@ + + + + + + Testing Frameworks — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -360,18 +367,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/frameworks/unity.html b/en/latest/advanced/unit-testing/frameworks/unity.html index 9235137b79..070ce0e9ac 100644 --- a/en/latest/advanced/unit-testing/frameworks/unity.html +++ b/en/latest/advanced/unit-testing/frameworks/unity.html @@ -1,28 +1,35 @@ + + + + + + Unity — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -495,18 +502,7 @@

Test Runner - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/index.html b/en/latest/advanced/unit-testing/index.html index 0ba0ad5d6d..37e21dcb27 100644 --- a/en/latest/advanced/unit-testing/index.html +++ b/en/latest/advanced/unit-testing/index.html @@ -1,28 +1,35 @@ + + + + + + Unit Testing — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -359,18 +366,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/introduction.html b/en/latest/advanced/unit-testing/introduction.html index 656fd8d9d2..9227fbbf82 100644 --- a/en/latest/advanced/unit-testing/introduction.html +++ b/en/latest/advanced/unit-testing/introduction.html @@ -1,28 +1,35 @@ + + + + + + Introduction — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -328,18 +335,7 @@

Introduction - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/runner.html b/en/latest/advanced/unit-testing/runner.html index ef12f3c4ef..2b999ca1d0 100644 --- a/en/latest/advanced/unit-testing/runner.html +++ b/en/latest/advanced/unit-testing/runner.html @@ -1,28 +1,35 @@ + + + + + + Test Runner — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -401,18 +408,7 @@

Hybrid - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/semihosting.html b/en/latest/advanced/unit-testing/semihosting.html index b7fae872ba..3edc9e2776 100644 --- a/en/latest/advanced/unit-testing/semihosting.html +++ b/en/latest/advanced/unit-testing/semihosting.html @@ -1,28 +1,35 @@ + + + + + + Semihosting — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -381,18 +388,7 @@

Testing - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/simulators/index.html b/en/latest/advanced/unit-testing/simulators/index.html index 2dd821f9c6..ad264cb40d 100644 --- a/en/latest/advanced/unit-testing/simulators/index.html +++ b/en/latest/advanced/unit-testing/simulators/index.html @@ -1,28 +1,35 @@ + + + + + + Simulators — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -332,18 +339,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/simulators/qemu.html b/en/latest/advanced/unit-testing/simulators/qemu.html index 61cf6ceecc..35a1e6848b 100644 --- a/en/latest/advanced/unit-testing/simulators/qemu.html +++ b/en/latest/advanced/unit-testing/simulators/qemu.html @@ -1,28 +1,35 @@ + + + + + + QEMU — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -151,7 +158,8 @@

QEMU

-../../../_images/qemu.png +../../../_images/qemu.png +

QEMU is a free and open-source emulator that performs hardware virtualization. Official reference can be found here.

@@ -363,18 +371,7 @@

Testing jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/simulators/renode.html b/en/latest/advanced/unit-testing/simulators/renode.html index e847861b6b..9a9c48be4d 100644 --- a/en/latest/advanced/unit-testing/simulators/renode.html +++ b/en/latest/advanced/unit-testing/simulators/renode.html @@ -1,28 +1,35 @@ + + + + + + Renode — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -151,7 +158,8 @@

Renode

-../../../_images/renode.png +../../../_images/renode.png +

Renode is a development framework which accelerates IoT and embedded systems development by letting you simulate physical hardware systems - including both the CPU, peripherals, sensors, environment and wired or wireless medium between nodes. @@ -382,18 +390,7 @@

Testing jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/simulators/simavr.html b/en/latest/advanced/unit-testing/simulators/simavr.html index 10a277774c..a9b80d90fc 100644 --- a/en/latest/advanced/unit-testing/simulators/simavr.html +++ b/en/latest/advanced/unit-testing/simulators/simavr.html @@ -1,28 +1,35 @@ + + + + + + SimAVR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -370,18 +377,7 @@

Testing jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/structure/best-practices.html b/en/latest/advanced/unit-testing/structure/best-practices.html index 98350a5764..920069f177 100644 --- a/en/latest/advanced/unit-testing/structure/best-practices.html +++ b/en/latest/advanced/unit-testing/structure/best-practices.html @@ -1,28 +1,35 @@ + + + + + + Best Practices — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -332,18 +339,7 @@

Best Practices - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/structure/hierarchy.html b/en/latest/advanced/unit-testing/structure/hierarchy.html index 40003a3613..ea04489abb 100644 --- a/en/latest/advanced/unit-testing/structure/hierarchy.html +++ b/en/latest/advanced/unit-testing/structure/hierarchy.html @@ -1,28 +1,35 @@ + + + + + + Test Hierarchy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -427,18 +434,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/structure/index.html b/en/latest/advanced/unit-testing/structure/index.html index ce376fdb73..7a0af9317d 100644 --- a/en/latest/advanced/unit-testing/structure/index.html +++ b/en/latest/advanced/unit-testing/structure/index.html @@ -1,28 +1,35 @@ + + + + + + Project Structure — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -314,18 +321,7 @@

Project Structure - + \ No newline at end of file diff --git a/en/latest/advanced/unit-testing/structure/shared-code.html b/en/latest/advanced/unit-testing/structure/shared-code.html index aabd4125b8..637c5020ec 100644 --- a/en/latest/advanced/unit-testing/structure/shared-code.html +++ b/en/latest/advanced/unit-testing/structure/shared-code.html @@ -1,28 +1,35 @@ + + + + + + Shared Code — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -340,18 +347,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/LowCostRTK.html b/en/latest/boards/aceinna_imu/LowCostRTK.html index ddf905fb82..c13af189b2 100644 --- a/en/latest/boards/aceinna_imu/LowCostRTK.html +++ b/en/latest/boards/aceinna_imu/LowCostRTK.html @@ -1,28 +1,35 @@ + + + + + + Aceinna Low Cost RTK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/OpenIMU300.html b/en/latest/boards/aceinna_imu/OpenIMU300.html index 128d7b83f9..35bb8b76c8 100644 --- a/en/latest/boards/aceinna_imu/OpenIMU300.html +++ b/en/latest/boards/aceinna_imu/OpenIMU300.html @@ -1,28 +1,35 @@ + + + + + + Aceinna OpenIMU 300 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/OpenIMU300ZA.html b/en/latest/boards/aceinna_imu/OpenIMU300ZA.html index 553d37c605..0198781262 100644 --- a/en/latest/boards/aceinna_imu/OpenIMU300ZA.html +++ b/en/latest/boards/aceinna_imu/OpenIMU300ZA.html @@ -1,28 +1,35 @@ + + + + + + Aceinna OpenIMU 300ZA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/OpenIMU330.html b/en/latest/boards/aceinna_imu/OpenIMU330.html index f7f2bd02f5..cd0430f341 100644 --- a/en/latest/boards/aceinna_imu/OpenIMU330.html +++ b/en/latest/boards/aceinna_imu/OpenIMU330.html @@ -1,28 +1,35 @@ + + + + + + Aceinna OpenIMU 330 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/OpenIMU335.html b/en/latest/boards/aceinna_imu/OpenIMU335.html index c6c51edae4..e7be511c9b 100644 --- a/en/latest/boards/aceinna_imu/OpenIMU335.html +++ b/en/latest/boards/aceinna_imu/OpenIMU335.html @@ -1,28 +1,35 @@ + + + + + + Aceinna MTLT335 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/OpenRTK.html b/en/latest/boards/aceinna_imu/OpenRTK.html index eec76041dc..0cba2ccd7c 100644 --- a/en/latest/boards/aceinna_imu/OpenRTK.html +++ b/en/latest/boards/aceinna_imu/OpenRTK.html @@ -1,28 +1,35 @@ + + + + + + Aceinna OpenIMU 330ZA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/aceinna_imu/OpenRTK330L.html b/en/latest/boards/aceinna_imu/OpenRTK330L.html index eaca3a076f..25f23f2b20 100644 --- a/en/latest/boards/aceinna_imu/OpenRTK330L.html +++ b/en/latest/boards/aceinna_imu/OpenRTK330L.html @@ -1,28 +1,35 @@ + + + + + + Aceinna OpenRTK330L — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -453,18 +460,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/1284p16m.html b/en/latest/boards/atmelavr/1284p16m.html index b2d1ffacec..7baeae1d8e 100644 --- a/en/latest/boards/atmelavr/1284p16m.html +++ b/en/latest/boards/atmelavr/1284p16m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core+ (ATmega1284P@16M,5V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/1284p8m.html b/en/latest/boards/atmelavr/1284p8m.html index 0861f63db6..350fb059da 100644 --- a/en/latest/boards/atmelavr/1284p8m.html +++ b/en/latest/boards/atmelavr/1284p8m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core+ (ATmega1284P@8M,3.3V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/168pa16m.html b/en/latest/boards/atmelavr/168pa16m.html index d2e401326c..372981fc49 100644 --- a/en/latest/boards/atmelavr/168pa16m.html +++ b/en/latest/boards/atmelavr/168pa16m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core (Atmega168PA@16M,5V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/168pa8m.html b/en/latest/boards/atmelavr/168pa8m.html index 2e24ef2232..e7509a3c06 100644 --- a/en/latest/boards/atmelavr/168pa8m.html +++ b/en/latest/boards/atmelavr/168pa8m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core (Atmega168PA@8M,3.3V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/328p16m.html b/en/latest/boards/atmelavr/328p16m.html index 2fffdffc5e..84c0241cc2 100644 --- a/en/latest/boards/atmelavr/328p16m.html +++ b/en/latest/boards/atmelavr/328p16m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core (Atmega328P@16M,5V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/328p8m.html b/en/latest/boards/atmelavr/328p8m.html index 1d86b31086..69576b8f34 100644 --- a/en/latest/boards/atmelavr/328p8m.html +++ b/en/latest/boards/atmelavr/328p8m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core (Atmega328P@8M,3.3V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/32u416m.html b/en/latest/boards/atmelavr/32u416m.html index 3e5f1235cc..b2e32b892d 100644 --- a/en/latest/boards/atmelavr/32u416m.html +++ b/en/latest/boards/atmelavr/32u416m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core USB (ATmega32U4@16M,5V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/644pa16m.html b/en/latest/boards/atmelavr/644pa16m.html index 9f118dfa98..ebd4c35558 100644 --- a/en/latest/boards/atmelavr/644pa16m.html +++ b/en/latest/boards/atmelavr/644pa16m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core+ (Atmega644PA@16M,5V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/644pa8m.html b/en/latest/boards/atmelavr/644pa8m.html index 186276dba9..be1c085141 100644 --- a/en/latest/boards/atmelavr/644pa8m.html +++ b/en/latest/boards/atmelavr/644pa8m.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core+ (Atmega644PA@8M,3.3V) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/AT90CAN128.html b/en/latest/boards/atmelavr/AT90CAN128.html index f298bfd644..afe0b2c3ca 100644 --- a/en/latest/boards/atmelavr/AT90CAN128.html +++ b/en/latest/boards/atmelavr/AT90CAN128.html @@ -1,28 +1,35 @@ + + + + + + AT90CAN128 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/AT90CAN32.html b/en/latest/boards/atmelavr/AT90CAN32.html index da423e42df..532cd90186 100644 --- a/en/latest/boards/atmelavr/AT90CAN32.html +++ b/en/latest/boards/atmelavr/AT90CAN32.html @@ -1,28 +1,35 @@ + + + + + + AT90CAN32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/AT90CAN64.html b/en/latest/boards/atmelavr/AT90CAN64.html index f63d382ada..19c30271c5 100644 --- a/en/latest/boards/atmelavr/AT90CAN64.html +++ b/en/latest/boards/atmelavr/AT90CAN64.html @@ -1,28 +1,35 @@ + + + + + + AT90CAN64 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega128.html b/en/latest/boards/atmelavr/ATmega128.html index c10ef9f47f..1110840da7 100644 --- a/en/latest/boards/atmelavr/ATmega128.html +++ b/en/latest/boards/atmelavr/ATmega128.html @@ -1,28 +1,35 @@ + + + + + + ATmega128/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega1280.html b/en/latest/boards/atmelavr/ATmega1280.html index 3103279c51..3c005351fe 100644 --- a/en/latest/boards/atmelavr/ATmega1280.html +++ b/en/latest/boards/atmelavr/ATmega1280.html @@ -1,28 +1,35 @@ + + + + + + ATmega1280 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega1281.html b/en/latest/boards/atmelavr/ATmega1281.html index fad9a0135d..d3a2378fbe 100644 --- a/en/latest/boards/atmelavr/ATmega1281.html +++ b/en/latest/boards/atmelavr/ATmega1281.html @@ -1,28 +1,35 @@ + + + + + + ATmega1281 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega1284.html b/en/latest/boards/atmelavr/ATmega1284.html index ccfadc9c30..8a7d52b2b3 100644 --- a/en/latest/boards/atmelavr/ATmega1284.html +++ b/en/latest/boards/atmelavr/ATmega1284.html @@ -1,28 +1,35 @@ + + + + + + ATmega1284 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega1284P.html b/en/latest/boards/atmelavr/ATmega1284P.html index 92d946f400..d6c38a1370 100644 --- a/en/latest/boards/atmelavr/ATmega1284P.html +++ b/en/latest/boards/atmelavr/ATmega1284P.html @@ -1,28 +1,35 @@ + + + + + + ATmega1284P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega16.html b/en/latest/boards/atmelavr/ATmega16.html index 5a90e26217..d57b935aa6 100644 --- a/en/latest/boards/atmelavr/ATmega16.html +++ b/en/latest/boards/atmelavr/ATmega16.html @@ -1,28 +1,35 @@ + + + + + + ATmega16 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega162.html b/en/latest/boards/atmelavr/ATmega162.html index 94807bab9c..da3b10cdfa 100644 --- a/en/latest/boards/atmelavr/ATmega162.html +++ b/en/latest/boards/atmelavr/ATmega162.html @@ -1,28 +1,35 @@ + + + + + + ATmega162 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega164A.html b/en/latest/boards/atmelavr/ATmega164A.html index 1b7db9b88a..047b108e93 100644 --- a/en/latest/boards/atmelavr/ATmega164A.html +++ b/en/latest/boards/atmelavr/ATmega164A.html @@ -1,28 +1,35 @@ + + + + + + ATmega164A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega164P.html b/en/latest/boards/atmelavr/ATmega164P.html index 9cb52d6d5f..c7f181e8fa 100644 --- a/en/latest/boards/atmelavr/ATmega164P.html +++ b/en/latest/boards/atmelavr/ATmega164P.html @@ -1,28 +1,35 @@ + + + + + + ATmega164P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega165.html b/en/latest/boards/atmelavr/ATmega165.html index a2da09d365..fd062b7ff2 100644 --- a/en/latest/boards/atmelavr/ATmega165.html +++ b/en/latest/boards/atmelavr/ATmega165.html @@ -1,28 +1,35 @@ + + + + + + ATmega165/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega165P.html b/en/latest/boards/atmelavr/ATmega165P.html index af164ea575..39c621a820 100644 --- a/en/latest/boards/atmelavr/ATmega165P.html +++ b/en/latest/boards/atmelavr/ATmega165P.html @@ -1,28 +1,35 @@ + + + + + + ATmega165P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega168.html b/en/latest/boards/atmelavr/ATmega168.html index 17185dbea0..b0eacf203d 100644 --- a/en/latest/boards/atmelavr/ATmega168.html +++ b/en/latest/boards/atmelavr/ATmega168.html @@ -1,28 +1,35 @@ + + + + + + ATmega168/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega168P.html b/en/latest/boards/atmelavr/ATmega168P.html index c5975c0558..0d4ec8c7b5 100644 --- a/en/latest/boards/atmelavr/ATmega168P.html +++ b/en/latest/boards/atmelavr/ATmega168P.html @@ -1,28 +1,35 @@ + + + + + + ATmega168P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega168PB.html b/en/latest/boards/atmelavr/ATmega168PB.html index 8c4c78f226..42b75799ac 100644 --- a/en/latest/boards/atmelavr/ATmega168PB.html +++ b/en/latest/boards/atmelavr/ATmega168PB.html @@ -1,28 +1,35 @@ + + + + + + ATmega168PB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega169A.html b/en/latest/boards/atmelavr/ATmega169A.html index 70bca5a186..454a645a57 100644 --- a/en/latest/boards/atmelavr/ATmega169A.html +++ b/en/latest/boards/atmelavr/ATmega169A.html @@ -1,28 +1,35 @@ + + + + + + ATmega169A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega169P.html b/en/latest/boards/atmelavr/ATmega169P.html index 67e2674ffd..07b034cdf1 100644 --- a/en/latest/boards/atmelavr/ATmega169P.html +++ b/en/latest/boards/atmelavr/ATmega169P.html @@ -1,28 +1,35 @@ + + + + + + ATmega169/P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega2560.html b/en/latest/boards/atmelavr/ATmega2560.html index eca0a6fc81..f6e59b7500 100644 --- a/en/latest/boards/atmelavr/ATmega2560.html +++ b/en/latest/boards/atmelavr/ATmega2560.html @@ -1,28 +1,35 @@ + + + + + + ATmega2560 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega2561.html b/en/latest/boards/atmelavr/ATmega2561.html index 72ef9bb77f..af281c69fe 100644 --- a/en/latest/boards/atmelavr/ATmega2561.html +++ b/en/latest/boards/atmelavr/ATmega2561.html @@ -1,28 +1,35 @@ + + + + + + ATmega2561 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega32.html b/en/latest/boards/atmelavr/ATmega32.html index fe93d68a2e..d7db40503f 100644 --- a/en/latest/boards/atmelavr/ATmega32.html +++ b/en/latest/boards/atmelavr/ATmega32.html @@ -1,28 +1,35 @@ + + + + + + ATmega32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega324A.html b/en/latest/boards/atmelavr/ATmega324A.html index 580a4489e1..b3cb9f15ad 100644 --- a/en/latest/boards/atmelavr/ATmega324A.html +++ b/en/latest/boards/atmelavr/ATmega324A.html @@ -1,28 +1,35 @@ + + + + + + ATmega324A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega324P.html b/en/latest/boards/atmelavr/ATmega324P.html index 74e0e58c95..51e802efff 100644 --- a/en/latest/boards/atmelavr/ATmega324P.html +++ b/en/latest/boards/atmelavr/ATmega324P.html @@ -1,28 +1,35 @@ + + + + + + ATmega324P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega324PA.html b/en/latest/boards/atmelavr/ATmega324PA.html index 7ab5c5a11b..f14af5d88a 100644 --- a/en/latest/boards/atmelavr/ATmega324PA.html +++ b/en/latest/boards/atmelavr/ATmega324PA.html @@ -1,28 +1,35 @@ + + + + + + ATmega324PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega324PB.html b/en/latest/boards/atmelavr/ATmega324PB.html index 2f60d40868..cda943595b 100644 --- a/en/latest/boards/atmelavr/ATmega324PB.html +++ b/en/latest/boards/atmelavr/ATmega324PB.html @@ -1,28 +1,35 @@ + + + + + + ATmega324PB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega325.html b/en/latest/boards/atmelavr/ATmega325.html index c1fdeb1ab9..b520b6e20f 100644 --- a/en/latest/boards/atmelavr/ATmega325.html +++ b/en/latest/boards/atmelavr/ATmega325.html @@ -1,28 +1,35 @@ + + + + + + ATmega325/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega3250.html b/en/latest/boards/atmelavr/ATmega3250.html index ac7891ae3c..1656479730 100644 --- a/en/latest/boards/atmelavr/ATmega3250.html +++ b/en/latest/boards/atmelavr/ATmega3250.html @@ -1,28 +1,35 @@ + + + + + + ATmega3250/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega3250P.html b/en/latest/boards/atmelavr/ATmega3250P.html index 1317c5b091..46d0e6be42 100644 --- a/en/latest/boards/atmelavr/ATmega3250P.html +++ b/en/latest/boards/atmelavr/ATmega3250P.html @@ -1,28 +1,35 @@ + + + + + + ATmega3250P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega325P.html b/en/latest/boards/atmelavr/ATmega325P.html index 0afbded7ec..990c2200d7 100644 --- a/en/latest/boards/atmelavr/ATmega325P.html +++ b/en/latest/boards/atmelavr/ATmega325P.html @@ -1,28 +1,35 @@ + + + + + + ATmega325P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega328.html b/en/latest/boards/atmelavr/ATmega328.html index 7b796ffcb3..c6321603c4 100644 --- a/en/latest/boards/atmelavr/ATmega328.html +++ b/en/latest/boards/atmelavr/ATmega328.html @@ -1,28 +1,35 @@ + + + + + + ATmega328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega328P.html b/en/latest/boards/atmelavr/ATmega328P.html index efb11dd733..24b97ea90c 100644 --- a/en/latest/boards/atmelavr/ATmega328P.html +++ b/en/latest/boards/atmelavr/ATmega328P.html @@ -1,28 +1,35 @@ + + + + + + ATmega328P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega328PB.html b/en/latest/boards/atmelavr/ATmega328PB.html index 6b5776424a..0ec07d9074 100644 --- a/en/latest/boards/atmelavr/ATmega328PB.html +++ b/en/latest/boards/atmelavr/ATmega328PB.html @@ -1,28 +1,35 @@ + + + + + + ATmega328PB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega329.html b/en/latest/boards/atmelavr/ATmega329.html index 6f4954cd06..6345ffd46e 100644 --- a/en/latest/boards/atmelavr/ATmega329.html +++ b/en/latest/boards/atmelavr/ATmega329.html @@ -1,28 +1,35 @@ + + + + + + ATmega329/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega3290.html b/en/latest/boards/atmelavr/ATmega3290.html index 31ada45a99..8b17bd7235 100644 --- a/en/latest/boards/atmelavr/ATmega3290.html +++ b/en/latest/boards/atmelavr/ATmega3290.html @@ -1,28 +1,35 @@ + + + + + + ATmega3290/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega3290P.html b/en/latest/boards/atmelavr/ATmega3290P.html index ad263129e5..63b09ec5bf 100644 --- a/en/latest/boards/atmelavr/ATmega3290P.html +++ b/en/latest/boards/atmelavr/ATmega3290P.html @@ -1,28 +1,35 @@ + + + + + + ATmega3290P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega329P.html b/en/latest/boards/atmelavr/ATmega329P.html index ba8a27fc50..a40931c06b 100644 --- a/en/latest/boards/atmelavr/ATmega329P.html +++ b/en/latest/boards/atmelavr/ATmega329P.html @@ -1,28 +1,35 @@ + + + + + + ATmega329P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega48.html b/en/latest/boards/atmelavr/ATmega48.html index 3c5200b009..6c09e8f00d 100644 --- a/en/latest/boards/atmelavr/ATmega48.html +++ b/en/latest/boards/atmelavr/ATmega48.html @@ -1,28 +1,35 @@ + + + + + + ATmega48/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega48P.html b/en/latest/boards/atmelavr/ATmega48P.html index b22d6efd6d..d15c895248 100644 --- a/en/latest/boards/atmelavr/ATmega48P.html +++ b/en/latest/boards/atmelavr/ATmega48P.html @@ -1,28 +1,35 @@ + + + + + + ATmega48P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega48PB.html b/en/latest/boards/atmelavr/ATmega48PB.html index ae42c4ecc1..a86ac9e526 100644 --- a/en/latest/boards/atmelavr/ATmega48PB.html +++ b/en/latest/boards/atmelavr/ATmega48PB.html @@ -1,28 +1,35 @@ + + + + + + ATmega48PB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega64.html b/en/latest/boards/atmelavr/ATmega64.html index d063a1b35d..d3b7b4179f 100644 --- a/en/latest/boards/atmelavr/ATmega64.html +++ b/en/latest/boards/atmelavr/ATmega64.html @@ -1,28 +1,35 @@ + + + + + + ATmega64/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega640.html b/en/latest/boards/atmelavr/ATmega640.html index 62c8299034..e8558d24f8 100644 --- a/en/latest/boards/atmelavr/ATmega640.html +++ b/en/latest/boards/atmelavr/ATmega640.html @@ -1,28 +1,35 @@ + + + + + + ATmega640 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega644A.html b/en/latest/boards/atmelavr/ATmega644A.html index 25f51084fc..ed967316eb 100644 --- a/en/latest/boards/atmelavr/ATmega644A.html +++ b/en/latest/boards/atmelavr/ATmega644A.html @@ -1,28 +1,35 @@ + + + + + + ATmega644/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega644P.html b/en/latest/boards/atmelavr/ATmega644P.html index 54d6ed384d..b8a2b006c2 100644 --- a/en/latest/boards/atmelavr/ATmega644P.html +++ b/en/latest/boards/atmelavr/ATmega644P.html @@ -1,28 +1,35 @@ + + + + + + ATmega644P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega645.html b/en/latest/boards/atmelavr/ATmega645.html index 29f1e8d5c4..e1085d94a3 100644 --- a/en/latest/boards/atmelavr/ATmega645.html +++ b/en/latest/boards/atmelavr/ATmega645.html @@ -1,28 +1,35 @@ + + + + + + ATmega645/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega6450.html b/en/latest/boards/atmelavr/ATmega6450.html index edf86baa30..9bcf704e47 100644 --- a/en/latest/boards/atmelavr/ATmega6450.html +++ b/en/latest/boards/atmelavr/ATmega6450.html @@ -1,28 +1,35 @@ + + + + + + ATmega6450/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega6450P.html b/en/latest/boards/atmelavr/ATmega6450P.html index d9eba0bc69..d72ffcf773 100644 --- a/en/latest/boards/atmelavr/ATmega6450P.html +++ b/en/latest/boards/atmelavr/ATmega6450P.html @@ -1,28 +1,35 @@ + + + + + + ATmega6450P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega645P.html b/en/latest/boards/atmelavr/ATmega645P.html index af3f80c9b0..bf032ea900 100644 --- a/en/latest/boards/atmelavr/ATmega645P.html +++ b/en/latest/boards/atmelavr/ATmega645P.html @@ -1,28 +1,35 @@ + + + + + + ATmega645P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega649.html b/en/latest/boards/atmelavr/ATmega649.html index 74e8b2c34a..d7775ebe75 100644 --- a/en/latest/boards/atmelavr/ATmega649.html +++ b/en/latest/boards/atmelavr/ATmega649.html @@ -1,28 +1,35 @@ + + + + + + ATmega649/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega6490.html b/en/latest/boards/atmelavr/ATmega6490.html index 7a03a09f53..793b0a7639 100644 --- a/en/latest/boards/atmelavr/ATmega6490.html +++ b/en/latest/boards/atmelavr/ATmega6490.html @@ -1,28 +1,35 @@ + + + + + + ATmega6490/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega6490P.html b/en/latest/boards/atmelavr/ATmega6490P.html index 3441deb14f..ea05e41565 100644 --- a/en/latest/boards/atmelavr/ATmega6490P.html +++ b/en/latest/boards/atmelavr/ATmega6490P.html @@ -1,28 +1,35 @@ + + + + + + ATmega6490P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega649P.html b/en/latest/boards/atmelavr/ATmega649P.html index 45d2240cc9..30b785a5f1 100644 --- a/en/latest/boards/atmelavr/ATmega649P.html +++ b/en/latest/boards/atmelavr/ATmega649P.html @@ -1,28 +1,35 @@ + + + + + + ATmega649P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega8.html b/en/latest/boards/atmelavr/ATmega8.html index 9e5ff35913..22b1e296fd 100644 --- a/en/latest/boards/atmelavr/ATmega8.html +++ b/en/latest/boards/atmelavr/ATmega8.html @@ -1,28 +1,35 @@ + + + + + + ATmega8/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega8515.html b/en/latest/boards/atmelavr/ATmega8515.html index 6684df49b4..e7e3c60dd5 100644 --- a/en/latest/boards/atmelavr/ATmega8515.html +++ b/en/latest/boards/atmelavr/ATmega8515.html @@ -1,28 +1,35 @@ + + + + + + ATmega8515 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega8535.html b/en/latest/boards/atmelavr/ATmega8535.html index a19dd77492..d952dcbb92 100644 --- a/en/latest/boards/atmelavr/ATmega8535.html +++ b/en/latest/boards/atmelavr/ATmega8535.html @@ -1,28 +1,35 @@ + + + + + + ATmega8535 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega88.html b/en/latest/boards/atmelavr/ATmega88.html index 353471688a..124540ebba 100644 --- a/en/latest/boards/atmelavr/ATmega88.html +++ b/en/latest/boards/atmelavr/ATmega88.html @@ -1,28 +1,35 @@ + + + + + + ATmega88/A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega88P.html b/en/latest/boards/atmelavr/ATmega88P.html index ec96a00a7c..3294484036 100644 --- a/en/latest/boards/atmelavr/ATmega88P.html +++ b/en/latest/boards/atmelavr/ATmega88P.html @@ -1,28 +1,35 @@ + + + + + + ATmega88P/PA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ATmega88PB.html b/en/latest/boards/atmelavr/ATmega88PB.html index 2086a30f7f..dfd0d96816 100644 --- a/en/latest/boards/atmelavr/ATmega88PB.html +++ b/en/latest/boards/atmelavr/ATmega88PB.html @@ -1,28 +1,35 @@ + + + + + + ATmega88PB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/LilyPadUSB.html b/en/latest/boards/atmelavr/LilyPadUSB.html index 9051105b74..bfb02d66e2 100644 --- a/en/latest/boards/atmelavr/LilyPadUSB.html +++ b/en/latest/boards/atmelavr/LilyPadUSB.html @@ -1,28 +1,35 @@ + + + + + + Arduino LilyPad USB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/a-star32U4.html b/en/latest/boards/atmelavr/a-star32U4.html index cf3c6d2b72..5f205e78d7 100644 --- a/en/latest/boards/atmelavr/a-star32U4.html +++ b/en/latest/boards/atmelavr/a-star32U4.html @@ -1,28 +1,35 @@ + + + + + + Pololu A-Star 32U4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/alorium_hinj.html b/en/latest/boards/atmelavr/alorium_hinj.html index 68a41c216a..2db5ecdd03 100644 --- a/en/latest/boards/atmelavr/alorium_hinj.html +++ b/en/latest/boards/atmelavr/alorium_hinj.html @@ -1,28 +1,35 @@ + + + + + + Alorium Hinj — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/alorium_sno.html b/en/latest/boards/atmelavr/alorium_sno.html index 142ddcaf0c..2e2870dda6 100644 --- a/en/latest/boards/atmelavr/alorium_sno.html +++ b/en/latest/boards/atmelavr/alorium_sno.html @@ -1,28 +1,35 @@ + + + + + + Alorium Sno — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/alorium_xlr8.html b/en/latest/boards/atmelavr/alorium_xlr8.html index 11780d4106..3f26351345 100644 --- a/en/latest/boards/atmelavr/alorium_xlr8.html +++ b/en/latest/boards/atmelavr/alorium_xlr8.html @@ -1,28 +1,35 @@ + + + + + + Alorium XLR8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/altair.html b/en/latest/boards/atmelavr/altair.html index 1b90215a64..a3e09f4ce5 100644 --- a/en/latest/boards/atmelavr/altair.html +++ b/en/latest/boards/atmelavr/altair.html @@ -1,28 +1,35 @@ + + + + + + Altair — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ardhat.html b/en/latest/boards/atmelavr/ardhat.html index d68197beb5..d819c7ecb7 100644 --- a/en/latest/boards/atmelavr/ardhat.html +++ b/en/latest/boards/atmelavr/ardhat.html @@ -1,28 +1,35 @@ + + + + + + ubIQio Ardhat — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/arduboy.html b/en/latest/boards/atmelavr/arduboy.html index 6f9c3a1e2a..0441d92146 100644 --- a/en/latest/boards/atmelavr/arduboy.html +++ b/en/latest/boards/atmelavr/arduboy.html @@ -1,28 +1,35 @@ + + + + + + Arduboy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/arduboy_devkit.html b/en/latest/boards/atmelavr/arduboy_devkit.html index f392195a42..cc0ab93656 100644 --- a/en/latest/boards/atmelavr/arduboy_devkit.html +++ b/en/latest/boards/atmelavr/arduboy_devkit.html @@ -1,28 +1,35 @@ + + + + + + Arduboy DevKit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/at90pwm216.html b/en/latest/boards/atmelavr/at90pwm216.html index 4742e86a22..d922a77f36 100644 --- a/en/latest/boards/atmelavr/at90pwm216.html +++ b/en/latest/boards/atmelavr/at90pwm216.html @@ -1,28 +1,35 @@ + + + + + + Atmel AT90PWM216 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -619,18 +626,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/at90pwm316.html b/en/latest/boards/atmelavr/at90pwm316.html index 738c3c1d07..f4fc485a80 100644 --- a/en/latest/boards/atmelavr/at90pwm316.html +++ b/en/latest/boards/atmelavr/at90pwm316.html @@ -1,28 +1,35 @@ + + + + + + Atmel AT90PWM316 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -619,18 +626,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/atmegangatmega168.html b/en/latest/boards/atmelavr/atmegangatmega168.html index 79c0d23d71..e1700ca8f3 100644 --- a/en/latest/boards/atmelavr/atmegangatmega168.html +++ b/en/latest/boards/atmelavr/atmegangatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino NG or older ATmega168 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/atmegangatmega8.html b/en/latest/boards/atmelavr/atmegangatmega8.html index c7948cbbd3..5e37098938 100644 --- a/en/latest/boards/atmelavr/atmegangatmega8.html +++ b/en/latest/boards/atmelavr/atmegangatmega8.html @@ -1,28 +1,35 @@ + + + + + + Arduino NG or older ATmega8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny13.html b/en/latest/boards/atmelavr/attiny13.html index d55baaf88d..6fe3785540 100644 --- a/en/latest/boards/atmelavr/attiny13.html +++ b/en/latest/boards/atmelavr/attiny13.html @@ -1,28 +1,35 @@ + + + + + + ATtiny13 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny13a.html b/en/latest/boards/atmelavr/attiny13a.html index 724f0fd4ba..048b102384 100644 --- a/en/latest/boards/atmelavr/attiny13a.html +++ b/en/latest/boards/atmelavr/attiny13a.html @@ -1,28 +1,35 @@ + + + + + + ATtiny13A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny1634.html b/en/latest/boards/atmelavr/attiny1634.html index 07523aa48c..a02a65c38b 100644 --- a/en/latest/boards/atmelavr/attiny1634.html +++ b/en/latest/boards/atmelavr/attiny1634.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny1634 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny167.html b/en/latest/boards/atmelavr/attiny167.html index dbb4ecf6b0..1695e7a432 100644 --- a/en/latest/boards/atmelavr/attiny167.html +++ b/en/latest/boards/atmelavr/attiny167.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny167 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny2313.html b/en/latest/boards/atmelavr/attiny2313.html index 1a47dc9ba9..d6b7cbad29 100644 --- a/en/latest/boards/atmelavr/attiny2313.html +++ b/en/latest/boards/atmelavr/attiny2313.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny2313 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny24.html b/en/latest/boards/atmelavr/attiny24.html index 80ed34e1bd..090a4af3bc 100644 --- a/en/latest/boards/atmelavr/attiny24.html +++ b/en/latest/boards/atmelavr/attiny24.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny24 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny25.html b/en/latest/boards/atmelavr/attiny25.html index 183a1a47bc..d190e835e7 100644 --- a/en/latest/boards/atmelavr/attiny25.html +++ b/en/latest/boards/atmelavr/attiny25.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny25 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny261.html b/en/latest/boards/atmelavr/attiny261.html index 8d96ad7e6b..58052bfa9c 100644 --- a/en/latest/boards/atmelavr/attiny261.html +++ b/en/latest/boards/atmelavr/attiny261.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny261 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny43.html b/en/latest/boards/atmelavr/attiny43.html index b78a245bec..58dc3ff32c 100644 --- a/en/latest/boards/atmelavr/attiny43.html +++ b/en/latest/boards/atmelavr/attiny43.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny43U — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny4313.html b/en/latest/boards/atmelavr/attiny4313.html index 19cf12e8bc..79349c07e8 100644 --- a/en/latest/boards/atmelavr/attiny4313.html +++ b/en/latest/boards/atmelavr/attiny4313.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny4313 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny44.html b/en/latest/boards/atmelavr/attiny44.html index e4c268b8a9..2c8b48b51e 100644 --- a/en/latest/boards/atmelavr/attiny44.html +++ b/en/latest/boards/atmelavr/attiny44.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny44 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny441.html b/en/latest/boards/atmelavr/attiny441.html index 512757d87e..ce8bd99cb5 100644 --- a/en/latest/boards/atmelavr/attiny441.html +++ b/en/latest/boards/atmelavr/attiny441.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny441 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny45.html b/en/latest/boards/atmelavr/attiny45.html index d986d2cf11..88fbd6fc57 100644 --- a/en/latest/boards/atmelavr/attiny45.html +++ b/en/latest/boards/atmelavr/attiny45.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny45 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny461.html b/en/latest/boards/atmelavr/attiny461.html index efcfa229d8..b2dafde1c8 100644 --- a/en/latest/boards/atmelavr/attiny461.html +++ b/en/latest/boards/atmelavr/attiny461.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny461 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny48.html b/en/latest/boards/atmelavr/attiny48.html index f7052e784b..c75ea3c360 100644 --- a/en/latest/boards/atmelavr/attiny48.html +++ b/en/latest/boards/atmelavr/attiny48.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny828.html b/en/latest/boards/atmelavr/attiny828.html index 34bbf20c4b..a458e8ab6e 100644 --- a/en/latest/boards/atmelavr/attiny828.html +++ b/en/latest/boards/atmelavr/attiny828.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny828 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny84.html b/en/latest/boards/atmelavr/attiny84.html index 68ea0c22eb..ca1d53ffee 100644 --- a/en/latest/boards/atmelavr/attiny84.html +++ b/en/latest/boards/atmelavr/attiny84.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny84 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny841.html b/en/latest/boards/atmelavr/attiny841.html index ec383762ae..162e09394f 100644 --- a/en/latest/boards/atmelavr/attiny841.html +++ b/en/latest/boards/atmelavr/attiny841.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny841 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny85.html b/en/latest/boards/atmelavr/attiny85.html index 5411973199..47de1ad63c 100644 --- a/en/latest/boards/atmelavr/attiny85.html +++ b/en/latest/boards/atmelavr/attiny85.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny85 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny861.html b/en/latest/boards/atmelavr/attiny861.html index 89cb414690..8f38567b85 100644 --- a/en/latest/boards/atmelavr/attiny861.html +++ b/en/latest/boards/atmelavr/attiny861.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny861 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny87.html b/en/latest/boards/atmelavr/attiny87.html index dd731d823f..47402d4762 100644 --- a/en/latest/boards/atmelavr/attiny87.html +++ b/en/latest/boards/atmelavr/attiny87.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny87 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/attiny88.html b/en/latest/boards/atmelavr/attiny88.html index 521e4d1418..99615d5739 100644 --- a/en/latest/boards/atmelavr/attiny88.html +++ b/en/latest/boards/atmelavr/attiny88.html @@ -1,28 +1,35 @@ + + + + + + Generic ATtiny88 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/blend.html b/en/latest/boards/atmelavr/blend.html index e48ebbe5cd..3e954b8600 100644 --- a/en/latest/boards/atmelavr/blend.html +++ b/en/latest/boards/atmelavr/blend.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab Blend — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/blendmicro16.html b/en/latest/boards/atmelavr/blendmicro16.html index 13cef7b99b..8535b265e5 100644 --- a/en/latest/boards/atmelavr/blendmicro16.html +++ b/en/latest/boards/atmelavr/blendmicro16.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab Blend Micro 3.3V/16MHz (overclock) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/blendmicro8.html b/en/latest/boards/atmelavr/blendmicro8.html index aa62101b89..d6fe7338fa 100644 --- a/en/latest/boards/atmelavr/blendmicro8.html +++ b/en/latest/boards/atmelavr/blendmicro8.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab Blend Micro 3.3V/8MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/bluefruitmicro.html b/en/latest/boards/atmelavr/bluefruitmicro.html index ad16131c56..a96c732f54 100644 --- a/en/latest/boards/atmelavr/bluefruitmicro.html +++ b/en/latest/boards/atmelavr/bluefruitmicro.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Bluefruit Micro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/bob3.html b/en/latest/boards/atmelavr/bob3.html index 227f504716..e56d2e90f1 100644 --- a/en/latest/boards/atmelavr/bob3.html +++ b/en/latest/boards/atmelavr/bob3.html @@ -1,28 +1,35 @@ + + + + + + nicai-systems BOB3 coding bot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/btatmega168.html b/en/latest/boards/atmelavr/btatmega168.html index 72e6aa973e..138c129377 100644 --- a/en/latest/boards/atmelavr/btatmega168.html +++ b/en/latest/boards/atmelavr/btatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino BT ATmega168 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/btatmega328.html b/en/latest/boards/atmelavr/btatmega328.html index 449ac3f413..99d23c0b9d 100644 --- a/en/latest/boards/atmelavr/btatmega328.html +++ b/en/latest/boards/atmelavr/btatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino BT ATmega328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/chiwawa.html b/en/latest/boards/atmelavr/chiwawa.html index af0818c947..ab0cc27aa4 100644 --- a/en/latest/boards/atmelavr/chiwawa.html +++ b/en/latest/boards/atmelavr/chiwawa.html @@ -1,28 +1,35 @@ + + + + + + Arduino Industrial 101 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/circuitplay_classic.html b/en/latest/boards/atmelavr/circuitplay_classic.html index 5de58f19b6..fcb9c07de6 100644 --- a/en/latest/boards/atmelavr/circuitplay_classic.html +++ b/en/latest/boards/atmelavr/circuitplay_classic.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Circuit Playground Classic — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/controllino_maxi.html b/en/latest/boards/atmelavr/controllino_maxi.html index fedc4ed2a8..1ff20e465f 100644 --- a/en/latest/boards/atmelavr/controllino_maxi.html +++ b/en/latest/boards/atmelavr/controllino_maxi.html @@ -1,28 +1,35 @@ + + + + + + Controllino Maxi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/controllino_maxi_automation.html b/en/latest/boards/atmelavr/controllino_maxi_automation.html index f4e9016bff..d84c548858 100644 --- a/en/latest/boards/atmelavr/controllino_maxi_automation.html +++ b/en/latest/boards/atmelavr/controllino_maxi_automation.html @@ -1,28 +1,35 @@ + + + + + + Controllino Maxi Automation — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/controllino_mega.html b/en/latest/boards/atmelavr/controllino_mega.html index 2acb688f6d..5eb814a1bd 100644 --- a/en/latest/boards/atmelavr/controllino_mega.html +++ b/en/latest/boards/atmelavr/controllino_mega.html @@ -1,28 +1,35 @@ + + + + + + Controllino Mega — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/controllino_mini.html b/en/latest/boards/atmelavr/controllino_mini.html index dd5554258a..09eaa5148d 100644 --- a/en/latest/boards/atmelavr/controllino_mini.html +++ b/en/latest/boards/atmelavr/controllino_mini.html @@ -1,28 +1,35 @@ + + + + + + Controllino Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/diecimilaatmega168.html b/en/latest/boards/atmelavr/diecimilaatmega168.html index 8d2914d579..e802d08d63 100644 --- a/en/latest/boards/atmelavr/diecimilaatmega168.html +++ b/en/latest/boards/atmelavr/diecimilaatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino Duemilanove or Diecimila ATmega168 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/diecimilaatmega328.html b/en/latest/boards/atmelavr/diecimilaatmega328.html index 27f7a654da..b39465bcdc 100644 --- a/en/latest/boards/atmelavr/diecimilaatmega328.html +++ b/en/latest/boards/atmelavr/diecimilaatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino Duemilanove or Diecimila ATmega328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/digispark-pro.html b/en/latest/boards/atmelavr/digispark-pro.html index dd5e89f8d4..9565f23fb3 100644 --- a/en/latest/boards/atmelavr/digispark-pro.html +++ b/en/latest/boards/atmelavr/digispark-pro.html @@ -1,28 +1,35 @@ + + + + + + Digispark Pro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/digispark-pro32.html b/en/latest/boards/atmelavr/digispark-pro32.html index 7958ff3410..8a4ec017f3 100644 --- a/en/latest/boards/atmelavr/digispark-pro32.html +++ b/en/latest/boards/atmelavr/digispark-pro32.html @@ -1,28 +1,35 @@ + + + + + + Digispark Pro (32 byte buffer) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/digispark-pro64.html b/en/latest/boards/atmelavr/digispark-pro64.html index 05c7a47d07..4ae4c98604 100644 --- a/en/latest/boards/atmelavr/digispark-pro64.html +++ b/en/latest/boards/atmelavr/digispark-pro64.html @@ -1,28 +1,35 @@ + + + + + + Digispark Pro (16 MHz) (64 byte buffer) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/digispark-tiny.html b/en/latest/boards/atmelavr/digispark-tiny.html index 94fbfe7cd2..8f25ffd12d 100644 --- a/en/latest/boards/atmelavr/digispark-tiny.html +++ b/en/latest/boards/atmelavr/digispark-tiny.html @@ -1,28 +1,35 @@ + + + + + + Digispark USB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/dwenguino.html b/en/latest/boards/atmelavr/dwenguino.html index 14ea04f099..b3b82c7b55 100644 --- a/en/latest/boards/atmelavr/dwenguino.html +++ b/en/latest/boards/atmelavr/dwenguino.html @@ -1,28 +1,35 @@ + + + + + + Dwenguino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/elektor_uno_r4.html b/en/latest/boards/atmelavr/elektor_uno_r4.html index 1af17730c6..fbfe10a1c1 100644 --- a/en/latest/boards/atmelavr/elektor_uno_r4.html +++ b/en/latest/boards/atmelavr/elektor_uno_r4.html @@ -1,28 +1,35 @@ + + + + + + Elektor Uno R4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/emonpi.html b/en/latest/boards/atmelavr/emonpi.html index 9ede0f756f..f8022cce66 100644 --- a/en/latest/boards/atmelavr/emonpi.html +++ b/en/latest/boards/atmelavr/emonpi.html @@ -1,28 +1,35 @@ + + + + + + OpenEnergyMonitor emonPi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/engduinov3.html b/en/latest/boards/atmelavr/engduinov3.html index 8e82bf464e..7968ce22f0 100644 --- a/en/latest/boards/atmelavr/engduinov3.html +++ b/en/latest/boards/atmelavr/engduinov3.html @@ -1,28 +1,35 @@ + + + + + + Engduino 3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/esplora.html b/en/latest/boards/atmelavr/esplora.html index 9ede5dd492..34df8c804e 100644 --- a/en/latest/boards/atmelavr/esplora.html +++ b/en/latest/boards/atmelavr/esplora.html @@ -1,28 +1,35 @@ + + + + + + Arduino Esplora — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ethernet.html b/en/latest/boards/atmelavr/ethernet.html index f509514626..42ef7853c9 100644 --- a/en/latest/boards/atmelavr/ethernet.html +++ b/en/latest/boards/atmelavr/ethernet.html @@ -1,28 +1,35 @@ + + + + + + Arduino Ethernet — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/feather328p.html b/en/latest/boards/atmelavr/feather328p.html index 6943f20c6b..1b3c248426 100644 --- a/en/latest/boards/atmelavr/feather328p.html +++ b/en/latest/boards/atmelavr/feather328p.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather 328P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/feather32u4.html b/en/latest/boards/atmelavr/feather32u4.html index a4fcb25abb..28f7d944f5 100644 --- a/en/latest/boards/atmelavr/feather32u4.html +++ b/en/latest/boards/atmelavr/feather32u4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather 32u4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/fio.html b/en/latest/boards/atmelavr/fio.html index 5306e62532..6aa1ae157c 100644 --- a/en/latest/boards/atmelavr/fio.html +++ b/en/latest/boards/atmelavr/fio.html @@ -1,28 +1,35 @@ + + + + + + Arduino Fio — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/flora8.html b/en/latest/boards/atmelavr/flora8.html index 54c649458e..f19a578039 100644 --- a/en/latest/boards/atmelavr/flora8.html +++ b/en/latest/boards/atmelavr/flora8.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Flora — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/ftduino.html b/en/latest/boards/atmelavr/ftduino.html index 13b63a6cde..2464ca4ed2 100644 --- a/en/latest/boards/atmelavr/ftduino.html +++ b/en/latest/boards/atmelavr/ftduino.html @@ -1,28 +1,35 @@ + + + + + + ftDuino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/fysetc_f6_13.html b/en/latest/boards/atmelavr/fysetc_f6_13.html index 0f9f18d11b..5a9490e36f 100644 --- a/en/latest/boards/atmelavr/fysetc_f6_13.html +++ b/en/latest/boards/atmelavr/fysetc_f6_13.html @@ -1,28 +1,35 @@ + + + + + + FYSETC F6 V1.3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/gemma.html b/en/latest/boards/atmelavr/gemma.html index 53c8bb1b4d..8949938810 100644 --- a/en/latest/boards/atmelavr/gemma.html +++ b/en/latest/boards/atmelavr/gemma.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Gemma — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/itsybitsy32u4_3V.html b/en/latest/boards/atmelavr/itsybitsy32u4_3V.html index 4bae7a55b1..847363d548 100644 --- a/en/latest/boards/atmelavr/itsybitsy32u4_3V.html +++ b/en/latest/boards/atmelavr/itsybitsy32u4_3V.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ItsyBitsy 3V/8MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/itsybitsy32u4_5V.html b/en/latest/boards/atmelavr/itsybitsy32u4_5V.html index f33b6161d5..a9e6d03e64 100644 --- a/en/latest/boards/atmelavr/itsybitsy32u4_5V.html +++ b/en/latest/boards/atmelavr/itsybitsy32u4_5V.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ItsyBitsy 5V/16MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/leonardo.html b/en/latest/boards/atmelavr/leonardo.html index 7d7f7f96cf..cdfb6c055c 100644 --- a/en/latest/boards/atmelavr/leonardo.html +++ b/en/latest/boards/atmelavr/leonardo.html @@ -1,28 +1,35 @@ + + + + + + Arduino Leonardo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/leonardoeth.html b/en/latest/boards/atmelavr/leonardoeth.html index a90b8128de..71c26a7351 100644 --- a/en/latest/boards/atmelavr/leonardoeth.html +++ b/en/latest/boards/atmelavr/leonardoeth.html @@ -1,28 +1,35 @@ + + + + + + Arduino Leonardo ETH — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/lightblue-bean.html b/en/latest/boards/atmelavr/lightblue-bean.html index db7023b487..d62a8b3b1d 100644 --- a/en/latest/boards/atmelavr/lightblue-bean.html +++ b/en/latest/boards/atmelavr/lightblue-bean.html @@ -1,28 +1,35 @@ + + + + + + LightBlue Bean — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/lightblue-beanplus.html b/en/latest/boards/atmelavr/lightblue-beanplus.html index 2264d90406..c0e681ccab 100644 --- a/en/latest/boards/atmelavr/lightblue-beanplus.html +++ b/en/latest/boards/atmelavr/lightblue-beanplus.html @@ -1,28 +1,35 @@ + + + + + + LightBlue Bean+ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/lightup.html b/en/latest/boards/atmelavr/lightup.html index 0d601d251c..830d5bab75 100644 --- a/en/latest/boards/atmelavr/lightup.html +++ b/en/latest/boards/atmelavr/lightup.html @@ -1,28 +1,35 @@ + + + + + + LightUp — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/lilypadatmega168.html b/en/latest/boards/atmelavr/lilypadatmega168.html index 002f34684f..70aa31880f 100644 --- a/en/latest/boards/atmelavr/lilypadatmega168.html +++ b/en/latest/boards/atmelavr/lilypadatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino LilyPad ATmega168 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/lilypadatmega328.html b/en/latest/boards/atmelavr/lilypadatmega328.html index 8b5b303f35..b93f6163be 100644 --- a/en/latest/boards/atmelavr/lilypadatmega328.html +++ b/en/latest/boards/atmelavr/lilypadatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino LilyPad ATmega328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/lora32u4II.html b/en/latest/boards/atmelavr/lora32u4II.html index 0ce4f273f7..b50eb105a7 100644 --- a/en/latest/boards/atmelavr/lora32u4II.html +++ b/en/latest/boards/atmelavr/lora32u4II.html @@ -1,28 +1,35 @@ + + + + + + LoRa32u4II (868-915MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/mayfly.html b/en/latest/boards/atmelavr/mayfly.html index 28b403fddc..d852ab07ab 100644 --- a/en/latest/boards/atmelavr/mayfly.html +++ b/en/latest/boards/atmelavr/mayfly.html @@ -1,28 +1,35 @@ + + + + + + EnviroDIY Mayfly — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/megaADK.html b/en/latest/boards/atmelavr/megaADK.html index 202c486584..993163924e 100644 --- a/en/latest/boards/atmelavr/megaADK.html +++ b/en/latest/boards/atmelavr/megaADK.html @@ -1,28 +1,35 @@ + + + + + + Arduino Mega ADK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/megaatmega1280.html b/en/latest/boards/atmelavr/megaatmega1280.html index c33b798f73..bd5b9e05d8 100644 --- a/en/latest/boards/atmelavr/megaatmega1280.html +++ b/en/latest/boards/atmelavr/megaatmega1280.html @@ -1,28 +1,35 @@ + + + + + + Arduino Mega or Mega 2560 ATmega1280 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/megaatmega2560.html b/en/latest/boards/atmelavr/megaatmega2560.html index 3444c2722b..69fad4da9f 100644 --- a/en/latest/boards/atmelavr/megaatmega2560.html +++ b/en/latest/boards/atmelavr/megaatmega2560.html @@ -1,28 +1,35 @@ + + + + + + Arduino Mega or Mega 2560 ATmega2560 (Mega 2560) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/metro.html b/en/latest/boards/atmelavr/metro.html index 43f532d0b0..dce4e0910c 100644 --- a/en/latest/boards/atmelavr/metro.html +++ b/en/latest/boards/atmelavr/metro.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Metro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/micro.html b/en/latest/boards/atmelavr/micro.html index f9eb81e8fe..44bd92cbbf 100644 --- a/en/latest/boards/atmelavr/micro.html +++ b/en/latest/boards/atmelavr/micro.html @@ -1,28 +1,35 @@ + + + + + + Arduino Micro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/mightyhat.html b/en/latest/boards/atmelavr/mightyhat.html index 0ef18ba197..1d78d791c7 100644 --- a/en/latest/boards/atmelavr/mightyhat.html +++ b/en/latest/boards/atmelavr/mightyhat.html @@ -1,28 +1,35 @@ + + + + + + LowPowerLab MightyHat — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/miniatmega168.html b/en/latest/boards/atmelavr/miniatmega168.html index 0273132eda..c02d1fe7e1 100644 --- a/en/latest/boards/atmelavr/miniatmega168.html +++ b/en/latest/boards/atmelavr/miniatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino Mini ATmega168 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/miniatmega328.html b/en/latest/boards/atmelavr/miniatmega328.html index c9400afdaa..4076e7faa8 100644 --- a/en/latest/boards/atmelavr/miniatmega328.html +++ b/en/latest/boards/atmelavr/miniatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino Mini ATmega328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/miniwireless.html b/en/latest/boards/atmelavr/miniwireless.html index 5e40a7460f..7db59aa754 100644 --- a/en/latest/boards/atmelavr/miniwireless.html +++ b/en/latest/boards/atmelavr/miniwireless.html @@ -1,28 +1,35 @@ + + + + + + Anarduino MiniWireless — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/moteino.html b/en/latest/boards/atmelavr/moteino.html index fb4fa45d9d..456f735472 100644 --- a/en/latest/boards/atmelavr/moteino.html +++ b/en/latest/boards/atmelavr/moteino.html @@ -1,28 +1,35 @@ + + + + + + LowPowerLab Moteino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/moteino8mhz.html b/en/latest/boards/atmelavr/moteino8mhz.html index 6dea06c817..4a381abc72 100644 --- a/en/latest/boards/atmelavr/moteino8mhz.html +++ b/en/latest/boards/atmelavr/moteino8mhz.html @@ -1,28 +1,35 @@ + + + + + + LowPowerLab Moteino (8Mhz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/moteinomega.html b/en/latest/boards/atmelavr/moteinomega.html index 7463a2bfda..3be653d7e2 100644 --- a/en/latest/boards/atmelavr/moteinomega.html +++ b/en/latest/boards/atmelavr/moteinomega.html @@ -1,28 +1,35 @@ + + + + + + LowPowerLab MoteinoMEGA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/nanoatmega168.html b/en/latest/boards/atmelavr/nanoatmega168.html index ae5dd83fd7..3698ef9dc6 100644 --- a/en/latest/boards/atmelavr/nanoatmega168.html +++ b/en/latest/boards/atmelavr/nanoatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano ATmega168 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/nanoatmega328.html b/en/latest/boards/atmelavr/nanoatmega328.html index 52658d1cd4..814c400a4b 100644 --- a/en/latest/boards/atmelavr/nanoatmega328.html +++ b/en/latest/boards/atmelavr/nanoatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano ATmega328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/nanoatmega328new.html b/en/latest/boards/atmelavr/nanoatmega328new.html index 6c08c17753..2ddcd78905 100644 --- a/en/latest/boards/atmelavr/nanoatmega328new.html +++ b/en/latest/boards/atmelavr/nanoatmega328new.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano ATmega328 (New Bootloader) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/nibo2.html b/en/latest/boards/atmelavr/nibo2.html index 441005b927..740405c9e2 100644 --- a/en/latest/boards/atmelavr/nibo2.html +++ b/en/latest/boards/atmelavr/nibo2.html @@ -1,28 +1,35 @@ + + + + + + nicai-systems NIBO 2 robot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/nibobee.html b/en/latest/boards/atmelavr/nibobee.html index fdec8c234d..ff7b568e9b 100644 --- a/en/latest/boards/atmelavr/nibobee.html +++ b/en/latest/boards/atmelavr/nibobee.html @@ -1,28 +1,35 @@ + + + + + + nicai-systems NIBObee robot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/nibobee_1284.html b/en/latest/boards/atmelavr/nibobee_1284.html index dd99ed346a..0846a4d31e 100644 --- a/en/latest/boards/atmelavr/nibobee_1284.html +++ b/en/latest/boards/atmelavr/nibobee_1284.html @@ -1,28 +1,35 @@ + + + + + + nicai-systems NIBObee robot with Tuning Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/niboburger.html b/en/latest/boards/atmelavr/niboburger.html index e1a64a5b08..fb4a8bc4c6 100644 --- a/en/latest/boards/atmelavr/niboburger.html +++ b/en/latest/boards/atmelavr/niboburger.html @@ -1,28 +1,35 @@ + + + + + + nicai-systems NIBO burger robot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/niboburger_1284.html b/en/latest/boards/atmelavr/niboburger_1284.html index decaae5769..a094ffca58 100644 --- a/en/latest/boards/atmelavr/niboburger_1284.html +++ b/en/latest/boards/atmelavr/niboburger_1284.html @@ -1,28 +1,35 @@ + + + + + + nicai-systems NIBO burger robot with Tuning Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/one.html b/en/latest/boards/atmelavr/one.html index dfa19de08a..d047e05c38 100644 --- a/en/latest/boards/atmelavr/one.html +++ b/en/latest/boards/atmelavr/one.html @@ -1,28 +1,35 @@ + + + + + + Linino One — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/panStampAVR.html b/en/latest/boards/atmelavr/panStampAVR.html index ea44b03541..17531ea89e 100644 --- a/en/latest/boards/atmelavr/panStampAVR.html +++ b/en/latest/boards/atmelavr/panStampAVR.html @@ -1,28 +1,35 @@ + + + + + + PanStamp AVR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/pinoccio.html b/en/latest/boards/atmelavr/pinoccio.html index e9b0d7a7e6..c38e1a44aa 100644 --- a/en/latest/boards/atmelavr/pinoccio.html +++ b/en/latest/boards/atmelavr/pinoccio.html @@ -1,28 +1,35 @@ + + + + + + Pinoccio Scout — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -636,18 +643,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/pro16MHzatmega168.html b/en/latest/boards/atmelavr/pro16MHzatmega168.html index ae095ea584..bce0caa739 100644 --- a/en/latest/boards/atmelavr/pro16MHzatmega168.html +++ b/en/latest/boards/atmelavr/pro16MHzatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino Pro or Pro Mini ATmega168 (5V, 16 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/pro16MHzatmega328.html b/en/latest/boards/atmelavr/pro16MHzatmega328.html index e18cd8f004..14098a1538 100644 --- a/en/latest/boards/atmelavr/pro16MHzatmega328.html +++ b/en/latest/boards/atmelavr/pro16MHzatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino Pro or Pro Mini ATmega328 (5V, 16 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/pro8MHzatmega168.html b/en/latest/boards/atmelavr/pro8MHzatmega168.html index be2c78ec65..49289a80b8 100644 --- a/en/latest/boards/atmelavr/pro8MHzatmega168.html +++ b/en/latest/boards/atmelavr/pro8MHzatmega168.html @@ -1,28 +1,35 @@ + + + + + + Arduino Pro or Pro Mini ATmega168 (3.3V, 8 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/pro8MHzatmega328.html b/en/latest/boards/atmelavr/pro8MHzatmega328.html index 10bd6d133f..0e9734a4ce 100644 --- a/en/latest/boards/atmelavr/pro8MHzatmega328.html +++ b/en/latest/boards/atmelavr/pro8MHzatmega328.html @@ -1,28 +1,35 @@ + + + + + + Arduino Pro or Pro Mini ATmega328 (3.3V, 8 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/protrinket3.html b/en/latest/boards/atmelavr/protrinket3.html index 9b3c32ac14..2d06756936 100644 --- a/en/latest/boards/atmelavr/protrinket3.html +++ b/en/latest/boards/atmelavr/protrinket3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Pro Trinket 3V/12MHz (USB) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/protrinket3ftdi.html b/en/latest/boards/atmelavr/protrinket3ftdi.html index e4578bbe81..a5cff7f123 100644 --- a/en/latest/boards/atmelavr/protrinket3ftdi.html +++ b/en/latest/boards/atmelavr/protrinket3ftdi.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Pro Trinket 3V/12MHz (FTDI) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/protrinket5.html b/en/latest/boards/atmelavr/protrinket5.html index 5cebd2b41e..1b424b28ae 100644 --- a/en/latest/boards/atmelavr/protrinket5.html +++ b/en/latest/boards/atmelavr/protrinket5.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Pro Trinket 5V/16MHz (USB) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/protrinket5ftdi.html b/en/latest/boards/atmelavr/protrinket5ftdi.html index 0ba90c747a..ae1800fbcd 100644 --- a/en/latest/boards/atmelavr/protrinket5ftdi.html +++ b/en/latest/boards/atmelavr/protrinket5ftdi.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Pro Trinket 5V/16MHz (FTDI) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/prusa_mm_control.html b/en/latest/boards/atmelavr/prusa_mm_control.html index 912381d77c..7ba750630e 100644 --- a/en/latest/boards/atmelavr/prusa_mm_control.html +++ b/en/latest/boards/atmelavr/prusa_mm_control.html @@ -1,28 +1,35 @@ + + + + + + Original Prusa i3 MK3 Multi Material 2.0 Upgrade — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/prusa_rambo.html b/en/latest/boards/atmelavr/prusa_rambo.html index f7eaaf8553..1e321f59a5 100644 --- a/en/latest/boards/atmelavr/prusa_rambo.html +++ b/en/latest/boards/atmelavr/prusa_rambo.html @@ -1,28 +1,35 @@ + + + + + + Prusa RAMBo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/quirkbot.html b/en/latest/boards/atmelavr/quirkbot.html index 7fdb977c76..1497425793 100644 --- a/en/latest/boards/atmelavr/quirkbot.html +++ b/en/latest/boards/atmelavr/quirkbot.html @@ -1,28 +1,35 @@ + + + + + + Quirkbot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/raspduino.html b/en/latest/boards/atmelavr/raspduino.html index 718f9f510a..f00f0f0543 100644 --- a/en/latest/boards/atmelavr/raspduino.html +++ b/en/latest/boards/atmelavr/raspduino.html @@ -1,28 +1,35 @@ + + + + + + BitWizard Raspduino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/reprap_rambo.html b/en/latest/boards/atmelavr/reprap_rambo.html index 10077e4f05..410795d677 100644 --- a/en/latest/boards/atmelavr/reprap_rambo.html +++ b/en/latest/boards/atmelavr/reprap_rambo.html @@ -1,28 +1,35 @@ + + + + + + RepRap RAMBo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/robotControl.html b/en/latest/boards/atmelavr/robotControl.html index af794671eb..1936f04d01 100644 --- a/en/latest/boards/atmelavr/robotControl.html +++ b/en/latest/boards/atmelavr/robotControl.html @@ -1,28 +1,35 @@ + + + + + + Arduino Robot Control — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/robotMotor.html b/en/latest/boards/atmelavr/robotMotor.html index f342fd9a4a..19f2ee3e12 100644 --- a/en/latest/boards/atmelavr/robotMotor.html +++ b/en/latest/boards/atmelavr/robotMotor.html @@ -1,28 +1,35 @@ + + + + + + Arduino Robot Motor — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sanguino_atmega1284_8m.html b/en/latest/boards/atmelavr/sanguino_atmega1284_8m.html index 957c781bd4..466c0e2c23 100644 --- a/en/latest/boards/atmelavr/sanguino_atmega1284_8m.html +++ b/en/latest/boards/atmelavr/sanguino_atmega1284_8m.html @@ -1,28 +1,35 @@ + + + + + + Sanguino ATmega1284p (8MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sanguino_atmega1284p.html b/en/latest/boards/atmelavr/sanguino_atmega1284p.html index dff2ff15f2..db656871b1 100644 --- a/en/latest/boards/atmelavr/sanguino_atmega1284p.html +++ b/en/latest/boards/atmelavr/sanguino_atmega1284p.html @@ -1,28 +1,35 @@ + + + + + + Sanguino ATmega1284p (16MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sanguino_atmega644.html b/en/latest/boards/atmelavr/sanguino_atmega644.html index 1b440350d7..46bcf53679 100644 --- a/en/latest/boards/atmelavr/sanguino_atmega644.html +++ b/en/latest/boards/atmelavr/sanguino_atmega644.html @@ -1,28 +1,35 @@ + + + + + + Sanguino ATmega644 or ATmega644A (16 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sanguino_atmega644_8m.html b/en/latest/boards/atmelavr/sanguino_atmega644_8m.html index 5b7179fe55..f5b724ee5b 100644 --- a/en/latest/boards/atmelavr/sanguino_atmega644_8m.html +++ b/en/latest/boards/atmelavr/sanguino_atmega644_8m.html @@ -1,28 +1,35 @@ + + + + + + Sanguino ATmega644 or ATmega644A (8 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sanguino_atmega644p.html b/en/latest/boards/atmelavr/sanguino_atmega644p.html index d3956ae8d1..1d0c850592 100644 --- a/en/latest/boards/atmelavr/sanguino_atmega644p.html +++ b/en/latest/boards/atmelavr/sanguino_atmega644p.html @@ -1,28 +1,35 @@ + + + + + + Sanguino ATmega644P or ATmega644PA (16 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sanguino_atmega644p_8m.html b/en/latest/boards/atmelavr/sanguino_atmega644p_8m.html index 06fee1967f..9c2c9f6dae 100644 --- a/en/latest/boards/atmelavr/sanguino_atmega644p_8m.html +++ b/en/latest/boards/atmelavr/sanguino_atmega644p_8m.html @@ -1,28 +1,35 @@ + + + + + + Sanguino ATmega644P or ATmega644PA (8 MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/seeeduino.html b/en/latest/boards/atmelavr/seeeduino.html index c4665289c4..b2bf4cdf60 100644 --- a/en/latest/boards/atmelavr/seeeduino.html +++ b/en/latest/boards/atmelavr/seeeduino.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sleepypi.html b/en/latest/boards/atmelavr/sleepypi.html index a273f8a30d..639c969ae0 100644 --- a/en/latest/boards/atmelavr/sleepypi.html +++ b/en/latest/boards/atmelavr/sleepypi.html @@ -1,28 +1,35 @@ + + + + + + SpellFoundry Sleepy Pi 2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/smart7688.html b/en/latest/boards/atmelavr/smart7688.html index 638e95dca9..040c3a2560 100644 --- a/en/latest/boards/atmelavr/smart7688.html +++ b/en/latest/boards/atmelavr/smart7688.html @@ -1,28 +1,35 @@ + + + + + + LinkIt Smart 7688 Duo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sodaq_galora.html b/en/latest/boards/atmelavr/sodaq_galora.html index 53a25121da..56c4a82d07 100644 --- a/en/latest/boards/atmelavr/sodaq_galora.html +++ b/en/latest/boards/atmelavr/sodaq_galora.html @@ -1,28 +1,35 @@ + + + + + + SODAQ GaLoRa — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sodaq_mbili.html b/en/latest/boards/atmelavr/sodaq_mbili.html index fb0932dce4..78af41c210 100644 --- a/en/latest/boards/atmelavr/sodaq_mbili.html +++ b/en/latest/boards/atmelavr/sodaq_mbili.html @@ -1,28 +1,35 @@ + + + + + + SODAQ Mbili — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sodaq_moja.html b/en/latest/boards/atmelavr/sodaq_moja.html index cad882fa79..6c2901093b 100644 --- a/en/latest/boards/atmelavr/sodaq_moja.html +++ b/en/latest/boards/atmelavr/sodaq_moja.html @@ -1,28 +1,35 @@ + + + + + + SODAQ Moja — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sodaq_ndogo.html b/en/latest/boards/atmelavr/sodaq_ndogo.html index 2752088586..564852b3ce 100644 --- a/en/latest/boards/atmelavr/sodaq_ndogo.html +++ b/en/latest/boards/atmelavr/sodaq_ndogo.html @@ -1,28 +1,35 @@ + + + + + + SODAQ Ndogo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sodaq_tatu.html b/en/latest/boards/atmelavr/sodaq_tatu.html index 5b01775706..613bbe19c4 100644 --- a/en/latest/boards/atmelavr/sodaq_tatu.html +++ b/en/latest/boards/atmelavr/sodaq_tatu.html @@ -1,28 +1,35 @@ + + + + + + SODAQ Tatu — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_digitalsandbox.html b/en/latest/boards/atmelavr/sparkfun_digitalsandbox.html index e3987706da..fe4c85d072 100644 --- a/en/latest/boards/atmelavr/sparkfun_digitalsandbox.html +++ b/en/latest/boards/atmelavr/sparkfun_digitalsandbox.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Digital Sandbox — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_fiov3.html b/en/latest/boards/atmelavr/sparkfun_fiov3.html index 3af48c2548..92812341c6 100644 --- a/en/latest/boards/atmelavr/sparkfun_fiov3.html +++ b/en/latest/boards/atmelavr/sparkfun_fiov3.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Fio V3 3.3V/8MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_makeymakey.html b/en/latest/boards/atmelavr/sparkfun_makeymakey.html index e7eba86997..1553050378 100644 --- a/en/latest/boards/atmelavr/sparkfun_makeymakey.html +++ b/en/latest/boards/atmelavr/sparkfun_makeymakey.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Makey Makey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_megamini.html b/en/latest/boards/atmelavr/sparkfun_megamini.html index 2147ad2a47..b3e5385d70 100644 --- a/en/latest/boards/atmelavr/sparkfun_megamini.html +++ b/en/latest/boards/atmelavr/sparkfun_megamini.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Mega Pro Mini 3.3V — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_megapro16MHz.html b/en/latest/boards/atmelavr/sparkfun_megapro16MHz.html index d1ffabeaa0..d249aa6e8c 100644 --- a/en/latest/boards/atmelavr/sparkfun_megapro16MHz.html +++ b/en/latest/boards/atmelavr/sparkfun_megapro16MHz.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Mega Pro 5V/16MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_megapro8MHz.html b/en/latest/boards/atmelavr/sparkfun_megapro8MHz.html index a026b69b1a..15b9436fc2 100644 --- a/en/latest/boards/atmelavr/sparkfun_megapro8MHz.html +++ b/en/latest/boards/atmelavr/sparkfun_megapro8MHz.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Mega Pro 3.3V/8MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_promicro16.html b/en/latest/boards/atmelavr/sparkfun_promicro16.html index 347c25bc0e..441c5c0cf3 100644 --- a/en/latest/boards/atmelavr/sparkfun_promicro16.html +++ b/en/latest/boards/atmelavr/sparkfun_promicro16.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Pro Micro 5V/16MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_promicro8.html b/en/latest/boards/atmelavr/sparkfun_promicro8.html index 0b452efb38..756554b1df 100644 --- a/en/latest/boards/atmelavr/sparkfun_promicro8.html +++ b/en/latest/boards/atmelavr/sparkfun_promicro8.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Pro Micro 3.3V/8MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_qduinomini.html b/en/latest/boards/atmelavr/sparkfun_qduinomini.html index 0256b6f891..749b70113c 100644 --- a/en/latest/boards/atmelavr/sparkfun_qduinomini.html +++ b/en/latest/boards/atmelavr/sparkfun_qduinomini.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Qduino Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_redboard.html b/en/latest/boards/atmelavr/sparkfun_redboard.html index 3ea329d4d7..22643d97d6 100644 --- a/en/latest/boards/atmelavr/sparkfun_redboard.html +++ b/en/latest/boards/atmelavr/sparkfun_redboard.html @@ -1,28 +1,35 @@ + + + + + + SparkFun RedBoard — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_satmega128rfa1.html b/en/latest/boards/atmelavr/sparkfun_satmega128rfa1.html index 415a2daec8..b3ac6cec5c 100644 --- a/en/latest/boards/atmelavr/sparkfun_satmega128rfa1.html +++ b/en/latest/boards/atmelavr/sparkfun_satmega128rfa1.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ATmega128RFA1 Dev Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/sparkfun_serial7seg.html b/en/latest/boards/atmelavr/sparkfun_serial7seg.html index 19958adff2..76e9944e27 100644 --- a/en/latest/boards/atmelavr/sparkfun_serial7seg.html +++ b/en/latest/boards/atmelavr/sparkfun_serial7seg.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Serial 7-Segment Display — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/the_things_uno.html b/en/latest/boards/atmelavr/the_things_uno.html index 5e90d9782a..2eaff1d169 100644 --- a/en/latest/boards/atmelavr/the_things_uno.html +++ b/en/latest/boards/atmelavr/the_things_uno.html @@ -1,28 +1,35 @@ + + + + + + The Things Uno — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/tinyduino.html b/en/latest/boards/atmelavr/tinyduino.html index 96f05de206..fb351417a6 100644 --- a/en/latest/boards/atmelavr/tinyduino.html +++ b/en/latest/boards/atmelavr/tinyduino.html @@ -1,28 +1,35 @@ + + + + + + TinyCircuits TinyDuino Processor Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/tinylily.html b/en/latest/boards/atmelavr/tinylily.html index 24b78e3d73..5834d69732 100644 --- a/en/latest/boards/atmelavr/tinylily.html +++ b/en/latest/boards/atmelavr/tinylily.html @@ -1,28 +1,35 @@ + + + + + + TinyCircuits TinyLily Mini Processor — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/trinket3.html b/en/latest/boards/atmelavr/trinket3.html index 137f0355b5..a33e215563 100644 --- a/en/latest/boards/atmelavr/trinket3.html +++ b/en/latest/boards/atmelavr/trinket3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Trinket 3V/8MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/trinket5.html b/en/latest/boards/atmelavr/trinket5.html index 90e894c298..c5011882d2 100644 --- a/en/latest/boards/atmelavr/trinket5.html +++ b/en/latest/boards/atmelavr/trinket5.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Trinket 5V/16MHz — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/uno.html b/en/latest/boards/atmelavr/uno.html index b44c1091ce..d9340f37be 100644 --- a/en/latest/boards/atmelavr/uno.html +++ b/en/latest/boards/atmelavr/uno.html @@ -1,28 +1,35 @@ + + + + + + Arduino Uno — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/uno_mini.html b/en/latest/boards/atmelavr/uno_mini.html index 3e367b1553..5756e52a64 100644 --- a/en/latest/boards/atmelavr/uno_mini.html +++ b/en/latest/boards/atmelavr/uno_mini.html @@ -1,28 +1,35 @@ + + + + + + Arduino Uno Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/usbasp.html b/en/latest/boards/atmelavr/usbasp.html index 484cb75d77..3c7fed6e1a 100644 --- a/en/latest/boards/atmelavr/usbasp.html +++ b/en/latest/boards/atmelavr/usbasp.html @@ -1,28 +1,35 @@ + + + + + + USBasp stick — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/uview.html b/en/latest/boards/atmelavr/uview.html index 8c6c3604a3..ae63305ad6 100644 --- a/en/latest/boards/atmelavr/uview.html +++ b/en/latest/boards/atmelavr/uview.html @@ -1,28 +1,35 @@ + + + + + + SparkFun MicroView — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/whispernode.html b/en/latest/boards/atmelavr/whispernode.html index d5eedb00e2..5c348d8a7c 100644 --- a/en/latest/boards/atmelavr/whispernode.html +++ b/en/latest/boards/atmelavr/whispernode.html @@ -1,28 +1,35 @@ + + + + + + Talk2 Whisper Node — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/wildfirev2.html b/en/latest/boards/atmelavr/wildfirev2.html index 50044f9afb..22bf1736c5 100644 --- a/en/latest/boards/atmelavr/wildfirev2.html +++ b/en/latest/boards/atmelavr/wildfirev2.html @@ -1,28 +1,35 @@ + + + + + + Wicked Device WildFire V2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/wildfirev3.html b/en/latest/boards/atmelavr/wildfirev3.html index f18ff82007..7b5daff03e 100644 --- a/en/latest/boards/atmelavr/wildfirev3.html +++ b/en/latest/boards/atmelavr/wildfirev3.html @@ -1,28 +1,35 @@ + + + + + + Wicked Device WildFire V3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/yun.html b/en/latest/boards/atmelavr/yun.html index 6e2f3a248c..324e8d42c0 100644 --- a/en/latest/boards/atmelavr/yun.html +++ b/en/latest/boards/atmelavr/yun.html @@ -1,28 +1,35 @@ + + + + + + Arduino Yun — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/yunmini.html b/en/latest/boards/atmelavr/yunmini.html index a867c498b5..aadab15ebf 100644 --- a/en/latest/boards/atmelavr/yunmini.html +++ b/en/latest/boards/atmelavr/yunmini.html @@ -1,28 +1,35 @@ + + + + + + Arduino Yun Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelavr/zumbt328.html b/en/latest/boards/atmelavr/zumbt328.html index 793085ab3c..5e88d85410 100644 --- a/en/latest/boards/atmelavr/zumbt328.html +++ b/en/latest/boards/atmelavr/zumbt328.html @@ -1,28 +1,35 @@ + + + + + + BQ ZUM BT-328 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -663,18 +670,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega1608.html b/en/latest/boards/atmelmegaavr/ATmega1608.html index ec042cc5c9..dda39d5df4 100644 --- a/en/latest/boards/atmelmegaavr/ATmega1608.html +++ b/en/latest/boards/atmelmegaavr/ATmega1608.html @@ -1,28 +1,35 @@ + + + + + + ATmega1608 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega1609.html b/en/latest/boards/atmelmegaavr/ATmega1609.html index 0f7fbd4717..c2b0af2d50 100644 --- a/en/latest/boards/atmelmegaavr/ATmega1609.html +++ b/en/latest/boards/atmelmegaavr/ATmega1609.html @@ -1,28 +1,35 @@ + + + + + + ATmega1609 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega3208.html b/en/latest/boards/atmelmegaavr/ATmega3208.html index cdf7d66489..4ff00180e9 100644 --- a/en/latest/boards/atmelmegaavr/ATmega3208.html +++ b/en/latest/boards/atmelmegaavr/ATmega3208.html @@ -1,28 +1,35 @@ + + + + + + ATmega3208 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega3209.html b/en/latest/boards/atmelmegaavr/ATmega3209.html index cd93841792..0c6ae60b9a 100644 --- a/en/latest/boards/atmelmegaavr/ATmega3209.html +++ b/en/latest/boards/atmelmegaavr/ATmega3209.html @@ -1,28 +1,35 @@ + + + + + + ATmega3209 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega4808.html b/en/latest/boards/atmelmegaavr/ATmega4808.html index c63fbb8f2c..cf12fe5df3 100644 --- a/en/latest/boards/atmelmegaavr/ATmega4808.html +++ b/en/latest/boards/atmelmegaavr/ATmega4808.html @@ -1,28 +1,35 @@ + + + + + + ATmega4808 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega4809.html b/en/latest/boards/atmelmegaavr/ATmega4809.html index 49f01b4c5d..6bb733dcfe 100644 --- a/en/latest/boards/atmelmegaavr/ATmega4809.html +++ b/en/latest/boards/atmelmegaavr/ATmega4809.html @@ -1,28 +1,35 @@ + + + + + + ATmega4809 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega808.html b/en/latest/boards/atmelmegaavr/ATmega808.html index 9b5e93a664..f2aa373fa7 100644 --- a/en/latest/boards/atmelmegaavr/ATmega808.html +++ b/en/latest/boards/atmelmegaavr/ATmega808.html @@ -1,28 +1,35 @@ + + + + + + ATmega808 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATmega809.html b/en/latest/boards/atmelmegaavr/ATmega809.html index 9a84b2aeb0..6d1313292c 100644 --- a/en/latest/boards/atmelmegaavr/ATmega809.html +++ b/en/latest/boards/atmelmegaavr/ATmega809.html @@ -1,28 +1,35 @@ + + + + + + ATmega809 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1604.html b/en/latest/boards/atmelmegaavr/ATtiny1604.html index 5689a72216..ffa2ce1817 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1604.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1604.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1604 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1606.html b/en/latest/boards/atmelmegaavr/ATtiny1606.html index 770a9cdf59..8e3f1b3743 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1606.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1606.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1606 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1607.html b/en/latest/boards/atmelmegaavr/ATtiny1607.html index f8729afdd7..b4f52c42b8 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1607.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1607.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1607 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1614.html b/en/latest/boards/atmelmegaavr/ATtiny1614.html index cb3bc63d21..c2ffa6342a 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1614.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1614.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1614 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1616.html b/en/latest/boards/atmelmegaavr/ATtiny1616.html index 3d3f1656b5..508a189f78 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1616.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1616.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1616 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1617.html b/en/latest/boards/atmelmegaavr/ATtiny1617.html index b1195ee0f2..e4660213b0 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1617.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1617.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1617 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1624.html b/en/latest/boards/atmelmegaavr/ATtiny1624.html index da5408feb5..dfae151b89 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1624.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1624.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1624 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1626.html b/en/latest/boards/atmelmegaavr/ATtiny1626.html index 1fd0b2b703..0a3a5ab3bc 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1626.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1626.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1626 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny1627.html b/en/latest/boards/atmelmegaavr/ATtiny1627.html index 2487acaacc..14e0eee4cd 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny1627.html +++ b/en/latest/boards/atmelmegaavr/ATtiny1627.html @@ -1,28 +1,35 @@ + + + + + + ATtiny1627 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny202.html b/en/latest/boards/atmelmegaavr/ATtiny202.html index d064175093..eb88b64dd7 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny202.html +++ b/en/latest/boards/atmelmegaavr/ATtiny202.html @@ -1,28 +1,35 @@ + + + + + + ATtiny202 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny204.html b/en/latest/boards/atmelmegaavr/ATtiny204.html index 6ae187b4f3..4a02d8ad90 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny204.html +++ b/en/latest/boards/atmelmegaavr/ATtiny204.html @@ -1,28 +1,35 @@ + + + + + + ATtiny204 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny212.html b/en/latest/boards/atmelmegaavr/ATtiny212.html index 32cee5f992..fd3e43ed1e 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny212.html +++ b/en/latest/boards/atmelmegaavr/ATtiny212.html @@ -1,28 +1,35 @@ + + + + + + ATtiny212 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny214.html b/en/latest/boards/atmelmegaavr/ATtiny214.html index 0355720ac4..54b9dda34e 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny214.html +++ b/en/latest/boards/atmelmegaavr/ATtiny214.html @@ -1,28 +1,35 @@ + + + + + + ATtiny214 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny3216.html b/en/latest/boards/atmelmegaavr/ATtiny3216.html index 6fc3fe3421..0e3b480036 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny3216.html +++ b/en/latest/boards/atmelmegaavr/ATtiny3216.html @@ -1,28 +1,35 @@ + + + + + + ATtiny3216 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny3217.html b/en/latest/boards/atmelmegaavr/ATtiny3217.html index 7a3fa66375..d215149555 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny3217.html +++ b/en/latest/boards/atmelmegaavr/ATtiny3217.html @@ -1,28 +1,35 @@ + + + + + + ATtiny3217 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny3224.html b/en/latest/boards/atmelmegaavr/ATtiny3224.html index 5f65f765c9..0d0f0384df 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny3224.html +++ b/en/latest/boards/atmelmegaavr/ATtiny3224.html @@ -1,28 +1,35 @@ + + + + + + ATtiny3224 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny3226.html b/en/latest/boards/atmelmegaavr/ATtiny3226.html index 76b6852b02..3905ce9c55 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny3226.html +++ b/en/latest/boards/atmelmegaavr/ATtiny3226.html @@ -1,28 +1,35 @@ + + + + + + ATtiny3226 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny3227.html b/en/latest/boards/atmelmegaavr/ATtiny3227.html index 288c46d6c9..0bf28a0146 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny3227.html +++ b/en/latest/boards/atmelmegaavr/ATtiny3227.html @@ -1,28 +1,35 @@ + + + + + + ATtiny3227 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny402.html b/en/latest/boards/atmelmegaavr/ATtiny402.html index 2ec3fc51b4..e8b47cadfc 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny402.html +++ b/en/latest/boards/atmelmegaavr/ATtiny402.html @@ -1,28 +1,35 @@ + + + + + + ATtiny402 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny404.html b/en/latest/boards/atmelmegaavr/ATtiny404.html index b650159aef..7d894d4bb9 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny404.html +++ b/en/latest/boards/atmelmegaavr/ATtiny404.html @@ -1,28 +1,35 @@ + + + + + + ATtiny404 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny406.html b/en/latest/boards/atmelmegaavr/ATtiny406.html index f400884928..7fe5d7cf8b 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny406.html +++ b/en/latest/boards/atmelmegaavr/ATtiny406.html @@ -1,28 +1,35 @@ + + + + + + ATtiny406 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny412.html b/en/latest/boards/atmelmegaavr/ATtiny412.html index 445169c56f..0311d1ce76 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny412.html +++ b/en/latest/boards/atmelmegaavr/ATtiny412.html @@ -1,28 +1,35 @@ + + + + + + ATtiny412 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny414.html b/en/latest/boards/atmelmegaavr/ATtiny414.html index 9c77a0ed82..147bf31819 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny414.html +++ b/en/latest/boards/atmelmegaavr/ATtiny414.html @@ -1,28 +1,35 @@ + + + + + + ATtiny414 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny416.html b/en/latest/boards/atmelmegaavr/ATtiny416.html index c901bd6d12..7f2c7402d9 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny416.html +++ b/en/latest/boards/atmelmegaavr/ATtiny416.html @@ -1,28 +1,35 @@ + + + + + + ATtiny416 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny417.html b/en/latest/boards/atmelmegaavr/ATtiny417.html index 5088c93f63..b332e0ed40 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny417.html +++ b/en/latest/boards/atmelmegaavr/ATtiny417.html @@ -1,28 +1,35 @@ + + + + + + ATtiny417 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny424.html b/en/latest/boards/atmelmegaavr/ATtiny424.html index 9f46cffdcd..3b6b11ea31 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny424.html +++ b/en/latest/boards/atmelmegaavr/ATtiny424.html @@ -1,28 +1,35 @@ + + + + + + ATtiny424 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny426.html b/en/latest/boards/atmelmegaavr/ATtiny426.html index bc153acb85..ef9754a31d 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny426.html +++ b/en/latest/boards/atmelmegaavr/ATtiny426.html @@ -1,28 +1,35 @@ + + + + + + ATtiny426 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny427.html b/en/latest/boards/atmelmegaavr/ATtiny427.html index b1c5837fda..eb26868228 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny427.html +++ b/en/latest/boards/atmelmegaavr/ATtiny427.html @@ -1,28 +1,35 @@ + + + + + + ATtiny427 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny804.html b/en/latest/boards/atmelmegaavr/ATtiny804.html index c79f5958bf..fbf8863a13 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny804.html +++ b/en/latest/boards/atmelmegaavr/ATtiny804.html @@ -1,28 +1,35 @@ + + + + + + ATtiny804 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny806.html b/en/latest/boards/atmelmegaavr/ATtiny806.html index 6d846b3023..336ed799d3 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny806.html +++ b/en/latest/boards/atmelmegaavr/ATtiny806.html @@ -1,28 +1,35 @@ + + + + + + ATtiny806 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny807.html b/en/latest/boards/atmelmegaavr/ATtiny807.html index 6fd0129436..f2f967e15e 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny807.html +++ b/en/latest/boards/atmelmegaavr/ATtiny807.html @@ -1,28 +1,35 @@ + + + + + + ATtiny807 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny814.html b/en/latest/boards/atmelmegaavr/ATtiny814.html index e3fc7bb287..63a68b51fa 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny814.html +++ b/en/latest/boards/atmelmegaavr/ATtiny814.html @@ -1,28 +1,35 @@ + + + + + + ATtiny814 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny816.html b/en/latest/boards/atmelmegaavr/ATtiny816.html index b74aa39771..9af869cae5 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny816.html +++ b/en/latest/boards/atmelmegaavr/ATtiny816.html @@ -1,28 +1,35 @@ + + + + + + ATtiny816 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny817.html b/en/latest/boards/atmelmegaavr/ATtiny817.html index eb8e6ccaec..6456edd02f 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny817.html +++ b/en/latest/boards/atmelmegaavr/ATtiny817.html @@ -1,28 +1,35 @@ + + + + + + ATtiny817 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny824.html b/en/latest/boards/atmelmegaavr/ATtiny824.html index 0b810a18ee..f926dc12a1 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny824.html +++ b/en/latest/boards/atmelmegaavr/ATtiny824.html @@ -1,28 +1,35 @@ + + + + + + ATtiny824 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny826.html b/en/latest/boards/atmelmegaavr/ATtiny826.html index 569639f5ec..d9021ecdd2 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny826.html +++ b/en/latest/boards/atmelmegaavr/ATtiny826.html @@ -1,28 +1,35 @@ + + + + + + ATtiny826 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/ATtiny827.html b/en/latest/boards/atmelmegaavr/ATtiny827.html index fb10c51c57..3fc4964da7 100644 --- a/en/latest/boards/atmelmegaavr/ATtiny827.html +++ b/en/latest/boards/atmelmegaavr/ATtiny827.html @@ -1,28 +1,35 @@ + + + + + + ATtiny827 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DA28.html b/en/latest/boards/atmelmegaavr/AVR128DA28.html index 1fd816a559..b0856887c7 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DA28.html +++ b/en/latest/boards/atmelmegaavr/AVR128DA28.html @@ -1,28 +1,35 @@ + + + + + + AVR128DA28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DA32.html b/en/latest/boards/atmelmegaavr/AVR128DA32.html index 87d7c9bb9d..06da8eb7f8 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DA32.html +++ b/en/latest/boards/atmelmegaavr/AVR128DA32.html @@ -1,28 +1,35 @@ + + + + + + AVR128DA32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DA48.html b/en/latest/boards/atmelmegaavr/AVR128DA48.html index 5f81ed8c55..70ab7aaf03 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DA48.html +++ b/en/latest/boards/atmelmegaavr/AVR128DA48.html @@ -1,28 +1,35 @@ + + + + + + AVR128DA48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DA64.html b/en/latest/boards/atmelmegaavr/AVR128DA64.html index 897cd19dd7..ea50bf6f64 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DA64.html +++ b/en/latest/boards/atmelmegaavr/AVR128DA64.html @@ -1,28 +1,35 @@ + + + + + + AVR128DA64 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DB28.html b/en/latest/boards/atmelmegaavr/AVR128DB28.html index 0e70d438ca..6e9d856198 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DB28.html +++ b/en/latest/boards/atmelmegaavr/AVR128DB28.html @@ -1,28 +1,35 @@ + + + + + + AVR128DB28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DB32.html b/en/latest/boards/atmelmegaavr/AVR128DB32.html index 63c1b464de..dd38082878 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DB32.html +++ b/en/latest/boards/atmelmegaavr/AVR128DB32.html @@ -1,28 +1,35 @@ + + + + + + AVR128DB32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DB48.html b/en/latest/boards/atmelmegaavr/AVR128DB48.html index 2cf4a79535..592793ccb5 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DB48.html +++ b/en/latest/boards/atmelmegaavr/AVR128DB48.html @@ -1,28 +1,35 @@ + + + + + + AVR128DB48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR128DB64.html b/en/latest/boards/atmelmegaavr/AVR128DB64.html index 034d8fabb6..678826fbfb 100644 --- a/en/latest/boards/atmelmegaavr/AVR128DB64.html +++ b/en/latest/boards/atmelmegaavr/AVR128DB64.html @@ -1,28 +1,35 @@ + + + + + + AVR128DB64 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR32DA28.html b/en/latest/boards/atmelmegaavr/AVR32DA28.html index 8cca9304e3..aae7332164 100644 --- a/en/latest/boards/atmelmegaavr/AVR32DA28.html +++ b/en/latest/boards/atmelmegaavr/AVR32DA28.html @@ -1,28 +1,35 @@ + + + + + + AVR32DA28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR32DA32.html b/en/latest/boards/atmelmegaavr/AVR32DA32.html index 93378c0b09..0428c9cd08 100644 --- a/en/latest/boards/atmelmegaavr/AVR32DA32.html +++ b/en/latest/boards/atmelmegaavr/AVR32DA32.html @@ -1,28 +1,35 @@ + + + + + + AVR32DA32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR32DA48.html b/en/latest/boards/atmelmegaavr/AVR32DA48.html index 65e3ef4cb4..c57e13adf9 100644 --- a/en/latest/boards/atmelmegaavr/AVR32DA48.html +++ b/en/latest/boards/atmelmegaavr/AVR32DA48.html @@ -1,28 +1,35 @@ + + + + + + AVR32DA48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR32DB28.html b/en/latest/boards/atmelmegaavr/AVR32DB28.html index f961623a9e..55fe2f0c91 100644 --- a/en/latest/boards/atmelmegaavr/AVR32DB28.html +++ b/en/latest/boards/atmelmegaavr/AVR32DB28.html @@ -1,28 +1,35 @@ + + + + + + AVR32DB28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR32DB32.html b/en/latest/boards/atmelmegaavr/AVR32DB32.html index 5583af7f48..9581f31a7e 100644 --- a/en/latest/boards/atmelmegaavr/AVR32DB32.html +++ b/en/latest/boards/atmelmegaavr/AVR32DB32.html @@ -1,28 +1,35 @@ + + + + + + AVR32DB32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR32DB48.html b/en/latest/boards/atmelmegaavr/AVR32DB48.html index ebf3c7155e..038e92fd52 100644 --- a/en/latest/boards/atmelmegaavr/AVR32DB48.html +++ b/en/latest/boards/atmelmegaavr/AVR32DB48.html @@ -1,28 +1,35 @@ + + + + + + AVR32DB48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DA28.html b/en/latest/boards/atmelmegaavr/AVR64DA28.html index 1d1aaebdbb..a69bd171d6 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DA28.html +++ b/en/latest/boards/atmelmegaavr/AVR64DA28.html @@ -1,28 +1,35 @@ + + + + + + AVR64DA28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DA32.html b/en/latest/boards/atmelmegaavr/AVR64DA32.html index 77815a790e..373c1ef907 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DA32.html +++ b/en/latest/boards/atmelmegaavr/AVR64DA32.html @@ -1,28 +1,35 @@ + + + + + + AVR64DA32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DA48.html b/en/latest/boards/atmelmegaavr/AVR64DA48.html index 78efca61cf..e1baf0981a 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DA48.html +++ b/en/latest/boards/atmelmegaavr/AVR64DA48.html @@ -1,28 +1,35 @@ + + + + + + AVR64DA48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DA64.html b/en/latest/boards/atmelmegaavr/AVR64DA64.html index c1e86f94f6..d767a30983 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DA64.html +++ b/en/latest/boards/atmelmegaavr/AVR64DA64.html @@ -1,28 +1,35 @@ + + + + + + AVR64DA64 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DB28.html b/en/latest/boards/atmelmegaavr/AVR64DB28.html index a3454582ba..823beefdff 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DB28.html +++ b/en/latest/boards/atmelmegaavr/AVR64DB28.html @@ -1,28 +1,35 @@ + + + + + + AVR64DB28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DB32.html b/en/latest/boards/atmelmegaavr/AVR64DB32.html index 010c092772..70bfee8b84 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DB32.html +++ b/en/latest/boards/atmelmegaavr/AVR64DB32.html @@ -1,28 +1,35 @@ + + + + + + AVR64DB32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DB48.html b/en/latest/boards/atmelmegaavr/AVR64DB48.html index 817aaf44f0..a04227d649 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DB48.html +++ b/en/latest/boards/atmelmegaavr/AVR64DB48.html @@ -1,28 +1,35 @@ + + + + + + AVR64DB48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DB64.html b/en/latest/boards/atmelmegaavr/AVR64DB64.html index de7462941d..01b673eb79 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DB64.html +++ b/en/latest/boards/atmelmegaavr/AVR64DB64.html @@ -1,28 +1,35 @@ + + + + + + AVR64DB64 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DD14.html b/en/latest/boards/atmelmegaavr/AVR64DD14.html index b20387a9cb..37571e883a 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DD14.html +++ b/en/latest/boards/atmelmegaavr/AVR64DD14.html @@ -1,28 +1,35 @@ + + + + + + AVR64DD14 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DD20.html b/en/latest/boards/atmelmegaavr/AVR64DD20.html index 9b723ed4fd..128f0e6a84 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DD20.html +++ b/en/latest/boards/atmelmegaavr/AVR64DD20.html @@ -1,28 +1,35 @@ + + + + + + AVR64DD20 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DD28.html b/en/latest/boards/atmelmegaavr/AVR64DD28.html index 962b2e130a..ac664d4d95 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DD28.html +++ b/en/latest/boards/atmelmegaavr/AVR64DD28.html @@ -1,28 +1,35 @@ + + + + + + AVR64DD28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/AVR64DD32.html b/en/latest/boards/atmelmegaavr/AVR64DD32.html index 0628325fb1..02fad4d590 100644 --- a/en/latest/boards/atmelmegaavr/AVR64DD32.html +++ b/en/latest/boards/atmelmegaavr/AVR64DD32.html @@ -1,28 +1,35 @@ + + + + + + AVR64DD32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/avr_iot_wg.html b/en/latest/boards/atmelmegaavr/avr_iot_wg.html index 027170c488..5c6e5725dc 100644 --- a/en/latest/boards/atmelmegaavr/avr_iot_wg.html +++ b/en/latest/boards/atmelmegaavr/avr_iot_wg.html @@ -1,28 +1,35 @@ + + + + + + AVR-IoT WG Development Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/curiosity_nano_4809.html b/en/latest/boards/atmelmegaavr/curiosity_nano_4809.html index b614aee5e1..27e3546218 100644 --- a/en/latest/boards/atmelmegaavr/curiosity_nano_4809.html +++ b/en/latest/boards/atmelmegaavr/curiosity_nano_4809.html @@ -1,28 +1,35 @@ + + + + + + Curiosity Nano ATmega4809 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/curiosity_nano_da.html b/en/latest/boards/atmelmegaavr/curiosity_nano_da.html index a52f6a8abc..c432aac340 100644 --- a/en/latest/boards/atmelmegaavr/curiosity_nano_da.html +++ b/en/latest/boards/atmelmegaavr/curiosity_nano_da.html @@ -1,28 +1,35 @@ + + + + + + Curiosity Nano AVR128DA48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/curiosity_nano_db.html b/en/latest/boards/atmelmegaavr/curiosity_nano_db.html index 98089ffd85..10f360c166 100644 --- a/en/latest/boards/atmelmegaavr/curiosity_nano_db.html +++ b/en/latest/boards/atmelmegaavr/curiosity_nano_db.html @@ -1,28 +1,35 @@ + + + + + + Curiosity Nano AVR128DB48 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/nano_every.html b/en/latest/boards/atmelmegaavr/nano_every.html index b558b854ed..358057aff3 100644 --- a/en/latest/boards/atmelmegaavr/nano_every.html +++ b/en/latest/boards/atmelmegaavr/nano_every.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano Every — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/uno_wifi_rev2.html b/en/latest/boards/atmelmegaavr/uno_wifi_rev2.html index 0807edeb3f..1388f022e3 100644 --- a/en/latest/boards/atmelmegaavr/uno_wifi_rev2.html +++ b/en/latest/boards/atmelmegaavr/uno_wifi_rev2.html @@ -1,28 +1,35 @@ + + + + + + Arduino Uno WiFi Rev2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelmegaavr/xplained_pro_4809.html b/en/latest/boards/atmelmegaavr/xplained_pro_4809.html index 64019452ac..2182f4fcb6 100644 --- a/en/latest/boards/atmelmegaavr/xplained_pro_4809.html +++ b/en/latest/boards/atmelmegaavr/xplained_pro_4809.html @@ -1,28 +1,35 @@ + + + + + + Xplained Pro ATmega4809 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -490,18 +497,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_blm_badge.html b/en/latest/boards/atmelsam/adafruit_blm_badge.html index e1256bc2c9..6c56825670 100644 --- a/en/latest/boards/atmelsam/adafruit_blm_badge.html +++ b/en/latest/boards/atmelsam/adafruit_blm_badge.html @@ -1,28 +1,35 @@ + + + + + + Adafruit BLM Badge — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_circuitplayground_m0.html b/en/latest/boards/atmelsam/adafruit_circuitplayground_m0.html index 912b9bd499..76e7df46e5 100644 --- a/en/latest/boards/atmelsam/adafruit_circuitplayground_m0.html +++ b/en/latest/boards/atmelsam/adafruit_circuitplayground_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Circuit Playground Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_crickit_m0.html b/en/latest/boards/atmelsam/adafruit_crickit_m0.html index f370a40577..6dbb8cac18 100644 --- a/en/latest/boards/atmelsam/adafruit_crickit_m0.html +++ b/en/latest/boards/atmelsam/adafruit_crickit_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Crickit M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_feather_m0.html b/en/latest/boards/atmelsam/adafruit_feather_m0.html index 0f7873be5a..72fe7f93fa 100644 --- a/en/latest/boards/atmelsam/adafruit_feather_m0.html +++ b/en/latest/boards/atmelsam/adafruit_feather_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -548,18 +555,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_feather_m0_express.html b/en/latest/boards/atmelsam/adafruit_feather_m0_express.html index 8014a2d606..7cc96c33b9 100644 --- a/en/latest/boards/atmelsam/adafruit_feather_m0_express.html +++ b/en/latest/boards/atmelsam/adafruit_feather_m0_express.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather M0 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_feather_m4.html b/en/latest/boards/atmelsam/adafruit_feather_m4.html index e5d674c68b..300c126edb 100644 --- a/en/latest/boards/atmelsam/adafruit_feather_m4.html +++ b/en/latest/boards/atmelsam/adafruit_feather_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather M4 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_feather_m4_can.html b/en/latest/boards/atmelsam/adafruit_feather_m4_can.html index 252475dfae..58ff8048b5 100644 --- a/en/latest/boards/atmelsam/adafruit_feather_m4_can.html +++ b/en/latest/boards/atmelsam/adafruit_feather_m4_can.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather M4 CAN — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_gemma_m0.html b/en/latest/boards/atmelsam/adafruit_gemma_m0.html index 373167e87a..0521d286a7 100644 --- a/en/latest/boards/atmelsam/adafruit_gemma_m0.html +++ b/en/latest/boards/atmelsam/adafruit_gemma_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Gemma M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_grandcentral_m4.html b/en/latest/boards/atmelsam/adafruit_grandcentral_m4.html index fa210c81a1..8643ea0c56 100644 --- a/en/latest/boards/atmelsam/adafruit_grandcentral_m4.html +++ b/en/latest/boards/atmelsam/adafruit_grandcentral_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Grand Central M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_hallowing.html b/en/latest/boards/atmelsam/adafruit_hallowing.html index 3d9bb1e952..b2754de73b 100644 --- a/en/latest/boards/atmelsam/adafruit_hallowing.html +++ b/en/latest/boards/atmelsam/adafruit_hallowing.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Hallowing M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_hallowing_m4.html b/en/latest/boards/atmelsam/adafruit_hallowing_m4.html index f01dd2c50d..a1fb893b5a 100644 --- a/en/latest/boards/atmelsam/adafruit_hallowing_m4.html +++ b/en/latest/boards/atmelsam/adafruit_hallowing_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Hallowing M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_itsybitsy_m0.html b/en/latest/boards/atmelsam/adafruit_itsybitsy_m0.html index 197fb8e72c..a9ed5ce9e4 100644 --- a/en/latest/boards/atmelsam/adafruit_itsybitsy_m0.html +++ b/en/latest/boards/atmelsam/adafruit_itsybitsy_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ItsyBitsy M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_itsybitsy_m4.html b/en/latest/boards/atmelsam/adafruit_itsybitsy_m4.html index 1fdd87e174..a84921f071 100644 --- a/en/latest/boards/atmelsam/adafruit_itsybitsy_m4.html +++ b/en/latest/boards/atmelsam/adafruit_itsybitsy_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ItsyBitsy M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -543,18 +550,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_matrix_portal_m4.html b/en/latest/boards/atmelsam/adafruit_matrix_portal_m4.html index 398c6cf8f8..e1d15ee3e8 100644 --- a/en/latest/boards/atmelsam/adafruit_matrix_portal_m4.html +++ b/en/latest/boards/atmelsam/adafruit_matrix_portal_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Matrix Portal M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_metro_m0.html b/en/latest/boards/atmelsam/adafruit_metro_m0.html index 3c88d9bb40..cd97ed8ab2 100644 --- a/en/latest/boards/atmelsam/adafruit_metro_m0.html +++ b/en/latest/boards/atmelsam/adafruit_metro_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Metro M0 Expresss — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_metro_m4.html b/en/latest/boards/atmelsam/adafruit_metro_m4.html index d4e788043c..9378028c04 100644 --- a/en/latest/boards/atmelsam/adafruit_metro_m4.html +++ b/en/latest/boards/atmelsam/adafruit_metro_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Metro M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_metro_m4_airliftlite.html b/en/latest/boards/atmelsam/adafruit_metro_m4_airliftlite.html index 7f6963e55d..e426acf0e2 100644 --- a/en/latest/boards/atmelsam/adafruit_metro_m4_airliftlite.html +++ b/en/latest/boards/atmelsam/adafruit_metro_m4_airliftlite.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Metro M4 AirLift Lite — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_monster_m4sk.html b/en/latest/boards/atmelsam/adafruit_monster_m4sk.html index 5f35a76227..ad83af0bdd 100644 --- a/en/latest/boards/atmelsam/adafruit_monster_m4sk.html +++ b/en/latest/boards/atmelsam/adafruit_monster_m4sk.html @@ -1,28 +1,35 @@ + + + + + + Adafruit MONSTER M4SK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_neokeytrinkey_m0.html b/en/latest/boards/atmelsam/adafruit_neokeytrinkey_m0.html index 8f831982e2..a35cb74b97 100644 --- a/en/latest/boards/atmelsam/adafruit_neokeytrinkey_m0.html +++ b/en/latest/boards/atmelsam/adafruit_neokeytrinkey_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit NeoKey Trinkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_neotrinkey_m0.html b/en/latest/boards/atmelsam/adafruit_neotrinkey_m0.html index 67b69af2d0..2291fda40e 100644 --- a/en/latest/boards/atmelsam/adafruit_neotrinkey_m0.html +++ b/en/latest/boards/atmelsam/adafruit_neotrinkey_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit NeoPixel Trinkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pirkey.html b/en/latest/boards/atmelsam/adafruit_pirkey.html index 7125ccf4af..b329e3d9e5 100644 --- a/en/latest/boards/atmelsam/adafruit_pirkey.html +++ b/en/latest/boards/atmelsam/adafruit_pirkey.html @@ -1,28 +1,35 @@ + + + + + + Adafruit pIRkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_proxlighttrinkey_m0.html b/en/latest/boards/atmelsam/adafruit_proxlighttrinkey_m0.html index a266aee461..63d4a7341a 100644 --- a/en/latest/boards/atmelsam/adafruit_proxlighttrinkey_m0.html +++ b/en/latest/boards/atmelsam/adafruit_proxlighttrinkey_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ProxLight Trinkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pybadge_airlift_m4.html b/en/latest/boards/atmelsam/adafruit_pybadge_airlift_m4.html index ba6106feb5..3471f334d3 100644 --- a/en/latest/boards/atmelsam/adafruit_pybadge_airlift_m4.html +++ b/en/latest/boards/atmelsam/adafruit_pybadge_airlift_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit pyBadge AirLift M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pybadge_m4.html b/en/latest/boards/atmelsam/adafruit_pybadge_m4.html index 979a6bdd4b..bcf7608701 100644 --- a/en/latest/boards/atmelsam/adafruit_pybadge_m4.html +++ b/en/latest/boards/atmelsam/adafruit_pybadge_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit pyBadge M4 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pygamer_advance_m4.html b/en/latest/boards/atmelsam/adafruit_pygamer_advance_m4.html index f9609d7c53..96660434ae 100644 --- a/en/latest/boards/atmelsam/adafruit_pygamer_advance_m4.html +++ b/en/latest/boards/atmelsam/adafruit_pygamer_advance_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit PyGamer Advance M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pygamer_m4.html b/en/latest/boards/atmelsam/adafruit_pygamer_m4.html index 3ff53cd514..8083a65b43 100644 --- a/en/latest/boards/atmelsam/adafruit_pygamer_m4.html +++ b/en/latest/boards/atmelsam/adafruit_pygamer_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit PyGamer M4 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pyportal_m4.html b/en/latest/boards/atmelsam/adafruit_pyportal_m4.html index efec69e190..ee0addbdd9 100644 --- a/en/latest/boards/atmelsam/adafruit_pyportal_m4.html +++ b/en/latest/boards/atmelsam/adafruit_pyportal_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit PyPortal M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_pyportal_m4_titano.html b/en/latest/boards/atmelsam/adafruit_pyportal_m4_titano.html index cb19d94e5d..7c89c458d9 100644 --- a/en/latest/boards/atmelsam/adafruit_pyportal_m4_titano.html +++ b/en/latest/boards/atmelsam/adafruit_pyportal_m4_titano.html @@ -1,28 +1,35 @@ + + + + + + Adafruit PyPortal M4 Titano — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_qt_py_m0.html b/en/latest/boards/atmelsam/adafruit_qt_py_m0.html index f04a6aca41..6e3ce2af24 100644 --- a/en/latest/boards/atmelsam/adafruit_qt_py_m0.html +++ b/en/latest/boards/atmelsam/adafruit_qt_py_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit QT Py M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_rotarytrinkey_m0.html b/en/latest/boards/atmelsam/adafruit_rotarytrinkey_m0.html index 0d73ca5fe3..72865b4ac9 100644 --- a/en/latest/boards/atmelsam/adafruit_rotarytrinkey_m0.html +++ b/en/latest/boards/atmelsam/adafruit_rotarytrinkey_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Rotary Trinkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_slidetrinkey_m0.html b/en/latest/boards/atmelsam/adafruit_slidetrinkey_m0.html index 5dbe7504eb..4facb01dac 100644 --- a/en/latest/boards/atmelsam/adafruit_slidetrinkey_m0.html +++ b/en/latest/boards/atmelsam/adafruit_slidetrinkey_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Slide Trinkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_trellis_m4.html b/en/latest/boards/atmelsam/adafruit_trellis_m4.html index ab8537a021..28607fcb93 100644 --- a/en/latest/boards/atmelsam/adafruit_trellis_m4.html +++ b/en/latest/boards/atmelsam/adafruit_trellis_m4.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Trellis M4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/adafruit_trinket_m0.html b/en/latest/boards/atmelsam/adafruit_trinket_m0.html index b6d4de6b49..8ceaf7dbf8 100644 --- a/en/latest/boards/atmelsam/adafruit_trinket_m0.html +++ b/en/latest/boards/atmelsam/adafruit_trinket_m0.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Trinket M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -548,18 +555,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/current_ranger.html b/en/latest/boards/atmelsam/current_ranger.html index 41ea40c25b..bf7877e37a 100644 --- a/en/latest/boards/atmelsam/current_ranger.html +++ b/en/latest/boards/atmelsam/current_ranger.html @@ -1,28 +1,35 @@ + + + + + + LowPowerLab CurrentRanger — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -493,18 +500,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/digix.html b/en/latest/boards/atmelsam/digix.html index 3f6c20bbc9..216c6c93f6 100644 --- a/en/latest/boards/atmelsam/digix.html +++ b/en/latest/boards/atmelsam/digix.html @@ -1,28 +1,35 @@ + + + + + + Digistump DigiX — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -550,18 +557,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/due.html b/en/latest/boards/atmelsam/due.html index 801bc019ba..ee8de4fe50 100644 --- a/en/latest/boards/atmelsam/due.html +++ b/en/latest/boards/atmelsam/due.html @@ -1,28 +1,35 @@ + + + + + + Arduino Due (Programming Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -553,18 +560,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/dueUSB.html b/en/latest/boards/atmelsam/dueUSB.html index c9e8f014ae..779af58cda 100644 --- a/en/latest/boards/atmelsam/dueUSB.html +++ b/en/latest/boards/atmelsam/dueUSB.html @@ -1,28 +1,35 @@ + + + + + + Arduino Due (USB Native Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -550,18 +557,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/minitronics20.html b/en/latest/boards/atmelsam/minitronics20.html index 02f54e279a..6a758f3161 100644 --- a/en/latest/boards/atmelsam/minitronics20.html +++ b/en/latest/boards/atmelsam/minitronics20.html @@ -1,28 +1,35 @@ + + + + + + Minitronics v2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkr1000USB.html b/en/latest/boards/atmelsam/mkr1000USB.html index 043aa45f9b..d9cfe24fc0 100644 --- a/en/latest/boards/atmelsam/mkr1000USB.html +++ b/en/latest/boards/atmelsam/mkr1000USB.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR1000 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrfox1200.html b/en/latest/boards/atmelsam/mkrfox1200.html index 160dae0fdd..e50a2c91fe 100644 --- a/en/latest/boards/atmelsam/mkrfox1200.html +++ b/en/latest/boards/atmelsam/mkrfox1200.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR FOX 1200 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrgsm1400.html b/en/latest/boards/atmelsam/mkrgsm1400.html index 7a04e3b275..dc2cb8d54d 100644 --- a/en/latest/boards/atmelsam/mkrgsm1400.html +++ b/en/latest/boards/atmelsam/mkrgsm1400.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR GSM 1400 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrnb1500.html b/en/latest/boards/atmelsam/mkrnb1500.html index 83c7b3c2df..5fb19c76fa 100644 --- a/en/latest/boards/atmelsam/mkrnb1500.html +++ b/en/latest/boards/atmelsam/mkrnb1500.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR NB 1500 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrvidor4000.html b/en/latest/boards/atmelsam/mkrvidor4000.html index e7f55c5269..865a67a328 100644 --- a/en/latest/boards/atmelsam/mkrvidor4000.html +++ b/en/latest/boards/atmelsam/mkrvidor4000.html @@ -1,28 +1,35 @@ + + + + + + MKR Vidor 4000 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrwan1300.html b/en/latest/boards/atmelsam/mkrwan1300.html index 3ea75c28e0..e350713396 100644 --- a/en/latest/boards/atmelsam/mkrwan1300.html +++ b/en/latest/boards/atmelsam/mkrwan1300.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR WAN 1300 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrwan1310.html b/en/latest/boards/atmelsam/mkrwan1310.html index 4f585718d2..44373df6db 100644 --- a/en/latest/boards/atmelsam/mkrwan1310.html +++ b/en/latest/boards/atmelsam/mkrwan1310.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR WAN 1310 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrwifi1010.html b/en/latest/boards/atmelsam/mkrwifi1010.html index 73ffaeb3cf..4b5bd35bb2 100644 --- a/en/latest/boards/atmelsam/mkrwifi1010.html +++ b/en/latest/boards/atmelsam/mkrwifi1010.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKR WiFi 1010 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mkrzero.html b/en/latest/boards/atmelsam/mkrzero.html index 4bccaa09aa..44cd497496 100644 --- a/en/latest/boards/atmelsam/mkrzero.html +++ b/en/latest/boards/atmelsam/mkrzero.html @@ -1,28 +1,35 @@ + + + + + + Arduino MKRZERO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/moteino_zero.html b/en/latest/boards/atmelsam/moteino_zero.html index 56727b195c..7cd80ec45c 100644 --- a/en/latest/boards/atmelsam/moteino_zero.html +++ b/en/latest/boards/atmelsam/moteino_zero.html @@ -1,28 +1,35 @@ + + + + + + Moteino M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -550,18 +557,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mzeroUSB.html b/en/latest/boards/atmelsam/mzeroUSB.html index 7b7660419d..2be6ce845a 100644 --- a/en/latest/boards/atmelsam/mzeroUSB.html +++ b/en/latest/boards/atmelsam/mzeroUSB.html @@ -1,28 +1,35 @@ + + + + + + Arduino M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mzeropro.html b/en/latest/boards/atmelsam/mzeropro.html index 2a8ea5391a..eb6955fe51 100644 --- a/en/latest/boards/atmelsam/mzeropro.html +++ b/en/latest/boards/atmelsam/mzeropro.html @@ -1,28 +1,35 @@ + + + + + + Arduino M0 Pro (Programming/Debug Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -549,18 +556,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/mzeroproUSB.html b/en/latest/boards/atmelsam/mzeroproUSB.html index abea67fba6..40fd6a710b 100644 --- a/en/latest/boards/atmelsam/mzeroproUSB.html +++ b/en/latest/boards/atmelsam/mzeroproUSB.html @@ -1,28 +1,35 @@ + + + + + + Arduino M0 Pro (Native USB Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/nano_33_iot.html b/en/latest/boards/atmelsam/nano_33_iot.html index c0a3d293dd..f685fd1274 100644 --- a/en/latest/boards/atmelsam/nano_33_iot.html +++ b/en/latest/boards/atmelsam/nano_33_iot.html @@ -1,28 +1,35 @@ + + + + + + NANO 33 IoT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -548,18 +555,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sainSmartDue.html b/en/latest/boards/atmelsam/sainSmartDue.html index 37f52f9122..668ca009a1 100644 --- a/en/latest/boards/atmelsam/sainSmartDue.html +++ b/en/latest/boards/atmelsam/sainSmartDue.html @@ -1,28 +1,35 @@ + + + + + + SainSmart Due (Programming Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -550,18 +557,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sainSmartDueUSB.html b/en/latest/boards/atmelsam/sainSmartDueUSB.html index 9bb6bf6082..c5ec0ace67 100644 --- a/en/latest/boards/atmelsam/sainSmartDueUSB.html +++ b/en/latest/boards/atmelsam/sainSmartDueUSB.html @@ -1,28 +1,35 @@ + + + + + + SainSmart Due (USB Native Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -550,18 +557,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/samc21_xpro.html b/en/latest/boards/atmelsam/samc21_xpro.html index 8ce03c4653..a1e55eb821 100644 --- a/en/latest/boards/atmelsam/samc21_xpro.html +++ b/en/latest/boards/atmelsam/samc21_xpro.html @@ -1,28 +1,35 @@ + + + + + + Atmel SAMC21-XPRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -532,18 +539,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/samd21_xpro.html b/en/latest/boards/atmelsam/samd21_xpro.html index 877f516a33..e62c18e31c 100644 --- a/en/latest/boards/atmelsam/samd21_xpro.html +++ b/en/latest/boards/atmelsam/samd21_xpro.html @@ -1,28 +1,35 @@ + + + + + + Atmel SAMD21-XPRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -549,18 +556,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/samd21g18a.html b/en/latest/boards/atmelsam/samd21g18a.html index a2a8a51bff..524bdc77ac 100644 --- a/en/latest/boards/atmelsam/samd21g18a.html +++ b/en/latest/boards/atmelsam/samd21g18a.html @@ -1,28 +1,35 @@ + + + + + + Atmel ATSAMW25-XPRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -549,18 +556,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/samr21_xpro.html b/en/latest/boards/atmelsam/samr21_xpro.html index 989d7f3022..fe12a22d87 100644 --- a/en/latest/boards/atmelsam/samr21_xpro.html +++ b/en/latest/boards/atmelsam/samr21_xpro.html @@ -1,28 +1,35 @@ + + + + + + Atmel ATSAMR21-XPRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -549,18 +556,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/seeed_femto.html b/en/latest/boards/atmelsam/seeed_femto.html index ec7b2ff9a6..00599da9dc 100644 --- a/en/latest/boards/atmelsam/seeed_femto.html +++ b/en/latest/boards/atmelsam/seeed_femto.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino Femto M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/seeed_wio_lite_mg126.html b/en/latest/boards/atmelsam/seeed_wio_lite_mg126.html index 3409e00416..d9dfda4218 100644 --- a/en/latest/boards/atmelsam/seeed_wio_lite_mg126.html +++ b/en/latest/boards/atmelsam/seeed_wio_lite_mg126.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino Wio Lite MG126 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/seeed_wio_terminal.html b/en/latest/boards/atmelsam/seeed_wio_terminal.html index aa52ff43d3..1a92395987 100644 --- a/en/latest/boards/atmelsam/seeed_wio_terminal.html +++ b/en/latest/boards/atmelsam/seeed_wio_terminal.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino Wio Terminal — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/seeed_xiao.html b/en/latest/boards/atmelsam/seeed_xiao.html index 92e0c2e09b..133cd6acaa 100644 --- a/en/latest/boards/atmelsam/seeed_xiao.html +++ b/en/latest/boards/atmelsam/seeed_xiao.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino XIAO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -548,18 +555,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/seeed_zero.html b/en/latest/boards/atmelsam/seeed_zero.html index ed25c26fbb..0ac0cbea2d 100644 --- a/en/latest/boards/atmelsam/seeed_zero.html +++ b/en/latest/boards/atmelsam/seeed_zero.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino Zero — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/seeeduino_lorawan.html b/en/latest/boards/atmelsam/seeeduino_lorawan.html index a1f9323a92..63fc4910d9 100644 --- a/en/latest/boards/atmelsam/seeeduino_lorawan.html +++ b/en/latest/boards/atmelsam/seeeduino_lorawan.html @@ -1,28 +1,35 @@ + + + + + + Seeeduino LoRaWAN — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sodaq_autonomo.html b/en/latest/boards/atmelsam/sodaq_autonomo.html index 4e66c42c4f..3c96e95672 100644 --- a/en/latest/boards/atmelsam/sodaq_autonomo.html +++ b/en/latest/boards/atmelsam/sodaq_autonomo.html @@ -1,28 +1,35 @@ + + + + + + SODAQ Autonomo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sodaq_explorer.html b/en/latest/boards/atmelsam/sodaq_explorer.html index c30b66a01c..e03abce238 100644 --- a/en/latest/boards/atmelsam/sodaq_explorer.html +++ b/en/latest/boards/atmelsam/sodaq_explorer.html @@ -1,28 +1,35 @@ + + + + + + SODAQ ExpLoRer — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sodaq_one.html b/en/latest/boards/atmelsam/sodaq_one.html index f5f78cbc67..20437711ef 100644 --- a/en/latest/boards/atmelsam/sodaq_one.html +++ b/en/latest/boards/atmelsam/sodaq_one.html @@ -1,28 +1,35 @@ + + + + + + SODAQ ONE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sodaq_sara.html b/en/latest/boards/atmelsam/sodaq_sara.html index 0bd2b19128..38aa95f19d 100644 --- a/en/latest/boards/atmelsam/sodaq_sara.html +++ b/en/latest/boards/atmelsam/sodaq_sara.html @@ -1,28 +1,35 @@ + + + + + + SODAQ SARA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sodaq_sff.html b/en/latest/boards/atmelsam/sodaq_sff.html index bc04aa0bc9..90ab1bd7fd 100644 --- a/en/latest/boards/atmelsam/sodaq_sff.html +++ b/en/latest/boards/atmelsam/sodaq_sff.html @@ -1,28 +1,35 @@ + + + + + + SODAQ SFF — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_qwiic_micro_samd21e.html b/en/latest/boards/atmelsam/sparkfun_qwiic_micro_samd21e.html index b70213c0f8..e760311ca7 100644 --- a/en/latest/boards/atmelsam/sparkfun_qwiic_micro_samd21e.html +++ b/en/latest/boards/atmelsam/sparkfun_qwiic_micro_samd21e.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Qwiic Micro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_redboard_turbo.html b/en/latest/boards/atmelsam/sparkfun_redboard_turbo.html index 2ee01044fa..e12bf74176 100644 --- a/en/latest/boards/atmelsam/sparkfun_redboard_turbo.html +++ b/en/latest/boards/atmelsam/sparkfun_redboard_turbo.html @@ -1,28 +1,35 @@ + + + + + + SparkFun RedBoard Turbo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_samd21_9dof.html b/en/latest/boards/atmelsam/sparkfun_samd21_9dof.html index 2a15d00575..963eb6bbe7 100644 --- a/en/latest/boards/atmelsam/sparkfun_samd21_9dof.html +++ b/en/latest/boards/atmelsam/sparkfun_samd21_9dof.html @@ -1,28 +1,35 @@ + + + + + + SparkFun 9DoF Razor IMU M0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_samd21_dev_usb.html b/en/latest/boards/atmelsam/sparkfun_samd21_dev_usb.html index 64c9f90fc8..cb49d0dbb4 100644 --- a/en/latest/boards/atmelsam/sparkfun_samd21_dev_usb.html +++ b/en/latest/boards/atmelsam/sparkfun_samd21_dev_usb.html @@ -1,28 +1,35 @@ + + + + + + SparkFun SAMD21 Dev Breakout — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_samd21_mini_usb.html b/en/latest/boards/atmelsam/sparkfun_samd21_mini_usb.html index 80158e5cad..0770d4958b 100644 --- a/en/latest/boards/atmelsam/sparkfun_samd21_mini_usb.html +++ b/en/latest/boards/atmelsam/sparkfun_samd21_mini_usb.html @@ -1,28 +1,35 @@ + + + + + + SparkFun SAMD21 Mini Breakout — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_samd21_proRF.html b/en/latest/boards/atmelsam/sparkfun_samd21_proRF.html index 69e9721d04..c8822f99a2 100644 --- a/en/latest/boards/atmelsam/sparkfun_samd21_proRF.html +++ b/en/latest/boards/atmelsam/sparkfun_samd21_proRF.html @@ -1,28 +1,35 @@ + + + + + + SparkFun SAMD21 Pro RF — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_samd51_micromod.html b/en/latest/boards/atmelsam/sparkfun_samd51_micromod.html index 2156fc4986..513a2f55f0 100644 --- a/en/latest/boards/atmelsam/sparkfun_samd51_micromod.html +++ b/en/latest/boards/atmelsam/sparkfun_samd51_micromod.html @@ -1,28 +1,35 @@ + + + + + + SparkFun SAMD51 MicroMod — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/sparkfun_samd51_thing_plus.html b/en/latest/boards/atmelsam/sparkfun_samd51_thing_plus.html index 7275520857..87c8ba12c4 100644 --- a/en/latest/boards/atmelsam/sparkfun_samd51_thing_plus.html +++ b/en/latest/boards/atmelsam/sparkfun_samd51_thing_plus.html @@ -1,28 +1,35 @@ + + + + + + SparkFun SAMD51 Thing Plus — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -540,18 +547,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/tian.html b/en/latest/boards/atmelsam/tian.html index 7f17c01805..d003fe01a5 100644 --- a/en/latest/boards/atmelsam/tian.html +++ b/en/latest/boards/atmelsam/tian.html @@ -1,28 +1,35 @@ + + + + + + Arduino Tian — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/tuinozero96.html b/en/latest/boards/atmelsam/tuinozero96.html index 6a6ab75e49..fc0700ef40 100644 --- a/en/latest/boards/atmelsam/tuinozero96.html +++ b/en/latest/boards/atmelsam/tuinozero96.html @@ -1,28 +1,35 @@ + + + + + + Tuino 096 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/zero.html b/en/latest/boards/atmelsam/zero.html index 0acef783c7..c98a484c23 100644 --- a/en/latest/boards/atmelsam/zero.html +++ b/en/latest/boards/atmelsam/zero.html @@ -1,28 +1,35 @@ + + + + + + Arduino Zero (Programming/Debug Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -552,18 +559,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/atmelsam/zeroUSB.html b/en/latest/boards/atmelsam/zeroUSB.html index 0750d6d22e..7c452cec84 100644 --- a/en/latest/boards/atmelsam/zeroUSB.html +++ b/en/latest/boards/atmelsam/zeroUSB.html @@ -1,28 +1,35 @@ + + + + + + Arduino Zero (USB Native Port) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -545,18 +552,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/chipsalliance/swervolf_nexys.html b/en/latest/boards/chipsalliance/swervolf_nexys.html index 33a343cc8c..e54f3da9cb 100644 --- a/en/latest/boards/chipsalliance/swervolf_nexys.html +++ b/en/latest/boards/chipsalliance/swervolf_nexys.html @@ -1,28 +1,35 @@ + + + + + + RVfpga: Digilent Nexys A7 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/4d_systems_esp32s3_gen4_r8n16.html b/en/latest/boards/espressif32/4d_systems_esp32s3_gen4_r8n16.html index 49f0f74a47..aec5944d9a 100644 --- a/en/latest/boards/espressif32/4d_systems_esp32s3_gen4_r8n16.html +++ b/en/latest/boards/espressif32/4d_systems_esp32s3_gen4_r8n16.html @@ -1,28 +1,35 @@ + + + + + + 4D Systems GEN4-ESP32 16MB (ESP32S3-R8N16) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_camera_esp32s3.html b/en/latest/boards/espressif32/adafruit_camera_esp32s3.html index 2ed33528de..cbfeaebbd4 100644 --- a/en/latest/boards/espressif32/adafruit_camera_esp32s3.html +++ b/en/latest/boards/espressif32/adafruit_camera_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit pyCamera S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32_v2.html b/en/latest/boards/espressif32/adafruit_feather_esp32_v2.html index 0f40a8c7fa..c6497b570a 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32_v2.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32_v2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32 V2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s2.html b/en/latest/boards/espressif32/adafruit_feather_esp32s2.html index 46676b2ba1..5e27d7fe98 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s2.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s2_reversetft.html b/en/latest/boards/espressif32/adafruit_feather_esp32s2_reversetft.html index e32dc04332..5d15b2378f 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s2_reversetft.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s2_reversetft.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S2 Reverse TFT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s2_tft.html b/en/latest/boards/espressif32/adafruit_feather_esp32s2_tft.html index 3fd979c1e4..82c1fda451 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s2_tft.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s2_tft.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S2 TFT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s3.html b/en/latest/boards/espressif32/adafruit_feather_esp32s3.html index 5f0acc7af9..0b320b0c15 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s3.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S3 2MB PSRAM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s3_nopsram.html b/en/latest/boards/espressif32/adafruit_feather_esp32s3_nopsram.html index e5491197e5..a538d6d5d3 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s3_nopsram.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s3_nopsram.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S3 No PSRAM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s3_reversetft.html b/en/latest/boards/espressif32/adafruit_feather_esp32s3_reversetft.html index 041973581a..4eaf198cb2 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s3_reversetft.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s3_reversetft.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S3 Reverse TFT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_feather_esp32s3_tft.html b/en/latest/boards/espressif32/adafruit_feather_esp32s3_tft.html index 3d09c2d638..e0c1a798c9 100644 --- a/en/latest/boards/espressif32/adafruit_feather_esp32s3_tft.html +++ b/en/latest/boards/espressif32/adafruit_feather_esp32s3_tft.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather ESP32-S3 TFT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_funhouse_esp32s2.html b/en/latest/boards/espressif32/adafruit_funhouse_esp32s2.html index 4f69c9a839..2f4b8474e8 100644 --- a/en/latest/boards/espressif32/adafruit_funhouse_esp32s2.html +++ b/en/latest/boards/espressif32/adafruit_funhouse_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit FunHouse — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_itsybitsy_esp32.html b/en/latest/boards/espressif32/adafruit_itsybitsy_esp32.html index 81b8377a92..9dc9836cea 100644 --- a/en/latest/boards/espressif32/adafruit_itsybitsy_esp32.html +++ b/en/latest/boards/espressif32/adafruit_itsybitsy_esp32.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ItsyBitsy ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_magtag29_esp32s2.html b/en/latest/boards/espressif32/adafruit_magtag29_esp32s2.html index 484326685e..efae48c7a6 100644 --- a/en/latest/boards/espressif32/adafruit_magtag29_esp32s2.html +++ b/en/latest/boards/espressif32/adafruit_magtag29_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit MagTag 2.9 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_matrixportal_esp32s3.html b/en/latest/boards/espressif32/adafruit_matrixportal_esp32s3.html index 5e101686b0..35afad3dc8 100644 --- a/en/latest/boards/espressif32/adafruit_matrixportal_esp32s3.html +++ b/en/latest/boards/espressif32/adafruit_matrixportal_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit MatrixPortal ESP32-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_metro_esp32s2.html b/en/latest/boards/espressif32/adafruit_metro_esp32s2.html index 9696da7f00..4dcd0281d4 100644 --- a/en/latest/boards/espressif32/adafruit_metro_esp32s2.html +++ b/en/latest/boards/espressif32/adafruit_metro_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Metro ESP32-S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_metro_esp32s3.html b/en/latest/boards/espressif32/adafruit_metro_esp32s3.html index 951648dee9..175dc4ff95 100644 --- a/en/latest/boards/espressif32/adafruit_metro_esp32s3.html +++ b/en/latest/boards/espressif32/adafruit_metro_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Metro ESP32-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_qtpy_esp32.html b/en/latest/boards/espressif32/adafruit_qtpy_esp32.html index 3c52e22fd4..a688e9fc49 100644 --- a/en/latest/boards/espressif32/adafruit_qtpy_esp32.html +++ b/en/latest/boards/espressif32/adafruit_qtpy_esp32.html @@ -1,28 +1,35 @@ + + + + + + Adafruit QT Py ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_qtpy_esp32c3.html b/en/latest/boards/espressif32/adafruit_qtpy_esp32c3.html index 1c0a3fc2d7..f0b7875898 100644 --- a/en/latest/boards/espressif32/adafruit_qtpy_esp32c3.html +++ b/en/latest/boards/espressif32/adafruit_qtpy_esp32c3.html @@ -1,28 +1,35 @@ + + + + + + Adafruit QT Py ESP32-C3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_qtpy_esp32s2.html b/en/latest/boards/espressif32/adafruit_qtpy_esp32s2.html index 9a58e91aec..f488225abc 100644 --- a/en/latest/boards/espressif32/adafruit_qtpy_esp32s2.html +++ b/en/latest/boards/espressif32/adafruit_qtpy_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit QT Py ESP32-S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_n4r2.html b/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_n4r2.html index 78fd6ad3a7..9214754d41 100644 --- a/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_n4r2.html +++ b/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_n4r2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit QT Py ESP32-S3 (4M Flash 2M PSRAM) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_nopsram.html b/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_nopsram.html index 90f2c4230d..cb317687d1 100644 --- a/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_nopsram.html +++ b/en/latest/boards/espressif32/adafruit_qtpy_esp32s3_nopsram.html @@ -1,28 +1,35 @@ + + + + + + Adafruit QT Py ESP32-S3 No PSRAM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/adafruit_qualia_s3_rgb666.html b/en/latest/boards/espressif32/adafruit_qualia_s3_rgb666.html index 78886f2e18..c0ee41dcc4 100644 --- a/en/latest/boards/espressif32/adafruit_qualia_s3_rgb666.html +++ b/en/latest/boards/espressif32/adafruit_qualia_s3_rgb666.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Qualia ESP32-S3 RGB666 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/airm2m_core_esp32c3.html b/en/latest/boards/espressif32/airm2m_core_esp32c3.html index 66f1a1709e..781309fd62 100644 --- a/en/latest/boards/espressif32/airm2m_core_esp32c3.html +++ b/en/latest/boards/espressif32/airm2m_core_esp32c3.html @@ -1,28 +1,35 @@ + + + + + + AirM2M CORE ESP32C3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/alksesp32.html b/en/latest/boards/espressif32/alksesp32.html index 391192a399..919ca12679 100644 --- a/en/latest/boards/espressif32/alksesp32.html +++ b/en/latest/boards/espressif32/alksesp32.html @@ -1,28 +1,35 @@ + + + + + + ALKS ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -738,18 +745,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/arduino_nano_esp32.html b/en/latest/boards/espressif32/arduino_nano_esp32.html index 7c406d6d45..0cb9b82b5e 100644 --- a/en/latest/boards/espressif32/arduino_nano_esp32.html +++ b/en/latest/boards/espressif32/arduino_nano_esp32.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/atd147_s3.html b/en/latest/boards/espressif32/atd147_s3.html index e9cb53b550..ce1050cade 100644 --- a/en/latest/boards/espressif32/atd147_s3.html +++ b/en/latest/boards/espressif32/atd147_s3.html @@ -1,28 +1,35 @@ + + + + + + ArtronShop ATD1.47-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/atmegazero_esp32s2.html b/en/latest/boards/espressif32/atmegazero_esp32s2.html index 0c12034620..c315ddbe7c 100644 --- a/en/latest/boards/espressif32/atmegazero_esp32s2.html +++ b/en/latest/boards/espressif32/atmegazero_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + EspinalLab ATMegaZero ESP32-S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/aventen_s3_sync.html b/en/latest/boards/espressif32/aventen_s3_sync.html index 2d9a71a4bf..7cf02df929 100644 --- a/en/latest/boards/espressif32/aventen_s3_sync.html +++ b/en/latest/boards/espressif32/aventen_s3_sync.html @@ -1,28 +1,35 @@ + + + + + + Aventen S3 Sync — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/az-delivery-devkit-v4.html b/en/latest/boards/espressif32/az-delivery-devkit-v4.html index 523828ceb4..8bc2a96fe9 100644 --- a/en/latest/boards/espressif32/az-delivery-devkit-v4.html +++ b/en/latest/boards/espressif32/az-delivery-devkit-v4.html @@ -1,28 +1,35 @@ + + + + + + AZ-Delivery ESP-32 Dev Kit C V4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bee_data_logger.html b/en/latest/boards/espressif32/bee_data_logger.html index 71f28fdf6e..af35ed6ff9 100644 --- a/en/latest/boards/espressif32/bee_data_logger.html +++ b/en/latest/boards/espressif32/bee_data_logger.html @@ -1,28 +1,35 @@ + + + + + + Smart Bee Data Logger — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bee_motion.html b/en/latest/boards/espressif32/bee_motion.html index 106f3bb581..8a9502467d 100644 --- a/en/latest/boards/espressif32/bee_motion.html +++ b/en/latest/boards/espressif32/bee_motion.html @@ -1,28 +1,35 @@ + + + + + + Smart Bee Motion — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bee_motion_mini.html b/en/latest/boards/espressif32/bee_motion_mini.html index a0ed8a673e..c110e5fda7 100644 --- a/en/latest/boards/espressif32/bee_motion_mini.html +++ b/en/latest/boards/espressif32/bee_motion_mini.html @@ -1,28 +1,35 @@ + + + + + + Smart Bee Motion Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bee_motion_s3.html b/en/latest/boards/espressif32/bee_motion_s3.html index 3c29b962b4..075ac158ed 100644 --- a/en/latest/boards/espressif32/bee_motion_s3.html +++ b/en/latest/boards/espressif32/bee_motion_s3.html @@ -1,28 +1,35 @@ + + + + + + Smart Bee Motion S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bee_s3.html b/en/latest/boards/espressif32/bee_s3.html index 19a39fa5dd..726452d632 100644 --- a/en/latest/boards/espressif32/bee_s3.html +++ b/en/latest/boards/espressif32/bee_s3.html @@ -1,28 +1,35 @@ + + + + + + Smart Bee S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bpi-bit.html b/en/latest/boards/espressif32/bpi-bit.html index e9ce849a18..2d12811e58 100644 --- a/en/latest/boards/espressif32/bpi-bit.html +++ b/en/latest/boards/espressif32/bpi-bit.html @@ -1,28 +1,35 @@ + + + + + + BPI-Bit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/bpi_leaf_s3.html b/en/latest/boards/espressif32/bpi_leaf_s3.html index 3e368fc1d3..3f52494163 100644 --- a/en/latest/boards/espressif32/bpi_leaf_s3.html +++ b/en/latest/boards/espressif32/bpi_leaf_s3.html @@ -1,28 +1,35 @@ + + + + + + BPI-Leaf-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/cnrs_aw2eth.html b/en/latest/boards/espressif32/cnrs_aw2eth.html index 270bf3f16d..06c0b74d83 100644 --- a/en/latest/boards/espressif32/cnrs_aw2eth.html +++ b/en/latest/boards/espressif32/cnrs_aw2eth.html @@ -1,28 +1,35 @@ + + + + + + CNRS AW2ETH — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/connaxio_espoir.html b/en/latest/boards/espressif32/connaxio_espoir.html index 6329e8c57b..4599476be6 100644 --- a/en/latest/boards/espressif32/connaxio_espoir.html +++ b/en/latest/boards/espressif32/connaxio_espoir.html @@ -1,28 +1,35 @@ + + + + + + Connaxio’s Espoir — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/cytron_maker_feather_aiot_s3.html b/en/latest/boards/espressif32/cytron_maker_feather_aiot_s3.html index 4875162b2e..914147db60 100644 --- a/en/latest/boards/espressif32/cytron_maker_feather_aiot_s3.html +++ b/en/latest/boards/espressif32/cytron_maker_feather_aiot_s3.html @@ -1,28 +1,35 @@ + + + + + + Cytron Maker Feather AIoT S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/d-duino-32.html b/en/latest/boards/espressif32/d-duino-32.html index 28d71711d0..6af2d1372c 100644 --- a/en/latest/boards/espressif32/d-duino-32.html +++ b/en/latest/boards/espressif32/d-duino-32.html @@ -1,28 +1,35 @@ + + + + + + D-duino-32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/deneyapkart.html b/en/latest/boards/espressif32/deneyapkart.html index 7b97583f8b..0348fde03e 100644 --- a/en/latest/boards/espressif32/deneyapkart.html +++ b/en/latest/boards/espressif32/deneyapkart.html @@ -1,28 +1,35 @@ + + + + + + Deneyap Kart — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/deneyapkart1A.html b/en/latest/boards/espressif32/deneyapkart1A.html index ac53971e1c..0f5d27b533 100644 --- a/en/latest/boards/espressif32/deneyapkart1A.html +++ b/en/latest/boards/espressif32/deneyapkart1A.html @@ -1,28 +1,35 @@ + + + + + + Deneyap Kart 1A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/deneyapkart1Av2.html b/en/latest/boards/espressif32/deneyapkart1Av2.html index 40fad00bbf..c9b22d1496 100644 --- a/en/latest/boards/espressif32/deneyapkart1Av2.html +++ b/en/latest/boards/espressif32/deneyapkart1Av2.html @@ -1,28 +1,35 @@ + + + + + + Deneyap Kart 1A v2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/deneyapkartg.html b/en/latest/boards/espressif32/deneyapkartg.html index 028a2e03b1..f03c3b347d 100644 --- a/en/latest/boards/espressif32/deneyapkartg.html +++ b/en/latest/boards/espressif32/deneyapkartg.html @@ -1,28 +1,35 @@ + + + + + + Deneyap Kart G — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/deneyapmini.html b/en/latest/boards/espressif32/deneyapmini.html index 4f6258a884..45ed8d96bf 100644 --- a/en/latest/boards/espressif32/deneyapmini.html +++ b/en/latest/boards/espressif32/deneyapmini.html @@ -1,28 +1,35 @@ + + + + + + Deneyap Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/deneyapminiv2.html b/en/latest/boards/espressif32/deneyapminiv2.html index 78c8c2ab79..f53caa8faa 100644 --- a/en/latest/boards/espressif32/deneyapminiv2.html +++ b/en/latest/boards/espressif32/deneyapminiv2.html @@ -1,28 +1,35 @@ + + + + + + Deneyap Mini v2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/denky32.html b/en/latest/boards/espressif32/denky32.html index 3c3c2a598b..277ab7fee2 100644 --- a/en/latest/boards/espressif32/denky32.html +++ b/en/latest/boards/espressif32/denky32.html @@ -1,28 +1,35 @@ + + + + + + Denky32 (WROOM32) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/denky_d4.html b/en/latest/boards/espressif32/denky_d4.html index ebc0422a8e..551d72ed53 100644 --- a/en/latest/boards/espressif32/denky_d4.html +++ b/en/latest/boards/espressif32/denky_d4.html @@ -1,28 +1,35 @@ + + + + + + Denky D4 (PICO-V3-02) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/dfrobot_beetle_esp32c3.html b/en/latest/boards/espressif32/dfrobot_beetle_esp32c3.html index a4336aeeb9..a75e912700 100644 --- a/en/latest/boards/espressif32/dfrobot_beetle_esp32c3.html +++ b/en/latest/boards/espressif32/dfrobot_beetle_esp32c3.html @@ -1,28 +1,35 @@ + + + + + + DFRobot Beetle ESP32-C3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32e.html b/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32e.html index 0edcc5a7ae..dc70e772c9 100644 --- a/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32e.html +++ b/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32e.html @@ -1,28 +1,35 @@ + + + + + + DFRobot Firebeetle 2 ESP32-E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32s3.html b/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32s3.html index 18cd1072aa..d3aff1ed25 100644 --- a/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32s3.html +++ b/en/latest/boards/espressif32/dfrobot_firebeetle2_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + DFRobot Firebeetle 2 ESP32-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/dfrobot_romeo_esp32s3.html b/en/latest/boards/espressif32/dfrobot_romeo_esp32s3.html index 6144fe4a68..f90965ab37 100644 --- a/en/latest/boards/espressif32/dfrobot_romeo_esp32s3.html +++ b/en/latest/boards/espressif32/dfrobot_romeo_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + DFRobot Romeo ESP32-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/dpu_esp32.html b/en/latest/boards/espressif32/dpu_esp32.html index c3618a5a40..0ec7168097 100644 --- a/en/latest/boards/espressif32/dpu_esp32.html +++ b/en/latest/boards/espressif32/dpu_esp32.html @@ -1,28 +1,35 @@ + + + + + + TAMC DPU ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/edgebox-esp-100.html b/en/latest/boards/espressif32/edgebox-esp-100.html index ebe605122f..f165b7932a 100644 --- a/en/latest/boards/espressif32/edgebox-esp-100.html +++ b/en/latest/boards/espressif32/edgebox-esp-100.html @@ -1,28 +1,35 @@ + + + + + + Seeed Studio Edgebox-ESP-100 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp-wrover-kit.html b/en/latest/boards/espressif32/esp-wrover-kit.html index b95ae9e3ec..d75b0831c4 100644 --- a/en/latest/boards/espressif32/esp-wrover-kit.html +++ b/en/latest/boards/espressif32/esp-wrover-kit.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP-WROVER-KIT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-c3-devkitc-02.html b/en/latest/boards/espressif32/esp32-c3-devkitc-02.html index 9297f195ec..1c68bf399b 100644 --- a/en/latest/boards/espressif32/esp32-c3-devkitc-02.html +++ b/en/latest/boards/espressif32/esp32-c3-devkitc-02.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-C3-DevKitC-02 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-c3-devkitm-1.html b/en/latest/boards/espressif32/esp32-c3-devkitm-1.html index b077978d93..c4d19a549e 100644 --- a/en/latest/boards/espressif32/esp32-c3-devkitm-1.html +++ b/en/latest/boards/espressif32/esp32-c3-devkitm-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-C3-DevKitM-1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-c3-m1i-kit.html b/en/latest/boards/espressif32/esp32-c3-m1i-kit.html index 182d859e2a..9998b6ee70 100644 --- a/en/latest/boards/espressif32/esp32-c3-m1i-kit.html +++ b/en/latest/boards/espressif32/esp32-c3-m1i-kit.html @@ -1,28 +1,35 @@ + + + + + + Ai-Thinker ESP-C3-M1-I-Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-c6-devkitc-1.html b/en/latest/boards/espressif32/esp32-c6-devkitc-1.html index f5d8d5431f..edad6dcfe2 100644 --- a/en/latest/boards/espressif32/esp32-c6-devkitc-1.html +++ b/en/latest/boards/espressif32/esp32-c6-devkitc-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-C6-DevKitC-1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -664,18 +671,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-c6-devkitm-1.html b/en/latest/boards/espressif32/esp32-c6-devkitm-1.html index bb605278bb..283cb65f4c 100644 --- a/en/latest/boards/espressif32/esp32-c6-devkitm-1.html +++ b/en/latest/boards/espressif32/esp32-c6-devkitm-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-C6-DevKitM-1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -743,18 +750,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-devkitlipo.html b/en/latest/boards/espressif32/esp32-devkitlipo.html index 50eced1906..c6995944a7 100644 --- a/en/latest/boards/espressif32/esp32-devkitlipo.html +++ b/en/latest/boards/espressif32/esp32-devkitlipo.html @@ -1,28 +1,35 @@ + + + + + + OLIMEX ESP32-DevKit-LiPo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-evb.html b/en/latest/boards/espressif32/esp32-evb.html index 2812d69d6c..3c2fbedb30 100644 --- a/en/latest/boards/espressif32/esp32-evb.html +++ b/en/latest/boards/espressif32/esp32-evb.html @@ -1,28 +1,35 @@ + + + + + + OLIMEX ESP32-EVB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-gateway.html b/en/latest/boards/espressif32/esp32-gateway.html index 0d78de5be4..f147101164 100644 --- a/en/latest/boards/espressif32/esp32-gateway.html +++ b/en/latest/boards/espressif32/esp32-gateway.html @@ -1,28 +1,35 @@ + + + + + + OLIMEX ESP32-GATEWAY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-pico-devkitm-2.html b/en/latest/boards/espressif32/esp32-pico-devkitm-2.html index 13d9575718..770be7c9d2 100644 --- a/en/latest/boards/espressif32/esp32-pico-devkitm-2.html +++ b/en/latest/boards/espressif32/esp32-pico-devkitm-2.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-PICO-DevKitM-2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-poe-iso.html b/en/latest/boards/espressif32/esp32-poe-iso.html index cfe522886b..c1ab8b0882 100644 --- a/en/latest/boards/espressif32/esp32-poe-iso.html +++ b/en/latest/boards/espressif32/esp32-poe-iso.html @@ -1,28 +1,35 @@ + + + + + + OLIMEX ESP32-PoE-ISO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-poe.html b/en/latest/boards/espressif32/esp32-poe.html index 2a9cb2d32b..68acc7d3f6 100644 --- a/en/latest/boards/espressif32/esp32-poe.html +++ b/en/latest/boards/espressif32/esp32-poe.html @@ -1,28 +1,35 @@ + + + + + + OLIMEX ESP32-PoE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-pro.html b/en/latest/boards/espressif32/esp32-pro.html index 49b7e96f5d..d78d045800 100644 --- a/en/latest/boards/espressif32/esp32-pro.html +++ b/en/latest/boards/espressif32/esp32-pro.html @@ -1,28 +1,35 @@ + + + + + + OLIMEX ESP32-PRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-s2-franzininho.html b/en/latest/boards/espressif32/esp32-s2-franzininho.html index 6fb19880ff..d6e82541c9 100644 --- a/en/latest/boards/espressif32/esp32-s2-franzininho.html +++ b/en/latest/boards/espressif32/esp32-s2-franzininho.html @@ -1,28 +1,35 @@ + + + + + + Franzininho WiFi Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -738,18 +745,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-s2-kaluga-1.html b/en/latest/boards/espressif32/esp32-s2-kaluga-1.html index 842e63a900..95e381bec9 100644 --- a/en/latest/boards/espressif32/esp32-s2-kaluga-1.html +++ b/en/latest/boards/espressif32/esp32-s2-kaluga-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-S2-Kaluga-1 Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-s2-saola-1.html b/en/latest/boards/espressif32/esp32-s2-saola-1.html index d6693ce22f..f7ea692a9e 100644 --- a/en/latest/boards/espressif32/esp32-s2-saola-1.html +++ b/en/latest/boards/espressif32/esp32-s2-saola-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-S2-Saola-1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-s3-devkitc-1.html b/en/latest/boards/espressif32/esp32-s3-devkitc-1.html index fb04dc537a..10075e8887 100644 --- a/en/latest/boards/espressif32/esp32-s3-devkitc-1.html +++ b/en/latest/boards/espressif32/esp32-s3-devkitc-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-S3-DevKitC-1-N8 (8 MB QD, No PSRAM) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32-s3-devkitm-1.html b/en/latest/boards/espressif32/esp32-s3-devkitm-1.html index 6eb0fd7b30..cb4cf359b3 100644 --- a/en/latest/boards/espressif32/esp32-s3-devkitm-1.html +++ b/en/latest/boards/espressif32/esp32-s3-devkitm-1.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-S3-DevKitM-1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp320.html b/en/latest/boards/espressif32/esp320.html index 0fdee6638d..200b7c04dc 100644 --- a/en/latest/boards/espressif32/esp320.html +++ b/en/latest/boards/espressif32/esp320.html @@ -1,28 +1,35 @@ + + + + + + Electronic SweetPeas ESP320 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32cam.html b/en/latest/boards/espressif32/esp32cam.html index 2ba17419df..41514ce171 100644 --- a/en/latest/boards/espressif32/esp32cam.html +++ b/en/latest/boards/espressif32/esp32cam.html @@ -1,28 +1,35 @@ + + + + + + AI Thinker ESP32-CAM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32dev.html b/en/latest/boards/espressif32/esp32dev.html index c23aec5f51..f35ce0f8d9 100644 --- a/en/latest/boards/espressif32/esp32dev.html +++ b/en/latest/boards/espressif32/esp32dev.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32 Dev Module — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32doit-devkit-v1.html b/en/latest/boards/espressif32/esp32doit-devkit-v1.html index 998cd4c54f..9159ca43ed 100644 --- a/en/latest/boards/espressif32/esp32doit-devkit-v1.html +++ b/en/latest/boards/espressif32/esp32doit-devkit-v1.html @@ -1,28 +1,35 @@ + + + + + + DOIT ESP32 DEVKIT V1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32doit-espduino.html b/en/latest/boards/espressif32/esp32doit-espduino.html index bbb1e41c87..e79fab565c 100644 --- a/en/latest/boards/espressif32/esp32doit-espduino.html +++ b/en/latest/boards/espressif32/esp32doit-espduino.html @@ -1,28 +1,35 @@ + + + + + + DOIT ESPduino32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32s3_powerfeather.html b/en/latest/boards/espressif32/esp32s3_powerfeather.html index 4396cc7b1d..86e8058f52 100644 --- a/en/latest/boards/espressif32/esp32s3_powerfeather.html +++ b/en/latest/boards/espressif32/esp32s3_powerfeather.html @@ -1,28 +1,35 @@ + + + + + + ESP32-S3 PowerFeather — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32s3box.html b/en/latest/boards/espressif32/esp32s3box.html index dff944d1ee..d4f718cfe4 100644 --- a/en/latest/boards/espressif32/esp32s3box.html +++ b/en/latest/boards/espressif32/esp32s3box.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-S3-Box — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32s3camlcd.html b/en/latest/boards/espressif32/esp32s3camlcd.html index ae9ac745fa..3b535a42f8 100644 --- a/en/latest/boards/espressif32/esp32s3camlcd.html +++ b/en/latest/boards/espressif32/esp32s3camlcd.html @@ -1,28 +1,35 @@ + + + + + + ESP32S3 CAM LCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32s3usbotg.html b/en/latest/boards/espressif32/esp32s3usbotg.html index 51044b1941..a6c562ed49 100644 --- a/en/latest/boards/espressif32/esp32s3usbotg.html +++ b/en/latest/boards/espressif32/esp32s3usbotg.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP32-S3-USB-OTG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32thing.html b/en/latest/boards/espressif32/esp32thing.html index 1e3922b42f..6e2c5ab1c8 100644 --- a/en/latest/boards/espressif32/esp32thing.html +++ b/en/latest/boards/espressif32/esp32thing.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP32 Thing — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32thing_plus.html b/en/latest/boards/espressif32/esp32thing_plus.html index 3a4c3e884c..a1822e012e 100644 --- a/en/latest/boards/espressif32/esp32thing_plus.html +++ b/en/latest/boards/espressif32/esp32thing_plus.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP32 Thing Plus — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/esp32vn-iot-uno.html b/en/latest/boards/espressif32/esp32vn-iot-uno.html index d47a144bef..e7c3bd9fd2 100644 --- a/en/latest/boards/espressif32/esp32vn-iot-uno.html +++ b/en/latest/boards/espressif32/esp32vn-iot-uno.html @@ -1,28 +1,35 @@ + + + + + + ESP32vn IoT Uno — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/espea32.html b/en/latest/boards/espressif32/espea32.html index acd53a9048..5e8e3b3a61 100644 --- a/en/latest/boards/espressif32/espea32.html +++ b/en/latest/boards/espressif32/espea32.html @@ -1,28 +1,35 @@ + + + + + + April Brother ESPea32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/espectro32.html b/en/latest/boards/espressif32/espectro32.html index 0fee877941..abf847764d 100644 --- a/en/latest/boards/espressif32/espectro32.html +++ b/en/latest/boards/espressif32/espectro32.html @@ -1,28 +1,35 @@ + + + + + + ESPectro32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/espino32.html b/en/latest/boards/espressif32/espino32.html index b707209afb..ccad0612f5 100644 --- a/en/latest/boards/espressif32/espino32.html +++ b/en/latest/boards/espressif32/espino32.html @@ -1,28 +1,35 @@ + + + + + + ESPino32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/etboard.html b/en/latest/boards/espressif32/etboard.html index b7c34ac78d..cc2913772e 100644 --- a/en/latest/boards/espressif32/etboard.html +++ b/en/latest/boards/espressif32/etboard.html @@ -1,28 +1,35 @@ + + + + + + ETBoard — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/featheresp32-s2.html b/en/latest/boards/espressif32/featheresp32-s2.html index bead3bee08..6f8161a6ac 100644 --- a/en/latest/boards/espressif32/featheresp32-s2.html +++ b/en/latest/boards/espressif32/featheresp32-s2.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ESP32-S2 Feather Development Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/featheresp32.html b/en/latest/boards/espressif32/featheresp32.html index 5a7c30c72d..6dc4de5bf8 100644 --- a/en/latest/boards/espressif32/featheresp32.html +++ b/en/latest/boards/espressif32/featheresp32.html @@ -1,28 +1,35 @@ + + + + + + Adafruit ESP32 Feather — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/firebeetle32.html b/en/latest/boards/espressif32/firebeetle32.html index b35eea1782..4e42c7702e 100644 --- a/en/latest/boards/espressif32/firebeetle32.html +++ b/en/latest/boards/espressif32/firebeetle32.html @@ -1,28 +1,35 @@ + + + + + + FireBeetle-ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/fm-devkit.html b/en/latest/boards/espressif32/fm-devkit.html index 8d2af5ab2c..015bdbdc6d 100644 --- a/en/latest/boards/espressif32/fm-devkit.html +++ b/en/latest/boards/espressif32/fm-devkit.html @@ -1,28 +1,35 @@ + + + + + + ESP32 FM DevKit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/franzininho_wifi_esp32s2.html b/en/latest/boards/espressif32/franzininho_wifi_esp32s2.html index b85d988570..34ba4134c1 100644 --- a/en/latest/boards/espressif32/franzininho_wifi_esp32s2.html +++ b/en/latest/boards/espressif32/franzininho_wifi_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Franzininho WiFi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/franzininho_wifi_msc_esp32s2.html b/en/latest/boards/espressif32/franzininho_wifi_msc_esp32s2.html index a62a7bd05a..36f10e8406 100644 --- a/en/latest/boards/espressif32/franzininho_wifi_msc_esp32s2.html +++ b/en/latest/boards/espressif32/franzininho_wifi_msc_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Franzininho WiFi MSC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/frogboard.html b/en/latest/boards/espressif32/frogboard.html index 8a9c5773b0..1e1b4647e2 100644 --- a/en/latest/boards/espressif32/frogboard.html +++ b/en/latest/boards/espressif32/frogboard.html @@ -1,28 +1,35 @@ + + + + + + Frog Board ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/healthypi4.html b/en/latest/boards/espressif32/healthypi4.html index 59923dad32..2f719cfec5 100644 --- a/en/latest/boards/espressif32/healthypi4.html +++ b/en/latest/boards/espressif32/healthypi4.html @@ -1,28 +1,35 @@ + + + + + + ProtoCentral HealthyPi 4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wifi_kit_32.html b/en/latest/boards/espressif32/heltec_wifi_kit_32.html index 26c0eec56c..9c20b6d1a8 100644 --- a/en/latest/boards/espressif32/heltec_wifi_kit_32.html +++ b/en/latest/boards/espressif32/heltec_wifi_kit_32.html @@ -1,28 +1,35 @@ + + + + + + Heltec WiFi Kit 32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wifi_kit_32_V3.html b/en/latest/boards/espressif32/heltec_wifi_kit_32_V3.html index e24b2fdc39..cce4e4d58a 100644 --- a/en/latest/boards/espressif32/heltec_wifi_kit_32_V3.html +++ b/en/latest/boards/espressif32/heltec_wifi_kit_32_V3.html @@ -1,28 +1,35 @@ + + + + + + Heltec WiFi Kit 32 (V3) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wifi_kit_32_v2.html b/en/latest/boards/espressif32/heltec_wifi_kit_32_v2.html index 8fdd6a66ef..688d133e6c 100644 --- a/en/latest/boards/espressif32/heltec_wifi_kit_32_v2.html +++ b/en/latest/boards/espressif32/heltec_wifi_kit_32_v2.html @@ -1,28 +1,35 @@ + + + + + + Heltec WiFi Kit 32 (V2) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wifi_lora_32.html b/en/latest/boards/espressif32/heltec_wifi_lora_32.html index d6013b5101..dcc455648f 100644 --- a/en/latest/boards/espressif32/heltec_wifi_lora_32.html +++ b/en/latest/boards/espressif32/heltec_wifi_lora_32.html @@ -1,28 +1,35 @@ + + + + + + Heltec WiFi LoRa 32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wifi_lora_32_V2.html b/en/latest/boards/espressif32/heltec_wifi_lora_32_V2.html index e9f7db08fd..b97f79d118 100644 --- a/en/latest/boards/espressif32/heltec_wifi_lora_32_V2.html +++ b/en/latest/boards/espressif32/heltec_wifi_lora_32_V2.html @@ -1,28 +1,35 @@ + + + + + + Heltec WiFi LoRa 32 (V2) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wifi_lora_32_V3.html b/en/latest/boards/espressif32/heltec_wifi_lora_32_V3.html index 3c8dedc0d4..5828e623a1 100644 --- a/en/latest/boards/espressif32/heltec_wifi_lora_32_V3.html +++ b/en/latest/boards/espressif32/heltec_wifi_lora_32_V3.html @@ -1,28 +1,35 @@ + + + + + + Heltec WiFi LoRa 32 (V3) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wireless_stick.html b/en/latest/boards/espressif32/heltec_wireless_stick.html index b75e005a93..b20173191e 100644 --- a/en/latest/boards/espressif32/heltec_wireless_stick.html +++ b/en/latest/boards/espressif32/heltec_wireless_stick.html @@ -1,28 +1,35 @@ + + + + + + Heltec Wireless Stick — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/heltec_wireless_stick_lite.html b/en/latest/boards/espressif32/heltec_wireless_stick_lite.html index 1f41e25e2a..04cbfdef7a 100644 --- a/en/latest/boards/espressif32/heltec_wireless_stick_lite.html +++ b/en/latest/boards/espressif32/heltec_wireless_stick_lite.html @@ -1,28 +1,35 @@ + + + + + + Heltec Wireless Stick Lite — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/honeylemon.html b/en/latest/boards/espressif32/honeylemon.html index e57262c5b6..99e2dd1dbf 100644 --- a/en/latest/boards/espressif32/honeylemon.html +++ b/en/latest/boards/espressif32/honeylemon.html @@ -1,28 +1,35 @@ + + + + + + HONEYLemon — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/hornbill32dev.html b/en/latest/boards/espressif32/hornbill32dev.html index 01207337e6..9d79166a61 100644 --- a/en/latest/boards/espressif32/hornbill32dev.html +++ b/en/latest/boards/espressif32/hornbill32dev.html @@ -1,28 +1,35 @@ + + + + + + Hornbill ESP32 Dev — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/hornbill32minima.html b/en/latest/boards/espressif32/hornbill32minima.html index 235b8544cb..a5079a3825 100644 --- a/en/latest/boards/espressif32/hornbill32minima.html +++ b/en/latest/boards/espressif32/hornbill32minima.html @@ -1,28 +1,35 @@ + + + + + + Hornbill ESP32 Minima — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/imbrios-logsens-v1p1.html b/en/latest/boards/espressif32/imbrios-logsens-v1p1.html index 21805df4e5..70671c2f87 100644 --- a/en/latest/boards/espressif32/imbrios-logsens-v1p1.html +++ b/en/latest/boards/espressif32/imbrios-logsens-v1p1.html @@ -1,28 +1,35 @@ + + + + + + Imbrios LogSens V1P1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/inex_openkb.html b/en/latest/boards/espressif32/inex_openkb.html index bd67fe90c4..277b47a767 100644 --- a/en/latest/boards/espressif32/inex_openkb.html +++ b/en/latest/boards/espressif32/inex_openkb.html @@ -1,28 +1,35 @@ + + + + + + INEX OpenKB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/intorobot.html b/en/latest/boards/espressif32/intorobot.html index b6f30c4b0c..7d6899318f 100644 --- a/en/latest/boards/espressif32/intorobot.html +++ b/en/latest/boards/espressif32/intorobot.html @@ -1,28 +1,35 @@ + + + + + + IntoRobot Fig — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/iotaap_magnolia.html b/en/latest/boards/espressif32/iotaap_magnolia.html index 3df25b4602..80f39afe1c 100644 --- a/en/latest/boards/espressif32/iotaap_magnolia.html +++ b/en/latest/boards/espressif32/iotaap_magnolia.html @@ -1,28 +1,35 @@ + + + + + + IoTaaP Magnolia — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -738,18 +745,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/iotbusio.html b/en/latest/boards/espressif32/iotbusio.html index 5460d0aae8..23de7b3c43 100644 --- a/en/latest/boards/espressif32/iotbusio.html +++ b/en/latest/boards/espressif32/iotbusio.html @@ -1,28 +1,35 @@ + + + + + + oddWires IoT-Bus Io — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/iotbusproteus.html b/en/latest/boards/espressif32/iotbusproteus.html index 30cc2cacdd..e5fbcb7b3a 100644 --- a/en/latest/boards/espressif32/iotbusproteus.html +++ b/en/latest/boards/espressif32/iotbusproteus.html @@ -1,28 +1,35 @@ + + + + + + oddWires IoT-Bus Proteus — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ioxesp32.html b/en/latest/boards/espressif32/ioxesp32.html index e640faf935..b94822e22a 100644 --- a/en/latest/boards/espressif32/ioxesp32.html +++ b/en/latest/boards/espressif32/ioxesp32.html @@ -1,28 +1,35 @@ + + + + + + ArtronShop IOXESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ioxesp32ps.html b/en/latest/boards/espressif32/ioxesp32ps.html index f7e675ee0e..6813fe38fa 100644 --- a/en/latest/boards/espressif32/ioxesp32ps.html +++ b/en/latest/boards/espressif32/ioxesp32ps.html @@ -1,28 +1,35 @@ + + + + + + ArtronShop IOXESP32PS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/kb32-ft.html b/en/latest/boards/espressif32/kb32-ft.html index 60a75c02b0..5329b985da 100644 --- a/en/latest/boards/espressif32/kb32-ft.html +++ b/en/latest/boards/espressif32/kb32-ft.html @@ -1,28 +1,35 @@ + + + + + + MakerAsia KB32-FT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/kits-edu.html b/en/latest/boards/espressif32/kits-edu.html index eaf14bea4d..a6df60d99d 100644 --- a/en/latest/boards/espressif32/kits-edu.html +++ b/en/latest/boards/espressif32/kits-edu.html @@ -1,28 +1,35 @@ + + + + + + KITS ESP32 EDU — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/labplus_mpython.html b/en/latest/boards/espressif32/labplus_mpython.html index 8dcd4f550b..a704084df9 100644 --- a/en/latest/boards/espressif32/labplus_mpython.html +++ b/en/latest/boards/espressif32/labplus_mpython.html @@ -1,28 +1,35 @@ + + + + + + Labplus mPython — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lilka_v2.html b/en/latest/boards/espressif32/lilka_v2.html index d5f991c266..a6f4d1c5a7 100644 --- a/en/latest/boards/espressif32/lilka_v2.html +++ b/en/latest/boards/espressif32/lilka_v2.html @@ -1,28 +1,35 @@ + + + + + + Lilka v2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lilygo-t-display-s3.html b/en/latest/boards/espressif32/lilygo-t-display-s3.html index 3ad14274d5..22b5ab838c 100644 --- a/en/latest/boards/espressif32/lilygo-t-display-s3.html +++ b/en/latest/boards/espressif32/lilygo-t-display-s3.html @@ -1,28 +1,35 @@ + + + + + + LilyGo T-Display-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lilygo-t-display.html b/en/latest/boards/espressif32/lilygo-t-display.html index 1db6d14858..0357349d87 100644 --- a/en/latest/boards/espressif32/lilygo-t-display.html +++ b/en/latest/boards/espressif32/lilygo-t-display.html @@ -1,28 +1,35 @@ + + + + + + LilyGo T-Display — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lionbit.html b/en/latest/boards/espressif32/lionbit.html index c40d812d73..e574dde5d9 100644 --- a/en/latest/boards/espressif32/lionbit.html +++ b/en/latest/boards/espressif32/lionbit.html @@ -1,28 +1,35 @@ + + + + + + Lion:Bit Dev Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lionbits3.html b/en/latest/boards/espressif32/lionbits3.html index de3a00fb3b..b152f1d0d8 100644 --- a/en/latest/boards/espressif32/lionbits3.html +++ b/en/latest/boards/espressif32/lionbits3.html @@ -1,28 +1,35 @@ + + + + + + Lion:Bit S3 STEM Dev Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin32.html b/en/latest/boards/espressif32/lolin32.html index d8a817c440..a1479b856f 100644 --- a/en/latest/boards/espressif32/lolin32.html +++ b/en/latest/boards/espressif32/lolin32.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin32_lite.html b/en/latest/boards/espressif32/lolin32_lite.html index dbae1973cc..502c4a113f 100644 --- a/en/latest/boards/espressif32/lolin32_lite.html +++ b/en/latest/boards/espressif32/lolin32_lite.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN32 Lite — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_c3_mini.html b/en/latest/boards/espressif32/lolin_c3_mini.html index 9e685c86c3..ea8a12f8f7 100644 --- a/en/latest/boards/espressif32/lolin_c3_mini.html +++ b/en/latest/boards/espressif32/lolin_c3_mini.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN C3 Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_d32.html b/en/latest/boards/espressif32/lolin_d32.html index 473e0b5bcd..144bd20daf 100644 --- a/en/latest/boards/espressif32/lolin_d32.html +++ b/en/latest/boards/espressif32/lolin_d32.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN D32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_d32_pro.html b/en/latest/boards/espressif32/lolin_d32_pro.html index 04030529de..09a05db13d 100644 --- a/en/latest/boards/espressif32/lolin_d32_pro.html +++ b/en/latest/boards/espressif32/lolin_d32_pro.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN D32 PRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_s2_mini.html b/en/latest/boards/espressif32/lolin_s2_mini.html index a423c23975..fd38c4acc0 100644 --- a/en/latest/boards/espressif32/lolin_s2_mini.html +++ b/en/latest/boards/espressif32/lolin_s2_mini.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN S2 Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_s2_pico.html b/en/latest/boards/espressif32/lolin_s2_pico.html index f8de40d281..1f9381c1a1 100644 --- a/en/latest/boards/espressif32/lolin_s2_pico.html +++ b/en/latest/boards/espressif32/lolin_s2_pico.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN S2 PICO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_s3.html b/en/latest/boards/espressif32/lolin_s3.html index 7ef9949e36..05b731b62f 100644 --- a/en/latest/boards/espressif32/lolin_s3.html +++ b/en/latest/boards/espressif32/lolin_s3.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_s3_mini.html b/en/latest/boards/espressif32/lolin_s3_mini.html index 96d15c2fb0..66e446cb58 100644 --- a/en/latest/boards/espressif32/lolin_s3_mini.html +++ b/en/latest/boards/espressif32/lolin_s3_mini.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN S3 Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lolin_s3_pro.html b/en/latest/boards/espressif32/lolin_s3_pro.html index 1307c71e9e..eb8fd1ccb1 100644 --- a/en/latest/boards/espressif32/lolin_s3_pro.html +++ b/en/latest/boards/espressif32/lolin_s3_pro.html @@ -1,28 +1,35 @@ + + + + + + WEMOS LOLIN S3 PRO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lopy.html b/en/latest/boards/espressif32/lopy.html index 9688123ce9..296918cf84 100644 --- a/en/latest/boards/espressif32/lopy.html +++ b/en/latest/boards/espressif32/lopy.html @@ -1,28 +1,35 @@ + + + + + + Pycom LoPy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/lopy4.html b/en/latest/boards/espressif32/lopy4.html index 25f3d84200..c52f712098 100644 --- a/en/latest/boards/espressif32/lopy4.html +++ b/en/latest/boards/espressif32/lopy4.html @@ -1,28 +1,35 @@ + + + + + + Pycom LoPy4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-atom.html b/en/latest/boards/espressif32/m5stack-atom.html index c26c40f807..75da4bdfbd 100644 --- a/en/latest/boards/espressif32/m5stack-atom.html +++ b/en/latest/boards/espressif32/m5stack-atom.html @@ -1,28 +1,35 @@ + + + + + + M5Stack-ATOM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-atoms3.html b/en/latest/boards/espressif32/m5stack-atoms3.html index af943f5a74..3bcecc6759 100644 --- a/en/latest/boards/espressif32/m5stack-atoms3.html +++ b/en/latest/boards/espressif32/m5stack-atoms3.html @@ -1,28 +1,35 @@ + + + + + + M5Stack AtomS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-core-esp32-16M.html b/en/latest/boards/espressif32/m5stack-core-esp32-16M.html index 2536c6f30a..295cd0ae1f 100644 --- a/en/latest/boards/espressif32/m5stack-core-esp32-16M.html +++ b/en/latest/boards/espressif32/m5stack-core-esp32-16M.html @@ -1,28 +1,35 @@ + + + + + + M5Stack Core ESP32 16M — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-core-esp32.html b/en/latest/boards/espressif32/m5stack-core-esp32.html index ccb5892cdf..384083d2a3 100644 --- a/en/latest/boards/espressif32/m5stack-core-esp32.html +++ b/en/latest/boards/espressif32/m5stack-core-esp32.html @@ -1,28 +1,35 @@ + + + + + + M5Stack Core ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-core2.html b/en/latest/boards/espressif32/m5stack-core2.html index cd77362de6..18328a36da 100644 --- a/en/latest/boards/espressif32/m5stack-core2.html +++ b/en/latest/boards/espressif32/m5stack-core2.html @@ -1,28 +1,35 @@ + + + + + + M5Stack Core2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-coreink.html b/en/latest/boards/espressif32/m5stack-coreink.html index 41af0b07e0..b854b74687 100644 --- a/en/latest/boards/espressif32/m5stack-coreink.html +++ b/en/latest/boards/espressif32/m5stack-coreink.html @@ -1,28 +1,35 @@ + + + + + + M5Stack-Core Ink — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-cores3.html b/en/latest/boards/espressif32/m5stack-cores3.html index 68f603e96c..1844428387 100644 --- a/en/latest/boards/espressif32/m5stack-cores3.html +++ b/en/latest/boards/espressif32/m5stack-cores3.html @@ -1,28 +1,35 @@ + + + + + + M5Stack CoreS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-fire.html b/en/latest/boards/espressif32/m5stack-fire.html index e1b915f40a..7c8ab9129a 100644 --- a/en/latest/boards/espressif32/m5stack-fire.html +++ b/en/latest/boards/espressif32/m5stack-fire.html @@ -1,28 +1,35 @@ + + + + + + M5Stack FIRE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-grey.html b/en/latest/boards/espressif32/m5stack-grey.html index 6e3e1b5ca2..2d8a563788 100644 --- a/en/latest/boards/espressif32/m5stack-grey.html +++ b/en/latest/boards/espressif32/m5stack-grey.html @@ -1,28 +1,35 @@ + + + + + + M5Stack GREY ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-stamps3.html b/en/latest/boards/espressif32/m5stack-stamps3.html index 7a7971f1f6..ca6cff555d 100644 --- a/en/latest/boards/espressif32/m5stack-stamps3.html +++ b/en/latest/boards/espressif32/m5stack-stamps3.html @@ -1,28 +1,35 @@ + + + + + + M5Stack StampS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-station.html b/en/latest/boards/espressif32/m5stack-station.html index 550d48e33e..180ea69426 100644 --- a/en/latest/boards/espressif32/m5stack-station.html +++ b/en/latest/boards/espressif32/m5stack-station.html @@ -1,28 +1,35 @@ + + + + + + M5Stack Station — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stack-timer-cam.html b/en/latest/boards/espressif32/m5stack-timer-cam.html index 2b00b1d5ae..9ca5f53bae 100644 --- a/en/latest/boards/espressif32/m5stack-timer-cam.html +++ b/en/latest/boards/espressif32/m5stack-timer-cam.html @@ -1,28 +1,35 @@ + + + + + + M5Stack Timer CAM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stamp-pico.html b/en/latest/boards/espressif32/m5stamp-pico.html index ef829c07f3..20562c6e3e 100644 --- a/en/latest/boards/espressif32/m5stamp-pico.html +++ b/en/latest/boards/espressif32/m5stamp-pico.html @@ -1,28 +1,35 @@ + + + + + + M5Stamp-Pico — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/m5stick-c.html b/en/latest/boards/espressif32/m5stick-c.html index 4bebc36b55..5576940830 100644 --- a/en/latest/boards/espressif32/m5stick-c.html +++ b/en/latest/boards/espressif32/m5stick-c.html @@ -1,28 +1,35 @@ + + + + + + M5Stick-C — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/magicbit.html b/en/latest/boards/espressif32/magicbit.html index 970961eb84..1c5c95ac17 100644 --- a/en/latest/boards/espressif32/magicbit.html +++ b/en/latest/boards/espressif32/magicbit.html @@ -1,28 +1,35 @@ + + + + + + MagicBit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/mgbot-iotik32a.html b/en/latest/boards/espressif32/mgbot-iotik32a.html index c5b558b1b0..83fb23109e 100644 --- a/en/latest/boards/espressif32/mgbot-iotik32a.html +++ b/en/latest/boards/espressif32/mgbot-iotik32a.html @@ -1,28 +1,35 @@ + + + + + + MGBOT IOTIK 32A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/mgbot-iotik32b.html b/en/latest/boards/espressif32/mgbot-iotik32b.html index 0e2a5b6c1b..b30ac5edd7 100644 --- a/en/latest/boards/espressif32/mgbot-iotik32b.html +++ b/en/latest/boards/espressif32/mgbot-iotik32b.html @@ -1,28 +1,35 @@ + + + + + + MGBOT IOTIK 32B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/mhetesp32devkit.html b/en/latest/boards/espressif32/mhetesp32devkit.html index 91ba1e9243..acc6fd2d1c 100644 --- a/en/latest/boards/espressif32/mhetesp32devkit.html +++ b/en/latest/boards/espressif32/mhetesp32devkit.html @@ -1,28 +1,35 @@ + + + + + + MH ET LIVE ESP32DevKIT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/mhetesp32minikit.html b/en/latest/boards/espressif32/mhetesp32minikit.html index 20d4040e4b..bb618a0fdd 100644 --- a/en/latest/boards/espressif32/mhetesp32minikit.html +++ b/en/latest/boards/espressif32/mhetesp32minikit.html @@ -1,28 +1,35 @@ + + + + + + MH ET LIVE ESP32MiniKit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/microduino-core-esp32.html b/en/latest/boards/espressif32/microduino-core-esp32.html index 909586b1b9..a5f885ca66 100644 --- a/en/latest/boards/espressif32/microduino-core-esp32.html +++ b/en/latest/boards/espressif32/microduino-core-esp32.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/micros2.html b/en/latest/boards/espressif32/micros2.html index a005cda156..5014ff69b8 100644 --- a/en/latest/boards/espressif32/micros2.html +++ b/en/latest/boards/espressif32/micros2.html @@ -1,28 +1,35 @@ + + + + + + microS2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/minimain_esp32s2.html b/en/latest/boards/espressif32/minimain_esp32s2.html index 04f4d6ee52..79c1b78221 100644 --- a/en/latest/boards/espressif32/minimain_esp32s2.html +++ b/en/latest/boards/espressif32/minimain_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + Deparment of Alchemy MiniMain ESP32-S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/motorgo_mini_1.html b/en/latest/boards/espressif32/motorgo_mini_1.html index b754b0cf67..3040d9e222 100644 --- a/en/latest/boards/espressif32/motorgo_mini_1.html +++ b/en/latest/boards/espressif32/motorgo_mini_1.html @@ -1,28 +1,35 @@ + + + + + + MotorGo Mini 1 (ESP32-S3) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/namino_arancio.html b/en/latest/boards/espressif32/namino_arancio.html index da260cd91a..b6c47c9482 100644 --- a/en/latest/boards/espressif32/namino_arancio.html +++ b/en/latest/boards/espressif32/namino_arancio.html @@ -1,28 +1,35 @@ + + + + + + Namino Arancio — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/namino_rosso.html b/en/latest/boards/espressif32/namino_rosso.html index 4554cf1bec..0f985d70e7 100644 --- a/en/latest/boards/espressif32/namino_rosso.html +++ b/en/latest/boards/espressif32/namino_rosso.html @@ -1,28 +1,35 @@ + + + + + + Namino Rosso — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/nano32.html b/en/latest/boards/espressif32/nano32.html index b501183c67..b37e351e26 100644 --- a/en/latest/boards/espressif32/nano32.html +++ b/en/latest/boards/espressif32/nano32.html @@ -1,28 +1,35 @@ + + + + + + MakerAsia Nano32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/nebulas3.html b/en/latest/boards/espressif32/nebulas3.html index 9ef7964990..3abf6f4136 100644 --- a/en/latest/boards/espressif32/nebulas3.html +++ b/en/latest/boards/espressif32/nebulas3.html @@ -1,28 +1,35 @@ + + + + + + Kinetic Dynamics Nebula S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/nina_w10.html b/en/latest/boards/espressif32/nina_w10.html index 7e2a3c169f..dfe149470e 100644 --- a/en/latest/boards/espressif32/nina_w10.html +++ b/en/latest/boards/espressif32/nina_w10.html @@ -1,28 +1,35 @@ + + + + + + u-blox NINA-W10 series — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/node32s.html b/en/latest/boards/espressif32/node32s.html index 1cc7d554a0..30300a329c 100644 --- a/en/latest/boards/espressif32/node32s.html +++ b/en/latest/boards/espressif32/node32s.html @@ -1,28 +1,35 @@ + + + + + + Node32s — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/nodemcu-32s.html b/en/latest/boards/espressif32/nodemcu-32s.html index 4c41e5464a..2741b164e7 100644 --- a/en/latest/boards/espressif32/nodemcu-32s.html +++ b/en/latest/boards/espressif32/nodemcu-32s.html @@ -1,28 +1,35 @@ + + + + + + NodeMCU-32S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/nodemcu-32s2.html b/en/latest/boards/espressif32/nodemcu-32s2.html index 37a72a342e..cdd4b51309 100644 --- a/en/latest/boards/espressif32/nodemcu-32s2.html +++ b/en/latest/boards/espressif32/nodemcu-32s2.html @@ -1,28 +1,35 @@ + + + + + + Ai-Thinker NodeMCU-32S2 (ESP-12K) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/nscreen-32.html b/en/latest/boards/espressif32/nscreen-32.html index 3f3c686e4c..153d290085 100644 --- a/en/latest/boards/espressif32/nscreen-32.html +++ b/en/latest/boards/espressif32/nscreen-32.html @@ -1,28 +1,35 @@ + + + + + + YeaCreate NSCREEN-32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/odroid_esp32.html b/en/latest/boards/espressif32/odroid_esp32.html index c42bb1a7b7..e240df63bf 100644 --- a/en/latest/boards/espressif32/odroid_esp32.html +++ b/en/latest/boards/espressif32/odroid_esp32.html @@ -1,28 +1,35 @@ + + + + + + ODROID-GO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/onehorse32dev.html b/en/latest/boards/espressif32/onehorse32dev.html index 520ff8be58..de5ce8270d 100644 --- a/en/latest/boards/espressif32/onehorse32dev.html +++ b/en/latest/boards/espressif32/onehorse32dev.html @@ -1,28 +1,35 @@ + + + + + + Onehorse ESP32 Dev Module — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/oroca_edubot.html b/en/latest/boards/espressif32/oroca_edubot.html index c5afdff2b4..0008ac9214 100644 --- a/en/latest/boards/espressif32/oroca_edubot.html +++ b/en/latest/boards/espressif32/oroca_edubot.html @@ -1,28 +1,35 @@ + + + + + + OROCA EduBot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/pico32.html b/en/latest/boards/espressif32/pico32.html index 75e7ea0e07..54b9724b33 100644 --- a/en/latest/boards/espressif32/pico32.html +++ b/en/latest/boards/espressif32/pico32.html @@ -1,28 +1,35 @@ + + + + + + ESP32 Pico Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/piranha_esp32.html b/en/latest/boards/espressif32/piranha_esp32.html index 22732a99c6..4b1931213b 100644 --- a/en/latest/boards/espressif32/piranha_esp32.html +++ b/en/latest/boards/espressif32/piranha_esp32.html @@ -1,28 +1,35 @@ + + + + + + Fishino Piranha ESP-32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/pocket_32.html b/en/latest/boards/espressif32/pocket_32.html index 05fbf9a99f..56dae168a5 100644 --- a/en/latest/boards/espressif32/pocket_32.html +++ b/en/latest/boards/espressif32/pocket_32.html @@ -1,28 +1,35 @@ + + + + + + Dongsen Tech Pocket 32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/pycom_gpy.html b/en/latest/boards/espressif32/pycom_gpy.html index 954c38d7fa..7ff489014c 100644 --- a/en/latest/boards/espressif32/pycom_gpy.html +++ b/en/latest/boards/espressif32/pycom_gpy.html @@ -1,28 +1,35 @@ + + + + + + Pycom GPy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/qchip.html b/en/latest/boards/espressif32/qchip.html index 26cc996fe7..bfd45b0119 100644 --- a/en/latest/boards/espressif32/qchip.html +++ b/en/latest/boards/espressif32/qchip.html @@ -1,28 +1,35 @@ + + + + + + Qchip — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/quantum.html b/en/latest/boards/espressif32/quantum.html index c776a1ee89..97e3f56212 100644 --- a/en/latest/boards/espressif32/quantum.html +++ b/en/latest/boards/espressif32/quantum.html @@ -1,28 +1,35 @@ + + + + + + Noduino Quantum — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/redpill_esp32s3.html b/en/latest/boards/espressif32/redpill_esp32s3.html index 676279dd48..648f0b132b 100644 --- a/en/latest/boards/espressif32/redpill_esp32s3.html +++ b/en/latest/boards/espressif32/redpill_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + Munich Labs RedPill ESP32-S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/roboheart_hercules.html b/en/latest/boards/espressif32/roboheart_hercules.html index f27e8e91f4..92ae137511 100644 --- a/en/latest/boards/espressif32/roboheart_hercules.html +++ b/en/latest/boards/espressif32/roboheart_hercules.html @@ -1,28 +1,35 @@ + + + + + + RoboHeart Hercules — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/s_odi_ultra.html b/en/latest/boards/espressif32/s_odi_ultra.html index 98047f9173..a42fcb62ae 100644 --- a/en/latest/boards/espressif32/s_odi_ultra.html +++ b/en/latest/boards/espressif32/s_odi_ultra.html @@ -1,28 +1,35 @@ + + + + + + S.ODI Ultra v1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/seeed_xiao_esp32c3.html b/en/latest/boards/espressif32/seeed_xiao_esp32c3.html index ae665a5c40..12a3b89f28 100644 --- a/en/latest/boards/espressif32/seeed_xiao_esp32c3.html +++ b/en/latest/boards/espressif32/seeed_xiao_esp32c3.html @@ -1,28 +1,35 @@ + + + + + + Seeed Studio XIAO ESP32C3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/seeed_xiao_esp32s3.html b/en/latest/boards/espressif32/seeed_xiao_esp32s3.html index 5b59a0ad38..737021c9e2 100644 --- a/en/latest/boards/espressif32/seeed_xiao_esp32s3.html +++ b/en/latest/boards/espressif32/seeed_xiao_esp32s3.html @@ -1,28 +1,35 @@ + + + + + + Seeed Studio XIAO ESP32S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sensebox_mcu_esp32s2.html b/en/latest/boards/espressif32/sensebox_mcu_esp32s2.html index 36dd060f03..964021f7df 100644 --- a/en/latest/boards/espressif32/sensebox_mcu_esp32s2.html +++ b/en/latest/boards/espressif32/sensebox_mcu_esp32s2.html @@ -1,28 +1,35 @@ + + + + + + senseBox MCU-S2 ESP32-S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sensesiot_weizen.html b/en/latest/boards/espressif32/sensesiot_weizen.html index 6279d96b94..92e6229911 100644 --- a/en/latest/boards/espressif32/sensesiot_weizen.html +++ b/en/latest/boards/espressif32/sensesiot_weizen.html @@ -1,28 +1,35 @@ + + + + + + LOGISENSES Senses Weizen — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sg-o_airMon.html b/en/latest/boards/espressif32/sg-o_airMon.html index 8f4b52dc81..f366b36dc9 100644 --- a/en/latest/boards/espressif32/sg-o_airMon.html +++ b/en/latest/boards/espressif32/sg-o_airMon.html @@ -1,28 +1,35 @@ + + + + + + SG-O AirMon — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sparkfun_esp32_iot_redboard.html b/en/latest/boards/espressif32/sparkfun_esp32_iot_redboard.html index bb04198b4e..bd784ab8f4 100644 --- a/en/latest/boards/espressif32/sparkfun_esp32_iot_redboard.html +++ b/en/latest/boards/espressif32/sparkfun_esp32_iot_redboard.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP32 IoT RedBoard — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sparkfun_esp32micromod.html b/en/latest/boards/espressif32/sparkfun_esp32micromod.html index cc9d788326..3d8a4d1bd5 100644 --- a/en/latest/boards/espressif32/sparkfun_esp32micromod.html +++ b/en/latest/boards/espressif32/sparkfun_esp32micromod.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP32 MicroMod — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus.html b/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus.html index 57f13bc73f..43ad3f1a74 100644 --- a/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus.html +++ b/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP32-S2 Thing Plus — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus_c.html b/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus_c.html index 71bdfeedba..dd55644ec6 100644 --- a/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus_c.html +++ b/en/latest/boards/espressif32/sparkfun_esp32s2_thing_plus_c.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP32 Thing Plus C — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/sparkfun_lora_gateway_1-channel.html b/en/latest/boards/espressif32/sparkfun_lora_gateway_1-channel.html index 8ed8488afd..65116fc7aa 100644 --- a/en/latest/boards/espressif32/sparkfun_lora_gateway_1-channel.html +++ b/en/latest/boards/espressif32/sparkfun_lora_gateway_1-channel.html @@ -1,28 +1,35 @@ + + + + + + SparkFun LoRa Gateway 1-Channel — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/tamc_termod_s3.html b/en/latest/boards/espressif32/tamc_termod_s3.html index da9be6ffb5..3ab275f4e7 100644 --- a/en/latest/boards/espressif32/tamc_termod_s3.html +++ b/en/latest/boards/espressif32/tamc_termod_s3.html @@ -1,28 +1,35 @@ + + + + + + TAMC Termod S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/tinypico.html b/en/latest/boards/espressif32/tinypico.html index bd195cf312..8248db1ea9 100644 --- a/en/latest/boards/espressif32/tinypico.html +++ b/en/latest/boards/espressif32/tinypico.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker TinyPICO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/trueverit-iot-driver-mk2.html b/en/latest/boards/espressif32/trueverit-iot-driver-mk2.html index c3ff131676..6f6766ae74 100644 --- a/en/latest/boards/espressif32/trueverit-iot-driver-mk2.html +++ b/en/latest/boards/espressif32/trueverit-iot-driver-mk2.html @@ -1,28 +1,35 @@ + + + + + + Trueverit ESP32 Universal IoT Driver MK II — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/trueverit-iot-driver-mk3.html b/en/latest/boards/espressif32/trueverit-iot-driver-mk3.html index 02b6e08ddc..486aaeaf53 100644 --- a/en/latest/boards/espressif32/trueverit-iot-driver-mk3.html +++ b/en/latest/boards/espressif32/trueverit-iot-driver-mk3.html @@ -1,28 +1,35 @@ + + + + + + Trueverit ESP32 Universal IoT Driver MK III — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/trueverit-iot-driver.html b/en/latest/boards/espressif32/trueverit-iot-driver.html index b98545f686..9b4951bbe5 100644 --- a/en/latest/boards/espressif32/trueverit-iot-driver.html +++ b/en/latest/boards/espressif32/trueverit-iot-driver.html @@ -1,28 +1,35 @@ + + + + + + Trueverit ESP32 Universal IoT Driver — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-lora32-v1.html b/en/latest/boards/espressif32/ttgo-lora32-v1.html index 8c76e1abf7..e474ca52eb 100644 --- a/en/latest/boards/espressif32/ttgo-lora32-v1.html +++ b/en/latest/boards/espressif32/ttgo-lora32-v1.html @@ -1,28 +1,35 @@ + + + + + + TTGO LoRa32-OLED V1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-lora32-v2.html b/en/latest/boards/espressif32/ttgo-lora32-v2.html index 3f5b9e3aba..29e7a517c5 100644 --- a/en/latest/boards/espressif32/ttgo-lora32-v2.html +++ b/en/latest/boards/espressif32/ttgo-lora32-v2.html @@ -1,28 +1,35 @@ + + + + + + TTGO LoRa32-OLED V2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-lora32-v21.html b/en/latest/boards/espressif32/ttgo-lora32-v21.html index eb60e31d84..497db15a99 100644 --- a/en/latest/boards/espressif32/ttgo-lora32-v21.html +++ b/en/latest/boards/espressif32/ttgo-lora32-v21.html @@ -1,28 +1,35 @@ + + + + + + TTGO LoRa32-OLED v2.1.6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-t-beam.html b/en/latest/boards/espressif32/ttgo-t-beam.html index 60b6465bea..95113b21fd 100644 --- a/en/latest/boards/espressif32/ttgo-t-beam.html +++ b/en/latest/boards/espressif32/ttgo-t-beam.html @@ -1,28 +1,35 @@ + + + + + + TTGO T-Beam — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-t-oi-plus.html b/en/latest/boards/espressif32/ttgo-t-oi-plus.html index 4bc75383f4..144d76fd6d 100644 --- a/en/latest/boards/espressif32/ttgo-t-oi-plus.html +++ b/en/latest/boards/espressif32/ttgo-t-oi-plus.html @@ -1,28 +1,35 @@ + + + + + + TTGO T-OI PLUS RISC-V ESP32-C3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-t-watch.html b/en/latest/boards/espressif32/ttgo-t-watch.html index fb028525d2..338164aed0 100644 --- a/en/latest/boards/espressif32/ttgo-t-watch.html +++ b/en/latest/boards/espressif32/ttgo-t-watch.html @@ -1,28 +1,35 @@ + + + + + + TTGO T-Watch — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-t1.html b/en/latest/boards/espressif32/ttgo-t1.html index c25bd59f2a..01d5bf0df1 100644 --- a/en/latest/boards/espressif32/ttgo-t1.html +++ b/en/latest/boards/espressif32/ttgo-t1.html @@ -1,28 +1,35 @@ + + + + + + TTGO T1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-t7-v13-mini32.html b/en/latest/boards/espressif32/ttgo-t7-v13-mini32.html index 5c99c64a09..3df9aab10b 100644 --- a/en/latest/boards/espressif32/ttgo-t7-v13-mini32.html +++ b/en/latest/boards/espressif32/ttgo-t7-v13-mini32.html @@ -1,28 +1,35 @@ + + + + + + TTGO T7 V1.3 Mini32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/ttgo-t7-v14-mini32.html b/en/latest/boards/espressif32/ttgo-t7-v14-mini32.html index b4476db037..5364a1cba2 100644 --- a/en/latest/boards/espressif32/ttgo-t7-v14-mini32.html +++ b/en/latest/boards/espressif32/ttgo-t7-v14-mini32.html @@ -1,28 +1,35 @@ + + + + + + TTGO T7 V1.4 Mini32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/turta_iot_node.html b/en/latest/boards/espressif32/turta_iot_node.html index a3a3f4fb13..75da90d287 100644 --- a/en/latest/boards/espressif32/turta_iot_node.html +++ b/en/latest/boards/espressif32/turta_iot_node.html @@ -1,28 +1,35 @@ + + + + + + Turta IoT Node — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_feathers2.html b/en/latest/boards/espressif32/um_feathers2.html index 13628fff3f..acb57d348e 100644 --- a/en/latest/boards/espressif32/um_feathers2.html +++ b/en/latest/boards/espressif32/um_feathers2.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker FeatherS2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_feathers2_neo.html b/en/latest/boards/espressif32/um_feathers2_neo.html index 2354c3787e..d221a8eded 100644 --- a/en/latest/boards/espressif32/um_feathers2_neo.html +++ b/en/latest/boards/espressif32/um_feathers2_neo.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker FeatherS2 Neo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_feathers3.html b/en/latest/boards/espressif32/um_feathers3.html index b21c8db710..80cf89e768 100644 --- a/en/latest/boards/espressif32/um_feathers3.html +++ b/en/latest/boards/espressif32/um_feathers3.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker FeatherS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_nanos3.html b/en/latest/boards/espressif32/um_nanos3.html index 58cdb0b7f1..499fe6a309 100644 --- a/en/latest/boards/espressif32/um_nanos3.html +++ b/en/latest/boards/espressif32/um_nanos3.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker NanoS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_pros3.html b/en/latest/boards/espressif32/um_pros3.html index 56ba1b70a9..517d3f1dd6 100644 --- a/en/latest/boards/espressif32/um_pros3.html +++ b/en/latest/boards/espressif32/um_pros3.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker PROS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_rmp.html b/en/latest/boards/espressif32/um_rmp.html index ece8702c38..4793220f85 100644 --- a/en/latest/boards/espressif32/um_rmp.html +++ b/en/latest/boards/espressif32/um_rmp.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker RMP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_tinys2.html b/en/latest/boards/espressif32/um_tinys2.html index 3f6aeb0203..4609d19e2a 100644 --- a/en/latest/boards/espressif32/um_tinys2.html +++ b/en/latest/boards/espressif32/um_tinys2.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker TinyS2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/um_tinys3.html b/en/latest/boards/espressif32/um_tinys3.html index 698b856f3d..ce62677507 100644 --- a/en/latest/boards/espressif32/um_tinys3.html +++ b/en/latest/boards/espressif32/um_tinys3.html @@ -1,28 +1,35 @@ + + + + + + Unexpected Maker TinyS3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/unphone7.html b/en/latest/boards/espressif32/unphone7.html index 24db10a5c9..75a961bb74 100644 --- a/en/latest/boards/espressif32/unphone7.html +++ b/en/latest/boards/espressif32/unphone7.html @@ -1,28 +1,35 @@ + + + + + + unPhone 7 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/unphone8.html b/en/latest/boards/espressif32/unphone8.html index 262abb3de3..c540404438 100644 --- a/en/latest/boards/espressif32/unphone8.html +++ b/en/latest/boards/espressif32/unphone8.html @@ -1,28 +1,35 @@ + + + + + + unPhone 8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/unphone9.html b/en/latest/boards/espressif32/unphone9.html index 2adce9cce5..e1cd4465d6 100644 --- a/en/latest/boards/espressif32/unphone9.html +++ b/en/latest/boards/espressif32/unphone9.html @@ -1,28 +1,35 @@ + + + + + + unPhone 9 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/upesy_wroom.html b/en/latest/boards/espressif32/upesy_wroom.html index 37944388d3..55111f31e9 100644 --- a/en/latest/boards/espressif32/upesy_wroom.html +++ b/en/latest/boards/espressif32/upesy_wroom.html @@ -1,28 +1,35 @@ + + + + + + uPesy ESP32 Wroom DevKit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/upesy_wrover.html b/en/latest/boards/espressif32/upesy_wrover.html index 10f32a6b81..5b7abf7ae4 100644 --- a/en/latest/boards/espressif32/upesy_wrover.html +++ b/en/latest/boards/espressif32/upesy_wrover.html @@ -1,28 +1,35 @@ + + + + + + uPesy ESP32 Wrover DevKit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/valtrack_v4_mfw_esp32_c3.html b/en/latest/boards/espressif32/valtrack_v4_mfw_esp32_c3.html index ef1e1f1b8a..a39e7cc897 100644 --- a/en/latest/boards/espressif32/valtrack_v4_mfw_esp32_c3.html +++ b/en/latest/boards/espressif32/valtrack_v4_mfw_esp32_c3.html @@ -1,28 +1,35 @@ + + + + + + Valetron Systems VALTRACK-V4MVF — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/valtrack_v4_vts_esp32_c3.html b/en/latest/boards/espressif32/valtrack_v4_vts_esp32_c3.html index f2144b86c7..80e02cffef 100644 --- a/en/latest/boards/espressif32/valtrack_v4_vts_esp32_c3.html +++ b/en/latest/boards/espressif32/valtrack_v4_vts_esp32_c3.html @@ -1,28 +1,35 @@ + + + + + + Valetron Systems VALTRACK-V4VTS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/vintlabs-devkit-v1.html b/en/latest/boards/espressif32/vintlabs-devkit-v1.html index 361b59ec20..0ec5e842f1 100644 --- a/en/latest/boards/espressif32/vintlabs-devkit-v1.html +++ b/en/latest/boards/espressif32/vintlabs-devkit-v1.html @@ -1,28 +1,35 @@ + + + + + + VintLabs ESP32 Devkit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/watchy.html b/en/latest/boards/espressif32/watchy.html index 67f75d321a..4add20add0 100644 --- a/en/latest/boards/espressif32/watchy.html +++ b/en/latest/boards/espressif32/watchy.html @@ -1,28 +1,35 @@ + + + + + + SQFMI Watchy v2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/weactstudio_esp32c3coreboard.html b/en/latest/boards/espressif32/weactstudio_esp32c3coreboard.html index 82364e4a47..ada21b7274 100644 --- a/en/latest/boards/espressif32/weactstudio_esp32c3coreboard.html +++ b/en/latest/boards/espressif32/weactstudio_esp32c3coreboard.html @@ -1,28 +1,35 @@ + + + + + + WeAct Studio ESP32C3CoreBoard — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wemos_d1_mini32.html b/en/latest/boards/espressif32/wemos_d1_mini32.html index 6e20e151bb..19e3069ccc 100644 --- a/en/latest/boards/espressif32/wemos_d1_mini32.html +++ b/en/latest/boards/espressif32/wemos_d1_mini32.html @@ -1,28 +1,35 @@ + + + + + + WEMOS D1 MINI ESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wemos_d1_uno32.html b/en/latest/boards/espressif32/wemos_d1_uno32.html index 07e83def72..643a9811b8 100644 --- a/en/latest/boards/espressif32/wemos_d1_uno32.html +++ b/en/latest/boards/espressif32/wemos_d1_uno32.html @@ -1,28 +1,35 @@ + + + + + + WEMOS D1 R32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wemosbat.html b/en/latest/boards/espressif32/wemosbat.html index fe416809b9..d07783ed7b 100644 --- a/en/latest/boards/espressif32/wemosbat.html +++ b/en/latest/boards/espressif32/wemosbat.html @@ -1,28 +1,35 @@ + + + + + + WeMos WiFi and Bluetooth Battery — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wesp32.html b/en/latest/boards/espressif32/wesp32.html index 07ee0e7a59..7c0b7387c8 100644 --- a/en/latest/boards/espressif32/wesp32.html +++ b/en/latest/boards/espressif32/wesp32.html @@ -1,28 +1,35 @@ + + + + + + Silicognition wESP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/widora-air.html b/en/latest/boards/espressif32/widora-air.html index b088197675..d700d9a3fe 100644 --- a/en/latest/boards/espressif32/widora-air.html +++ b/en/latest/boards/espressif32/widora-air.html @@ -1,28 +1,35 @@ + + + + + + Widora AIR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wifiduino32.html b/en/latest/boards/espressif32/wifiduino32.html index 37a5fe1bdb..198511533e 100644 --- a/en/latest/boards/espressif32/wifiduino32.html +++ b/en/latest/boards/espressif32/wifiduino32.html @@ -1,28 +1,35 @@ + + + + + + Blinker WiFiduino32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -667,18 +674,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wifiduino32c3.html b/en/latest/boards/espressif32/wifiduino32c3.html index 501f92d04b..b8f819b0f8 100644 --- a/en/latest/boards/espressif32/wifiduino32c3.html +++ b/en/latest/boards/espressif32/wifiduino32c3.html @@ -1,28 +1,35 @@ + + + + + + Blinker WiFiduinoV2 (ESP32-C3) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wifiduino32s3.html b/en/latest/boards/espressif32/wifiduino32s3.html index 0876c67b3c..f9ee3aaa70 100644 --- a/en/latest/boards/espressif32/wifiduino32s3.html +++ b/en/latest/boards/espressif32/wifiduino32s3.html @@ -1,28 +1,35 @@ + + + + + + Blinker WiFiduino32S3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wipy3.html b/en/latest/boards/espressif32/wipy3.html index e8fc69ba0d..50cc6bc722 100644 --- a/en/latest/boards/espressif32/wipy3.html +++ b/en/latest/boards/espressif32/wipy3.html @@ -1,28 +1,35 @@ + + + + + + Pycom WiPy3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/wt32-eth01.html b/en/latest/boards/espressif32/wt32-eth01.html index 4b5fc50bba..cad4819d85 100644 --- a/en/latest/boards/espressif32/wt32-eth01.html +++ b/en/latest/boards/espressif32/wt32-eth01.html @@ -1,28 +1,35 @@ + + + + + + Wireless-Tag WT32-ETH01 Ethernet Module — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif32/xinabox_cw02.html b/en/latest/boards/espressif32/xinabox_cw02.html index 5248789962..704c33fe77 100644 --- a/en/latest/boards/espressif32/xinabox_cw02.html +++ b/en/latest/boards/espressif32/xinabox_cw02.html @@ -1,28 +1,35 @@ + + + + + + XinaBox CW02 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -741,18 +748,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/agruminolemon.html b/en/latest/boards/espressif8266/agruminolemon.html index 05f92c2fff..4a2e8e1f86 100644 --- a/en/latest/boards/espressif8266/agruminolemon.html +++ b/en/latest/boards/espressif8266/agruminolemon.html @@ -1,28 +1,35 @@ + + + + + + Lifely Agrumino Lemon v4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/d1.html b/en/latest/boards/espressif8266/d1.html index e0bedcbbf9..22f73e4ad7 100644 --- a/en/latest/boards/espressif8266/d1.html +++ b/en/latest/boards/espressif8266/d1.html @@ -1,28 +1,35 @@ + + + + + + WEMOS D1 R1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/d1_mini.html b/en/latest/boards/espressif8266/d1_mini.html index 4e6bf279a5..264e099537 100644 --- a/en/latest/boards/espressif8266/d1_mini.html +++ b/en/latest/boards/espressif8266/d1_mini.html @@ -1,28 +1,35 @@ + + + + + + WeMos D1 R2 and mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/d1_mini_lite.html b/en/latest/boards/espressif8266/d1_mini_lite.html index d72e4209d0..78754c434f 100644 --- a/en/latest/boards/espressif8266/d1_mini_lite.html +++ b/en/latest/boards/espressif8266/d1_mini_lite.html @@ -1,28 +1,35 @@ + + + + + + WeMos D1 mini Lite — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -476,18 +483,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/d1_mini_pro.html b/en/latest/boards/espressif8266/d1_mini_pro.html index 93ed066674..c4ab15fcd2 100644 --- a/en/latest/boards/espressif8266/d1_mini_pro.html +++ b/en/latest/boards/espressif8266/d1_mini_pro.html @@ -1,28 +1,35 @@ + + + + + + WeMos D1 mini Pro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/d1_wroom_02.html b/en/latest/boards/espressif8266/d1_wroom_02.html index 1cfe7015ce..bfa7a9e96e 100644 --- a/en/latest/boards/espressif8266/d1_wroom_02.html +++ b/en/latest/boards/espressif8266/d1_wroom_02.html @@ -1,28 +1,35 @@ + + + + + + WeMos D1 ESP-WROOM-02 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/eduinowifi.html b/en/latest/boards/espressif8266/eduinowifi.html index dfa791fbf4..a098fa5c35 100644 --- a/en/latest/boards/espressif8266/eduinowifi.html +++ b/en/latest/boards/espressif8266/eduinowifi.html @@ -1,28 +1,35 @@ + + + + + + Schirmilabs Eduino WiFi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp01.html b/en/latest/boards/espressif8266/esp01.html index 9415efae96..95bc9459b6 100644 --- a/en/latest/boards/espressif8266/esp01.html +++ b/en/latest/boards/espressif8266/esp01.html @@ -1,28 +1,35 @@ + + + + + + Espressif Generic ESP8266 ESP-01 512k — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp01_1m.html b/en/latest/boards/espressif8266/esp01_1m.html index bb2031e761..b084dc9ea6 100644 --- a/en/latest/boards/espressif8266/esp01_1m.html +++ b/en/latest/boards/espressif8266/esp01_1m.html @@ -1,28 +1,35 @@ + + + + + + Espressif Generic ESP8266 ESP-01 1M — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp07.html b/en/latest/boards/espressif8266/esp07.html index 4a795c3383..af4cda485c 100644 --- a/en/latest/boards/espressif8266/esp07.html +++ b/en/latest/boards/espressif8266/esp07.html @@ -1,28 +1,35 @@ + + + + + + Espressif Generic ESP8266 ESP-07 1MB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp07s.html b/en/latest/boards/espressif8266/esp07s.html index ddc33c6974..c134c050b0 100644 --- a/en/latest/boards/espressif8266/esp07s.html +++ b/en/latest/boards/espressif8266/esp07s.html @@ -1,28 +1,35 @@ + + + + + + Espressif Generic ESP8266 ESP-07S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp12e.html b/en/latest/boards/espressif8266/esp12e.html index c6189e4f0d..3fe3a8d039 100644 --- a/en/latest/boards/espressif8266/esp12e.html +++ b/en/latest/boards/espressif8266/esp12e.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP8266 ESP-12E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp210.html b/en/latest/boards/espressif8266/esp210.html index f6c1776887..21c1cc5401 100644 --- a/en/latest/boards/espressif8266/esp210.html +++ b/en/latest/boards/espressif8266/esp210.html @@ -1,28 +1,35 @@ + + + + + + SweetPea ESP-210 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp8285.html b/en/latest/boards/espressif8266/esp8285.html index f0819a8eab..9b2734904d 100644 --- a/en/latest/boards/espressif8266/esp8285.html +++ b/en/latest/boards/espressif8266/esp8285.html @@ -1,28 +1,35 @@ + + + + + + Generic ESP8285 Module — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/esp_wroom_02.html b/en/latest/boards/espressif8266/esp_wroom_02.html index 3c9cf353af..bff86d5094 100644 --- a/en/latest/boards/espressif8266/esp_wroom_02.html +++ b/en/latest/boards/espressif8266/esp_wroom_02.html @@ -1,28 +1,35 @@ + + + + + + Espressif ESP-WROOM-02 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espduino.html b/en/latest/boards/espressif8266/espduino.html index 6438fbba50..e12dbc87da 100644 --- a/en/latest/boards/espressif8266/espduino.html +++ b/en/latest/boards/espressif8266/espduino.html @@ -1,28 +1,35 @@ + + + + + + ESPDuino (ESP-13 Module) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espectro.html b/en/latest/boards/espressif8266/espectro.html index 38992c3cd4..3c319c18a9 100644 --- a/en/latest/boards/espressif8266/espectro.html +++ b/en/latest/boards/espressif8266/espectro.html @@ -1,28 +1,35 @@ + + + + + + ESPectro Core — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espino.html b/en/latest/boards/espressif8266/espino.html index 2b1f37247e..6af9b437ad 100644 --- a/en/latest/boards/espressif8266/espino.html +++ b/en/latest/boards/espressif8266/espino.html @@ -1,28 +1,35 @@ + + + + + + ESPino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espinotee.html b/en/latest/boards/espressif8266/espinotee.html index 12f6c7b118..abd14b8c29 100644 --- a/en/latest/boards/espressif8266/espinotee.html +++ b/en/latest/boards/espressif8266/espinotee.html @@ -1,28 +1,35 @@ + + + + + + ThaiEasyElec ESPino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espmxdevkit.html b/en/latest/boards/espressif8266/espmxdevkit.html index 75649a58d7..1e04227b9f 100644 --- a/en/latest/boards/espressif8266/espmxdevkit.html +++ b/en/latest/boards/espressif8266/espmxdevkit.html @@ -1,28 +1,35 @@ + + + + + + ESP-Mx DevKit (ESP8285) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espresso_lite_v1.html b/en/latest/boards/espressif8266/espresso_lite_v1.html index ced4c4f9e3..e1cd9d97bc 100644 --- a/en/latest/boards/espressif8266/espresso_lite_v1.html +++ b/en/latest/boards/espressif8266/espresso_lite_v1.html @@ -1,28 +1,35 @@ + + + + + + ESPresso Lite 1.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/espresso_lite_v2.html b/en/latest/boards/espressif8266/espresso_lite_v2.html index 55293f6268..c96d374bab 100644 --- a/en/latest/boards/espressif8266/espresso_lite_v2.html +++ b/en/latest/boards/espressif8266/espresso_lite_v2.html @@ -1,28 +1,35 @@ + + + + + + ESPresso Lite 2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/gen4iod.html b/en/latest/boards/espressif8266/gen4iod.html index 4725c51c60..9d18383b4f 100644 --- a/en/latest/boards/espressif8266/gen4iod.html +++ b/en/latest/boards/espressif8266/gen4iod.html @@ -1,28 +1,35 @@ + + + + + + 4D Systems gen4 IoD Range — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/heltec_wifi_kit_8.html b/en/latest/boards/espressif8266/heltec_wifi_kit_8.html index 1ab404be4c..5c0efc58f3 100644 --- a/en/latest/boards/espressif8266/heltec_wifi_kit_8.html +++ b/en/latest/boards/espressif8266/heltec_wifi_kit_8.html @@ -1,28 +1,35 @@ + + + + + + Heltec Wifi kit 8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/huzzah.html b/en/latest/boards/espressif8266/huzzah.html index b7d41c89a0..bdf45ca00b 100644 --- a/en/latest/boards/espressif8266/huzzah.html +++ b/en/latest/boards/espressif8266/huzzah.html @@ -1,28 +1,35 @@ + + + + + + Adafruit HUZZAH ESP8266 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/inventone.html b/en/latest/boards/espressif8266/inventone.html index b1d37e8cc4..d5b3364e95 100644 --- a/en/latest/boards/espressif8266/inventone.html +++ b/en/latest/boards/espressif8266/inventone.html @@ -1,28 +1,35 @@ + + + + + + Invent One — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/modwifi.html b/en/latest/boards/espressif8266/modwifi.html index bd503e595d..e4b4ae02b1 100644 --- a/en/latest/boards/espressif8266/modwifi.html +++ b/en/latest/boards/espressif8266/modwifi.html @@ -1,28 +1,35 @@ + + + + + + Olimex MOD-WIFI-ESP8266(-DEV) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/nodemcu.html b/en/latest/boards/espressif8266/nodemcu.html index 178ae86c8d..b2232a97a4 100644 --- a/en/latest/boards/espressif8266/nodemcu.html +++ b/en/latest/boards/espressif8266/nodemcu.html @@ -1,28 +1,35 @@ + + + + + + NodeMCU 0.9 (ESP-12 Module) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/nodemcuv2.html b/en/latest/boards/espressif8266/nodemcuv2.html index c54468088b..cc31329215 100644 --- a/en/latest/boards/espressif8266/nodemcuv2.html +++ b/en/latest/boards/espressif8266/nodemcuv2.html @@ -1,28 +1,35 @@ + + + + + + NodeMCU 1.0 (ESP-12E Module) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/oak.html b/en/latest/boards/espressif8266/oak.html index e2298642dc..c8291ab23d 100644 --- a/en/latest/boards/espressif8266/oak.html +++ b/en/latest/boards/espressif8266/oak.html @@ -1,28 +1,35 @@ + + + + + + DigiStump Oak — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -476,18 +483,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/phoenix_v1.html b/en/latest/boards/espressif8266/phoenix_v1.html index 710e83e5f7..a651c86598 100644 --- a/en/latest/boards/espressif8266/phoenix_v1.html +++ b/en/latest/boards/espressif8266/phoenix_v1.html @@ -1,28 +1,35 @@ + + + + + + Phoenix 1.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/phoenix_v2.html b/en/latest/boards/espressif8266/phoenix_v2.html index 3287078d83..8d63d67567 100644 --- a/en/latest/boards/espressif8266/phoenix_v2.html +++ b/en/latest/boards/espressif8266/phoenix_v2.html @@ -1,28 +1,35 @@ + + + + + + Phoenix 2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/sonoff_basic.html b/en/latest/boards/espressif8266/sonoff_basic.html index ba623fab32..9c3bd950ef 100644 --- a/en/latest/boards/espressif8266/sonoff_basic.html +++ b/en/latest/boards/espressif8266/sonoff_basic.html @@ -1,28 +1,35 @@ + + + + + + Sonoff Basic — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/sonoff_s20.html b/en/latest/boards/espressif8266/sonoff_s20.html index 672564e3f3..faaebac5ec 100644 --- a/en/latest/boards/espressif8266/sonoff_s20.html +++ b/en/latest/boards/espressif8266/sonoff_s20.html @@ -1,28 +1,35 @@ + + + + + + Sonoff S20 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/sonoff_sv.html b/en/latest/boards/espressif8266/sonoff_sv.html index f61792bfc2..b4326131fa 100644 --- a/en/latest/boards/espressif8266/sonoff_sv.html +++ b/en/latest/boards/espressif8266/sonoff_sv.html @@ -1,28 +1,35 @@ + + + + + + Sonoff SV — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/sonoff_th.html b/en/latest/boards/espressif8266/sonoff_th.html index bc1d2b1c2f..22e6000201 100644 --- a/en/latest/boards/espressif8266/sonoff_th.html +++ b/en/latest/boards/espressif8266/sonoff_th.html @@ -1,28 +1,35 @@ + + + + + + Sonoff TH — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/sparkfunBlynk.html b/en/latest/boards/espressif8266/sparkfunBlynk.html index 0675bc3a33..8764dc8fe4 100644 --- a/en/latest/boards/espressif8266/sparkfunBlynk.html +++ b/en/latest/boards/espressif8266/sparkfunBlynk.html @@ -1,28 +1,35 @@ + + + + + + SparkFun Blynk Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/thing.html b/en/latest/boards/espressif8266/thing.html index f80e6f53eb..273aad55ad 100644 --- a/en/latest/boards/espressif8266/thing.html +++ b/en/latest/boards/espressif8266/thing.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP8266 Thing — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/thingdev.html b/en/latest/boards/espressif8266/thingdev.html index 8f22d5a6cc..01513da472 100644 --- a/en/latest/boards/espressif8266/thingdev.html +++ b/en/latest/boards/espressif8266/thingdev.html @@ -1,28 +1,35 @@ + + + + + + SparkFun ESP8266 Thing Dev — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/wifi_slot.html b/en/latest/boards/espressif8266/wifi_slot.html index 59c824829d..447f07253a 100644 --- a/en/latest/boards/espressif8266/wifi_slot.html +++ b/en/latest/boards/espressif8266/wifi_slot.html @@ -1,28 +1,35 @@ + + + + + + WiFi Slot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/wifiduino.html b/en/latest/boards/espressif8266/wifiduino.html index 8f8bc7fd33..fd13869a97 100644 --- a/en/latest/boards/espressif8266/wifiduino.html +++ b/en/latest/boards/espressif8266/wifiduino.html @@ -1,28 +1,35 @@ + + + + + + WiFiduino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/wifinfo.html b/en/latest/boards/espressif8266/wifinfo.html index 9959c5f7ad..f9c6f1a344 100644 --- a/en/latest/boards/espressif8266/wifinfo.html +++ b/en/latest/boards/espressif8266/wifinfo.html @@ -1,28 +1,35 @@ + + + + + + WifInfo — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/wio_link.html b/en/latest/boards/espressif8266/wio_link.html index f3d163fd32..80f710ed58 100644 --- a/en/latest/boards/espressif8266/wio_link.html +++ b/en/latest/boards/espressif8266/wio_link.html @@ -1,28 +1,35 @@ + + + + + + Wio Link — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/wio_node.html b/en/latest/boards/espressif8266/wio_node.html index fd512aa60b..23e92a06cf 100644 --- a/en/latest/boards/espressif8266/wio_node.html +++ b/en/latest/boards/espressif8266/wio_node.html @@ -1,28 +1,35 @@ + + + + + + Wio Node — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/espressif8266/xinabox_cw01.html b/en/latest/boards/espressif8266/xinabox_cw01.html index 22b5f8b603..aa0be7f934 100644 --- a/en/latest/boards/espressif8266/xinabox_cw01.html +++ b/en/latest/boards/espressif8266/xinabox_cw01.html @@ -1,28 +1,35 @@ + + + + + + XinaBox CW01 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -482,18 +489,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/IBMEthernetKit.html b/en/latest/boards/freescalekinetis/IBMEthernetKit.html index 7eff86ebd7..d1d2a83045 100644 --- a/en/latest/boards/freescalekinetis/IBMEthernetKit.html +++ b/en/latest/boards/freescalekinetis/IBMEthernetKit.html @@ -1,28 +1,35 @@ + + + + + + Ethernet IoT Starter Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -471,18 +478,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_k22f.html b/en/latest/boards/freescalekinetis/frdm_k22f.html index a140737d54..db7a9ab345 100644 --- a/en/latest/boards/freescalekinetis/frdm_k22f.html +++ b/en/latest/boards/freescalekinetis/frdm_k22f.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-K22F — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -474,18 +481,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_k64f.html b/en/latest/boards/freescalekinetis/frdm_k64f.html index ccfdad5389..2f0128fc70 100644 --- a/en/latest/boards/freescalekinetis/frdm_k64f.html +++ b/en/latest/boards/freescalekinetis/frdm_k64f.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-K64F — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -474,18 +481,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_k66f.html b/en/latest/boards/freescalekinetis/frdm_k66f.html index 0611c6aa5f..e719a48771 100644 --- a/en/latest/boards/freescalekinetis/frdm_k66f.html +++ b/en/latest/boards/freescalekinetis/frdm_k66f.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-K66F — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -471,18 +478,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_k82f.html b/en/latest/boards/freescalekinetis/frdm_k82f.html index 6a5f219e23..42d19647c7 100644 --- a/en/latest/boards/freescalekinetis/frdm_k82f.html +++ b/en/latest/boards/freescalekinetis/frdm_k82f.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-K82F — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -474,18 +481,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_kl25z.html b/en/latest/boards/freescalekinetis/frdm_kl25z.html index 3fb3d0f002..1597acc96a 100644 --- a/en/latest/boards/freescalekinetis/frdm_kl25z.html +++ b/en/latest/boards/freescalekinetis/frdm_kl25z.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-KL25Z — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -479,18 +486,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_kl43z.html b/en/latest/boards/freescalekinetis/frdm_kl43z.html index d4bcb5c322..0031d5ff72 100644 --- a/en/latest/boards/freescalekinetis/frdm_kl43z.html +++ b/en/latest/boards/freescalekinetis/frdm_kl43z.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-KL43Z — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -471,18 +478,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_kl46z.html b/en/latest/boards/freescalekinetis/frdm_kl46z.html index 81674c0e39..d82b7d8e77 100644 --- a/en/latest/boards/freescalekinetis/frdm_kl46z.html +++ b/en/latest/boards/freescalekinetis/frdm_kl46z.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-KL46Z — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -471,18 +478,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_kw24d.html b/en/latest/boards/freescalekinetis/frdm_kw24d.html index 2c104b2094..44537ba102 100644 --- a/en/latest/boards/freescalekinetis/frdm_kw24d.html +++ b/en/latest/boards/freescalekinetis/frdm_kw24d.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-KW24D512 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -466,18 +473,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/frdm_kw41z.html b/en/latest/boards/freescalekinetis/frdm_kw41z.html index 21fd5167a8..53bbe0125d 100644 --- a/en/latest/boards/freescalekinetis/frdm_kw41z.html +++ b/en/latest/boards/freescalekinetis/frdm_kw41z.html @@ -1,28 +1,35 @@ + + + + + + Freescale Kinetis FRDM-KW41Z — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -474,18 +481,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/hexiwear.html b/en/latest/boards/freescalekinetis/hexiwear.html index e13ef91850..e55e83f627 100644 --- a/en/latest/boards/freescalekinetis/hexiwear.html +++ b/en/latest/boards/freescalekinetis/hexiwear.html @@ -1,28 +1,35 @@ + + + + + + Hexiwear — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -474,18 +481,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/freescalekinetis/segger_ip_switch.html b/en/latest/boards/freescalekinetis/segger_ip_switch.html index 2a55892722..858cb25298 100644 --- a/en/latest/boards/freescalekinetis/segger_ip_switch.html +++ b/en/latest/boards/freescalekinetis/segger_ip_switch.html @@ -1,28 +1,35 @@ + + + + + + SEGGER IP Switch Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -466,18 +473,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_board.html b/en/latest/boards/heltec-cubecell/cubecell_board.html index 2ea1639b41..d74987d668 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_board.html +++ b/en/latest/boards/heltec-cubecell/cubecell_board.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Board (HTCC-AB01) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_board_plus.html b/en/latest/boards/heltec-cubecell/cubecell_board_plus.html index 8375f11c15..062bc765c3 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_board_plus.html +++ b/en/latest/boards/heltec-cubecell/cubecell_board_plus.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Board Plus (HTCC-AB02) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_board_pro.html b/en/latest/boards/heltec-cubecell/cubecell_board_pro.html index 97007282ac..656344fd0c 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_board_pro.html +++ b/en/latest/boards/heltec-cubecell/cubecell_board_pro.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Board PRO (HTCC-AB03) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_board_v2.html b/en/latest/boards/heltec-cubecell/cubecell_board_v2.html index b7467dc7d6..c40f2590d7 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_board_v2.html +++ b/en/latest/boards/heltec-cubecell/cubecell_board_v2.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Board-V2 (HTCC-AB01-V2) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_capsule.html b/en/latest/boards/heltec-cubecell/cubecell_capsule.html index 5c714cdc31..a4d6dde7b1 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_capsule.html +++ b/en/latest/boards/heltec-cubecell/cubecell_capsule.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Capsule (HTCC-AC01) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_capsule_solar_sensor.html b/en/latest/boards/heltec-cubecell/cubecell_capsule_solar_sensor.html index 5419850233..f91b8ad9c0 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_capsule_solar_sensor.html +++ b/en/latest/boards/heltec-cubecell/cubecell_capsule_solar_sensor.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell Capsule Solar Sensor (HTCC-AC02) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_gps.html b/en/latest/boards/heltec-cubecell/cubecell_gps.html index a851d4bb2f..d987783ddb 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_gps.html +++ b/en/latest/boards/heltec-cubecell/cubecell_gps.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-GPS (HTCC-AB02S) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_module.html b/en/latest/boards/heltec-cubecell/cubecell_module.html index 7de9d471c1..f60a7cb3d0 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_module.html +++ b/en/latest/boards/heltec-cubecell/cubecell_module.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Module (HTCC-AM01) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_module_plus.html b/en/latest/boards/heltec-cubecell/cubecell_module_plus.html index d7a5e223c6..0ec26e3df9 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_module_plus.html +++ b/en/latest/boards/heltec-cubecell/cubecell_module_plus.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Module Plus (HTCC-AM02) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_module_v2.html b/en/latest/boards/heltec-cubecell/cubecell_module_v2.html index 775606790e..8ac1157a78 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_module_v2.html +++ b/en/latest/boards/heltec-cubecell/cubecell_module_v2.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-Module-V2 (HTCC-AM01-V2) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/heltec-cubecell/cubecell_node.html b/en/latest/boards/heltec-cubecell/cubecell_node.html index 5531dacae8..1cff4cfbd0 100644 --- a/en/latest/boards/heltec-cubecell/cubecell_node.html +++ b/en/latest/boards/heltec-cubecell/cubecell_node.html @@ -1,28 +1,35 @@ + + + + + + Heltec CubeCell-1/2AA Node (HTCC-AB02A) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/index.html b/en/latest/boards/index.html index 1a759b21c2..aac49c2811 100644 --- a/en/latest/boards/index.html +++ b/en/latest/boards/index.html @@ -1,28 +1,35 @@ + + + + + + Boards — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -3457,18 +3464,7 @@

TI TIVA jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_arc32/genuino101.html b/en/latest/boards/intel_arc32/genuino101.html index c10640403a..712b3cec43 100644 --- a/en/latest/boards/intel_arc32/genuino101.html +++ b/en/latest/boards/intel_arc32/genuino101.html @@ -1,28 +1,35 @@ + + + + + + Arduino/Genuino 101 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -413,18 +420,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/AT89S51.html b/en/latest/boards/intel_mcs51/AT89S51.html index 6774f312a5..50667d262e 100644 --- a/en/latest/boards/intel_mcs51/AT89S51.html +++ b/en/latest/boards/intel_mcs51/AT89S51.html @@ -1,28 +1,35 @@ + + + + + + Generic AT89S51 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -678,18 +685,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/AT89S52.html b/en/latest/boards/intel_mcs51/AT89S52.html index 946feae4fa..9026d624d5 100644 --- a/en/latest/boards/intel_mcs51/AT89S52.html +++ b/en/latest/boards/intel_mcs51/AT89S52.html @@ -1,28 +1,35 @@ + + + + + + Generic AT89S52 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -678,18 +685,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/CH559.html b/en/latest/boards/intel_mcs51/CH559.html index 783a61ab1b..45465ae9a4 100644 --- a/en/latest/boards/intel_mcs51/CH559.html +++ b/en/latest/boards/intel_mcs51/CH559.html @@ -1,28 +1,35 @@ + + + + + + CH559 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/Generic8051.html b/en/latest/boards/intel_mcs51/Generic8051.html index 7c411befd4..ac486aa5e0 100644 --- a/en/latest/boards/intel_mcs51/Generic8051.html +++ b/en/latest/boards/intel_mcs51/Generic8051.html @@ -1,28 +1,35 @@ + + + + + + Generic 8051 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/Generic8052.html b/en/latest/boards/intel_mcs51/Generic8052.html index 542b855f4a..cff8fef5fb 100644 --- a/en/latest/boards/intel_mcs51/Generic8052.html +++ b/en/latest/boards/intel_mcs51/Generic8052.html @@ -1,28 +1,35 @@ + + + + + + Generic 8052 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP12C5A62S2.html b/en/latest/boards/intel_mcs51/IAP12C5A62S2.html index 16e110df4f..f2f1c91138 100644 --- a/en/latest/boards/intel_mcs51/IAP12C5A62S2.html +++ b/en/latest/boards/intel_mcs51/IAP12C5A62S2.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP12C5A62S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15F106.html b/en/latest/boards/intel_mcs51/IAP15F106.html index 451d4a371f..3c793fd8ba 100644 --- a/en/latest/boards/intel_mcs51/IAP15F106.html +++ b/en/latest/boards/intel_mcs51/IAP15F106.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15F106 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15F206A.html b/en/latest/boards/intel_mcs51/IAP15F206A.html index d73e303c57..4eefaebc9a 100644 --- a/en/latest/boards/intel_mcs51/IAP15F206A.html +++ b/en/latest/boards/intel_mcs51/IAP15F206A.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15F206A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15F2K61S.html b/en/latest/boards/intel_mcs51/IAP15F2K61S.html index 75f19f7474..9a93ec8d6a 100644 --- a/en/latest/boards/intel_mcs51/IAP15F2K61S.html +++ b/en/latest/boards/intel_mcs51/IAP15F2K61S.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15F2K61S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15F2K61S2.html b/en/latest/boards/intel_mcs51/IAP15F2K61S2.html index d50337b361..5a8aa50e52 100644 --- a/en/latest/boards/intel_mcs51/IAP15F2K61S2.html +++ b/en/latest/boards/intel_mcs51/IAP15F2K61S2.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15F2K61S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15F413AD.html b/en/latest/boards/intel_mcs51/IAP15F413AD.html index b9dddbcebf..86265a803b 100644 --- a/en/latest/boards/intel_mcs51/IAP15F413AD.html +++ b/en/latest/boards/intel_mcs51/IAP15F413AD.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15F413AD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W105.html b/en/latest/boards/intel_mcs51/IAP15W105.html index 3d396a2472..c34d671fb3 100644 --- a/en/latest/boards/intel_mcs51/IAP15W105.html +++ b/en/latest/boards/intel_mcs51/IAP15W105.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W105 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W1K29S.html b/en/latest/boards/intel_mcs51/IAP15W1K29S.html index dd89564388..dcca5ef697 100644 --- a/en/latest/boards/intel_mcs51/IAP15W1K29S.html +++ b/en/latest/boards/intel_mcs51/IAP15W1K29S.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W1K29S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W205S.html b/en/latest/boards/intel_mcs51/IAP15W205S.html index f6d5ce984b..79f49df9ff 100644 --- a/en/latest/boards/intel_mcs51/IAP15W205S.html +++ b/en/latest/boards/intel_mcs51/IAP15W205S.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W205S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W413AS.html b/en/latest/boards/intel_mcs51/IAP15W413AS.html index 6453255ca2..8e10810f37 100644 --- a/en/latest/boards/intel_mcs51/IAP15W413AS.html +++ b/en/latest/boards/intel_mcs51/IAP15W413AS.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W413AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W413S.html b/en/latest/boards/intel_mcs51/IAP15W413S.html index 7a8ae88cca..7d007e6337 100644 --- a/en/latest/boards/intel_mcs51/IAP15W413S.html +++ b/en/latest/boards/intel_mcs51/IAP15W413S.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W413S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W4K58S4.html b/en/latest/boards/intel_mcs51/IAP15W4K58S4.html index 8d05bf5ea3..6cf4a86757 100644 --- a/en/latest/boards/intel_mcs51/IAP15W4K58S4.html +++ b/en/latest/boards/intel_mcs51/IAP15W4K58S4.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W4K58S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W4K61S4.html b/en/latest/boards/intel_mcs51/IAP15W4K61S4.html index fb630a2ca4..08f3b5d7b1 100644 --- a/en/latest/boards/intel_mcs51/IAP15W4K61S4.html +++ b/en/latest/boards/intel_mcs51/IAP15W4K61S4.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W4K61S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IAP15W4K63S4.html b/en/latest/boards/intel_mcs51/IAP15W4K63S4.html index 4676c87fd8..ff08299c32 100644 --- a/en/latest/boards/intel_mcs51/IAP15W4K63S4.html +++ b/en/latest/boards/intel_mcs51/IAP15W4K63S4.html @@ -1,28 +1,35 @@ + + + + + + Generic IAP15W4K63S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15F107W.html b/en/latest/boards/intel_mcs51/IRC15F107W.html index 14da029ff8..864838a9e1 100644 --- a/en/latest/boards/intel_mcs51/IRC15F107W.html +++ b/en/latest/boards/intel_mcs51/IRC15F107W.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15F107W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15F2K63S2.html b/en/latest/boards/intel_mcs51/IRC15F2K63S2.html index f646ac11ab..ae3c5bfd2a 100644 --- a/en/latest/boards/intel_mcs51/IRC15F2K63S2.html +++ b/en/latest/boards/intel_mcs51/IRC15F2K63S2.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15F2K63S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15W107.html b/en/latest/boards/intel_mcs51/IRC15W107.html index 4fc379be99..aa17b1be77 100644 --- a/en/latest/boards/intel_mcs51/IRC15W107.html +++ b/en/latest/boards/intel_mcs51/IRC15W107.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15W107 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15W1K31S.html b/en/latest/boards/intel_mcs51/IRC15W1K31S.html index 6b0328e852..d4999bfff8 100644 --- a/en/latest/boards/intel_mcs51/IRC15W1K31S.html +++ b/en/latest/boards/intel_mcs51/IRC15W1K31S.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15W1K31S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15W207S.html b/en/latest/boards/intel_mcs51/IRC15W207S.html index 71c6caaad0..a99bc9182a 100644 --- a/en/latest/boards/intel_mcs51/IRC15W207S.html +++ b/en/latest/boards/intel_mcs51/IRC15W207S.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15W207S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15W415AS.html b/en/latest/boards/intel_mcs51/IRC15W415AS.html index 684e1c4e18..d3f0310e10 100644 --- a/en/latest/boards/intel_mcs51/IRC15W415AS.html +++ b/en/latest/boards/intel_mcs51/IRC15W415AS.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15W415AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/IRC15W415S.html b/en/latest/boards/intel_mcs51/IRC15W415S.html index 67c1764213..0782590f53 100644 --- a/en/latest/boards/intel_mcs51/IRC15W415S.html +++ b/en/latest/boards/intel_mcs51/IRC15W415S.html @@ -1,28 +1,35 @@ + + + + + + Generic IRC15W415S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51BB9AE.html b/en/latest/boards/intel_mcs51/ML51BB9AE.html index b167f1b651..5a5ffe5e36 100644 --- a/en/latest/boards/intel_mcs51/ML51BB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51BB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51BB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51DB9AE.html b/en/latest/boards/intel_mcs51/ML51DB9AE.html index 69e55e48d3..5f148784a0 100644 --- a/en/latest/boards/intel_mcs51/ML51DB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51DB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51DB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51EB9AE.html b/en/latest/boards/intel_mcs51/ML51EB9AE.html index c456cdd1a3..fc918ba59e 100644 --- a/en/latest/boards/intel_mcs51/ML51EB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51EB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51EB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51EC0AE.html b/en/latest/boards/intel_mcs51/ML51EC0AE.html index 7fd02ed5ff..db6a2a2016 100644 --- a/en/latest/boards/intel_mcs51/ML51EC0AE.html +++ b/en/latest/boards/intel_mcs51/ML51EC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51EC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51FB9AE.html b/en/latest/boards/intel_mcs51/ML51FB9AE.html index 1084a93598..60df2f5ecf 100644 --- a/en/latest/boards/intel_mcs51/ML51FB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51FB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51FB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51LD1AE.html b/en/latest/boards/intel_mcs51/ML51LD1AE.html index 022b423028..c343fbe96d 100644 --- a/en/latest/boards/intel_mcs51/ML51LD1AE.html +++ b/en/latest/boards/intel_mcs51/ML51LD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51LD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51OB9AE.html b/en/latest/boards/intel_mcs51/ML51OB9AE.html index 926fb2ea0d..43c6c2b459 100644 --- a/en/latest/boards/intel_mcs51/ML51OB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51OB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51OB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51PB9AE.html b/en/latest/boards/intel_mcs51/ML51PB9AE.html index d31775cf98..009845b734 100644 --- a/en/latest/boards/intel_mcs51/ML51PB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51PB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51PB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51PC0AE.html b/en/latest/boards/intel_mcs51/ML51PC0AE.html index 871a695835..18ec7debc4 100644 --- a/en/latest/boards/intel_mcs51/ML51PC0AE.html +++ b/en/latest/boards/intel_mcs51/ML51PC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51PC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51SD1AE.html b/en/latest/boards/intel_mcs51/ML51SD1AE.html index 33f87bd7a4..018dce4abc 100644 --- a/en/latest/boards/intel_mcs51/ML51SD1AE.html +++ b/en/latest/boards/intel_mcs51/ML51SD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51SD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51TB9AE.html b/en/latest/boards/intel_mcs51/ML51TB9AE.html index 67e20c49bc..8cb7fd5243 100644 --- a/en/latest/boards/intel_mcs51/ML51TB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51TB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51TB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51TC0AE.html b/en/latest/boards/intel_mcs51/ML51TC0AE.html index a490da7be3..8461a54a91 100644 --- a/en/latest/boards/intel_mcs51/ML51TC0AE.html +++ b/en/latest/boards/intel_mcs51/ML51TC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51TC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51TC1AE.html b/en/latest/boards/intel_mcs51/ML51TC1AE.html index 19b8d3bd17..9c0dea3760 100644 --- a/en/latest/boards/intel_mcs51/ML51TC1AE.html +++ b/en/latest/boards/intel_mcs51/ML51TC1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51TC1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51TD1AE.html b/en/latest/boards/intel_mcs51/ML51TD1AE.html index cd847a220d..928031c6c7 100644 --- a/en/latest/boards/intel_mcs51/ML51TD1AE.html +++ b/en/latest/boards/intel_mcs51/ML51TD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51TD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51UB9AE.html b/en/latest/boards/intel_mcs51/ML51UB9AE.html index 49e2ab409f..1efd032f77 100644 --- a/en/latest/boards/intel_mcs51/ML51UB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51UB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51UB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51UC0AE.html b/en/latest/boards/intel_mcs51/ML51UC0AE.html index 0d33b74c77..3e7f17cb4a 100644 --- a/en/latest/boards/intel_mcs51/ML51UC0AE.html +++ b/en/latest/boards/intel_mcs51/ML51UC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51UC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML51XB9AE.html b/en/latest/boards/intel_mcs51/ML51XB9AE.html index 64a945ad62..2f87b3ca78 100644 --- a/en/latest/boards/intel_mcs51/ML51XB9AE.html +++ b/en/latest/boards/intel_mcs51/ML51XB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML51XB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML54LD1AE.html b/en/latest/boards/intel_mcs51/ML54LD1AE.html index 6c377bbbb2..fd0ed0c9fb 100644 --- a/en/latest/boards/intel_mcs51/ML54LD1AE.html +++ b/en/latest/boards/intel_mcs51/ML54LD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML54LD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML54MD1AE.html b/en/latest/boards/intel_mcs51/ML54MD1AE.html index 8bd9d3a76a..2e191ac14d 100644 --- a/en/latest/boards/intel_mcs51/ML54MD1AE.html +++ b/en/latest/boards/intel_mcs51/ML54MD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML54MD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML54SD1AE.html b/en/latest/boards/intel_mcs51/ML54SD1AE.html index 9b48cc680e..2af5405801 100644 --- a/en/latest/boards/intel_mcs51/ML54SD1AE.html +++ b/en/latest/boards/intel_mcs51/ML54SD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML54SD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML56LD1AE.html b/en/latest/boards/intel_mcs51/ML56LD1AE.html index fa81be16fa..cf4c928831 100644 --- a/en/latest/boards/intel_mcs51/ML56LD1AE.html +++ b/en/latest/boards/intel_mcs51/ML56LD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML56LD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML56MD1AE.html b/en/latest/boards/intel_mcs51/ML56MD1AE.html index c1b5e6eca3..05952197d1 100644 --- a/en/latest/boards/intel_mcs51/ML56MD1AE.html +++ b/en/latest/boards/intel_mcs51/ML56MD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML56MD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/ML56SD1AE.html b/en/latest/boards/intel_mcs51/ML56SD1AE.html index cbabe33841..c5ed2a4783 100644 --- a/en/latest/boards/intel_mcs51/ML56SD1AE.html +++ b/en/latest/boards/intel_mcs51/ML56SD1AE.html @@ -1,28 +1,35 @@ + + + + + + Generic ML56SD1AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51BA9AE.html b/en/latest/boards/intel_mcs51/MS51BA9AE.html index 9b497ffd84..debbfa3e1c 100644 --- a/en/latest/boards/intel_mcs51/MS51BA9AE.html +++ b/en/latest/boards/intel_mcs51/MS51BA9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51BA9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51DA9AE.html b/en/latest/boards/intel_mcs51/MS51DA9AE.html index 3d750813f4..9d12cb5b1a 100644 --- a/en/latest/boards/intel_mcs51/MS51DA9AE.html +++ b/en/latest/boards/intel_mcs51/MS51DA9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51DA9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51EC0AE.html b/en/latest/boards/intel_mcs51/MS51EC0AE.html index f81b50fd4c..4616b1a71c 100644 --- a/en/latest/boards/intel_mcs51/MS51EC0AE.html +++ b/en/latest/boards/intel_mcs51/MS51EC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51EC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51FB9AE.html b/en/latest/boards/intel_mcs51/MS51FB9AE.html index 837a1bc63b..668df4eb22 100644 --- a/en/latest/boards/intel_mcs51/MS51FB9AE.html +++ b/en/latest/boards/intel_mcs51/MS51FB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51FB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51FC0AE.html b/en/latest/boards/intel_mcs51/MS51FC0AE.html index d91e1d1e85..6ba45c66f7 100644 --- a/en/latest/boards/intel_mcs51/MS51FC0AE.html +++ b/en/latest/boards/intel_mcs51/MS51FC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51FC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51IA9AE.html b/en/latest/boards/intel_mcs51/MS51IA9AE.html index 084d44e6b7..87222cd3a8 100644 --- a/en/latest/boards/intel_mcs51/MS51IA9AE.html +++ b/en/latest/boards/intel_mcs51/MS51IA9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51IA9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51PC0AE.html b/en/latest/boards/intel_mcs51/MS51PC0AE.html index cab60e6659..4f060cf4f1 100644 --- a/en/latest/boards/intel_mcs51/MS51PC0AE.html +++ b/en/latest/boards/intel_mcs51/MS51PC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51PC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51TC0AE.html b/en/latest/boards/intel_mcs51/MS51TC0AE.html index 48acc92596..f6fedc58ea 100644 --- a/en/latest/boards/intel_mcs51/MS51TC0AE.html +++ b/en/latest/boards/intel_mcs51/MS51TC0AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51TC0AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51XB9AE.html b/en/latest/boards/intel_mcs51/MS51XB9AE.html index e753d6e42e..a440d48839 100644 --- a/en/latest/boards/intel_mcs51/MS51XB9AE.html +++ b/en/latest/boards/intel_mcs51/MS51XB9AE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51XB9AE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51XB9BE.html b/en/latest/boards/intel_mcs51/MS51XB9BE.html index 767ddc9ed8..b6d69f1b35 100644 --- a/en/latest/boards/intel_mcs51/MS51XB9BE.html +++ b/en/latest/boards/intel_mcs51/MS51XB9BE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51XB9BE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/MS51XC0BE.html b/en/latest/boards/intel_mcs51/MS51XC0BE.html index 401511187a..4cb9074148 100644 --- a/en/latest/boards/intel_mcs51/MS51XC0BE.html +++ b/en/latest/boards/intel_mcs51/MS51XC0BE.html @@ -1,28 +1,35 @@ + + + + + + Generic MS51XC0BE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N76E003.html b/en/latest/boards/intel_mcs51/N76E003.html index 1fd4fca00f..80711b1f01 100644 --- a/en/latest/boards/intel_mcs51/N76E003.html +++ b/en/latest/boards/intel_mcs51/N76E003.html @@ -1,28 +1,35 @@ + + + + + + Generic N76E003 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N76E616.html b/en/latest/boards/intel_mcs51/N76E616.html index d4de195272..c4a6594f02 100644 --- a/en/latest/boards/intel_mcs51/N76E616.html +++ b/en/latest/boards/intel_mcs51/N76E616.html @@ -1,28 +1,35 @@ + + + + + + Generic N76E616 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N76E885.html b/en/latest/boards/intel_mcs51/N76E885.html index 4359ccfa04..ffd66d0293 100644 --- a/en/latest/boards/intel_mcs51/N76E885.html +++ b/en/latest/boards/intel_mcs51/N76E885.html @@ -1,28 +1,35 @@ + + + + + + Generic N76E885 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N78E055.html b/en/latest/boards/intel_mcs51/N78E055.html index 2d67a8aeb6..2b76af0073 100644 --- a/en/latest/boards/intel_mcs51/N78E055.html +++ b/en/latest/boards/intel_mcs51/N78E055.html @@ -1,28 +1,35 @@ + + + + + + Generic N78E055 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N78E059.html b/en/latest/boards/intel_mcs51/N78E059.html index 564138e8ad..a95309e01e 100644 --- a/en/latest/boards/intel_mcs51/N78E059.html +++ b/en/latest/boards/intel_mcs51/N78E059.html @@ -1,28 +1,35 @@ + + + + + + Generic N78E059 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N78E366.html b/en/latest/boards/intel_mcs51/N78E366.html index a0e95999e8..869f0b198a 100644 --- a/en/latest/boards/intel_mcs51/N78E366.html +++ b/en/latest/boards/intel_mcs51/N78E366.html @@ -1,28 +1,35 @@ + + + + + + Generic N78E366 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N78E517.html b/en/latest/boards/intel_mcs51/N78E517.html index d0075f79b2..a7ca64e66f 100644 --- a/en/latest/boards/intel_mcs51/N78E517.html +++ b/en/latest/boards/intel_mcs51/N78E517.html @@ -1,28 +1,35 @@ + + + + + + Generic N78E517 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E352.html b/en/latest/boards/intel_mcs51/N79E352.html index fd871344d5..63f6c83d7c 100644 --- a/en/latest/boards/intel_mcs51/N79E352.html +++ b/en/latest/boards/intel_mcs51/N79E352.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E352 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E715.html b/en/latest/boards/intel_mcs51/N79E715.html index b03b67317c..7a3505b29b 100644 --- a/en/latest/boards/intel_mcs51/N79E715.html +++ b/en/latest/boards/intel_mcs51/N79E715.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E715 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E813.html b/en/latest/boards/intel_mcs51/N79E813.html index 80b2c7ace7..b274587595 100644 --- a/en/latest/boards/intel_mcs51/N79E813.html +++ b/en/latest/boards/intel_mcs51/N79E813.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E813 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E8132.html b/en/latest/boards/intel_mcs51/N79E8132.html index b2a6c878a6..e1b829c7bb 100644 --- a/en/latest/boards/intel_mcs51/N79E8132.html +++ b/en/latest/boards/intel_mcs51/N79E8132.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E8132 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E814.html b/en/latest/boards/intel_mcs51/N79E814.html index 662074da45..c4ce66d99e 100644 --- a/en/latest/boards/intel_mcs51/N79E814.html +++ b/en/latest/boards/intel_mcs51/N79E814.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E814 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E815.html b/en/latest/boards/intel_mcs51/N79E815.html index db22a0c741..0287b29b31 100644 --- a/en/latest/boards/intel_mcs51/N79E815.html +++ b/en/latest/boards/intel_mcs51/N79E815.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E815 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E822.html b/en/latest/boards/intel_mcs51/N79E822.html index 7ac12ab5ee..da0792b10b 100644 --- a/en/latest/boards/intel_mcs51/N79E822.html +++ b/en/latest/boards/intel_mcs51/N79E822.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E822 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E823.html b/en/latest/boards/intel_mcs51/N79E823.html index 2829b9618e..78d67546a1 100644 --- a/en/latest/boards/intel_mcs51/N79E823.html +++ b/en/latest/boards/intel_mcs51/N79E823.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E823 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E824.html b/en/latest/boards/intel_mcs51/N79E824.html index a1e6a02234..aa1a9452ff 100644 --- a/en/latest/boards/intel_mcs51/N79E824.html +++ b/en/latest/boards/intel_mcs51/N79E824.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E824 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E825.html b/en/latest/boards/intel_mcs51/N79E825.html index fc98cccd1e..0da7ce9ac3 100644 --- a/en/latest/boards/intel_mcs51/N79E825.html +++ b/en/latest/boards/intel_mcs51/N79E825.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E825 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E843.html b/en/latest/boards/intel_mcs51/N79E843.html index 1b93cbc7b5..b27822bd47 100644 --- a/en/latest/boards/intel_mcs51/N79E843.html +++ b/en/latest/boards/intel_mcs51/N79E843.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E843 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E8432.html b/en/latest/boards/intel_mcs51/N79E8432.html index e5fc7ef557..9f59bac1be 100644 --- a/en/latest/boards/intel_mcs51/N79E8432.html +++ b/en/latest/boards/intel_mcs51/N79E8432.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E8432 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E844.html b/en/latest/boards/intel_mcs51/N79E844.html index ce67f192a3..79b7ecd5a1 100644 --- a/en/latest/boards/intel_mcs51/N79E844.html +++ b/en/latest/boards/intel_mcs51/N79E844.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E844 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E845.html b/en/latest/boards/intel_mcs51/N79E845.html index 7a4aa94eef..bf38494d50 100644 --- a/en/latest/boards/intel_mcs51/N79E845.html +++ b/en/latest/boards/intel_mcs51/N79E845.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E845 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E854.html b/en/latest/boards/intel_mcs51/N79E854.html index e21ff837d8..07b232a9de 100644 --- a/en/latest/boards/intel_mcs51/N79E854.html +++ b/en/latest/boards/intel_mcs51/N79E854.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E854 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E855.html b/en/latest/boards/intel_mcs51/N79E855.html index 113103b912..ea30420d25 100644 --- a/en/latest/boards/intel_mcs51/N79E855.html +++ b/en/latest/boards/intel_mcs51/N79E855.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E855 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/N79E875.html b/en/latest/boards/intel_mcs51/N79E875.html index 7e038f66b2..6e756ba6e5 100644 --- a/en/latest/boards/intel_mcs51/N79E875.html +++ b/en/latest/boards/intel_mcs51/N79E875.html @@ -1,28 +1,35 @@ + + + + + + Generic N79E875 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A08S2.html b/en/latest/boards/intel_mcs51/STC12C5A08S2.html index e9bfdbed10..7b17a75ea2 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A08S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A08S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A08S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A16S2.html b/en/latest/boards/intel_mcs51/STC12C5A16S2.html index 035903964f..cef6850219 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A16S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A16S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A16S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A32S2.html b/en/latest/boards/intel_mcs51/STC12C5A32S2.html index 3add41a8a0..aca101fde4 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A32S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A40S2.html b/en/latest/boards/intel_mcs51/STC12C5A40S2.html index c0c948b8a7..2948f7fc32 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A40S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A40S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A40S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A48S2.html b/en/latest/boards/intel_mcs51/STC12C5A48S2.html index e6ee2f7a07..b89ce9a2d3 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A48S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A48S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A48S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A52S2.html b/en/latest/boards/intel_mcs51/STC12C5A52S2.html index 2a7d79ce54..ac743f1eb8 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A52S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A52S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A52S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A56S2.html b/en/latest/boards/intel_mcs51/STC12C5A56S2.html index 1709c378c4..228fbe342a 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A56S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A56S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A56S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC12C5A60S2.html b/en/latest/boards/intel_mcs51/STC12C5A60S2.html index 7779d34c50..ca6099d652 100644 --- a/en/latest/boards/intel_mcs51/STC12C5A60S2.html +++ b/en/latest/boards/intel_mcs51/STC12C5A60S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC12C5A60S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F100.html b/en/latest/boards/intel_mcs51/STC15F100.html index 8f1444e301..a1e6d0bcee 100644 --- a/en/latest/boards/intel_mcs51/STC15F100.html +++ b/en/latest/boards/intel_mcs51/STC15F100.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F100 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F100W.html b/en/latest/boards/intel_mcs51/STC15F100W.html index f8c4e4b9b6..b175caf98d 100644 --- a/en/latest/boards/intel_mcs51/STC15F100W.html +++ b/en/latest/boards/intel_mcs51/STC15F100W.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F100W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F101.html b/en/latest/boards/intel_mcs51/STC15F101.html index 76066e6eb1..3d20e0caf2 100644 --- a/en/latest/boards/intel_mcs51/STC15F101.html +++ b/en/latest/boards/intel_mcs51/STC15F101.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F101 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F101E.html b/en/latest/boards/intel_mcs51/STC15F101E.html index 2fa3e9cf9e..54e0261539 100644 --- a/en/latest/boards/intel_mcs51/STC15F101E.html +++ b/en/latest/boards/intel_mcs51/STC15F101E.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F101E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F101W.html b/en/latest/boards/intel_mcs51/STC15F101W.html index 00c99928c4..d330efadfa 100644 --- a/en/latest/boards/intel_mcs51/STC15F101W.html +++ b/en/latest/boards/intel_mcs51/STC15F101W.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F101W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F102.html b/en/latest/boards/intel_mcs51/STC15F102.html index c030374557..381befeaaf 100644 --- a/en/latest/boards/intel_mcs51/STC15F102.html +++ b/en/latest/boards/intel_mcs51/STC15F102.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F102 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F102E.html b/en/latest/boards/intel_mcs51/STC15F102E.html index 9285a30979..94768a2b82 100644 --- a/en/latest/boards/intel_mcs51/STC15F102E.html +++ b/en/latest/boards/intel_mcs51/STC15F102E.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F102E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F102W.html b/en/latest/boards/intel_mcs51/STC15F102W.html index 9a1ac6f863..7cdc498f87 100644 --- a/en/latest/boards/intel_mcs51/STC15F102W.html +++ b/en/latest/boards/intel_mcs51/STC15F102W.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F102W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F103.html b/en/latest/boards/intel_mcs51/STC15F103.html index b802d4cb4e..5bc76a9b2f 100644 --- a/en/latest/boards/intel_mcs51/STC15F103.html +++ b/en/latest/boards/intel_mcs51/STC15F103.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F103 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F103E.html b/en/latest/boards/intel_mcs51/STC15F103E.html index 7aa24d056c..3135ec13f9 100644 --- a/en/latest/boards/intel_mcs51/STC15F103E.html +++ b/en/latest/boards/intel_mcs51/STC15F103E.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F103E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F103W.html b/en/latest/boards/intel_mcs51/STC15F103W.html index 84e0265f48..6e062eac34 100644 --- a/en/latest/boards/intel_mcs51/STC15F103W.html +++ b/en/latest/boards/intel_mcs51/STC15F103W.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F103W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F104.html b/en/latest/boards/intel_mcs51/STC15F104.html index 5b45822f3d..5e81ff5172 100644 --- a/en/latest/boards/intel_mcs51/STC15F104.html +++ b/en/latest/boards/intel_mcs51/STC15F104.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F104 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F104E.html b/en/latest/boards/intel_mcs51/STC15F104E.html index 4914f2cce2..08ca3d3dd2 100644 --- a/en/latest/boards/intel_mcs51/STC15F104E.html +++ b/en/latest/boards/intel_mcs51/STC15F104E.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F104E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F104W.html b/en/latest/boards/intel_mcs51/STC15F104W.html index 1147812ab8..80c7714037 100644 --- a/en/latest/boards/intel_mcs51/STC15F104W.html +++ b/en/latest/boards/intel_mcs51/STC15F104W.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F104W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F105.html b/en/latest/boards/intel_mcs51/STC15F105.html index 81c90f3068..f7a5446435 100644 --- a/en/latest/boards/intel_mcs51/STC15F105.html +++ b/en/latest/boards/intel_mcs51/STC15F105.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F105 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F105E.html b/en/latest/boards/intel_mcs51/STC15F105E.html index 53811adf77..ac22550157 100644 --- a/en/latest/boards/intel_mcs51/STC15F105E.html +++ b/en/latest/boards/intel_mcs51/STC15F105E.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F105E — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F105W.html b/en/latest/boards/intel_mcs51/STC15F105W.html index bb01c78574..62b568d88c 100644 --- a/en/latest/boards/intel_mcs51/STC15F105W.html +++ b/en/latest/boards/intel_mcs51/STC15F105W.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F105W — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F201A.html b/en/latest/boards/intel_mcs51/STC15F201A.html index ced357e1e0..f957152ca1 100644 --- a/en/latest/boards/intel_mcs51/STC15F201A.html +++ b/en/latest/boards/intel_mcs51/STC15F201A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F201A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F201EA.html b/en/latest/boards/intel_mcs51/STC15F201EA.html index b4d411c304..81f90142e3 100644 --- a/en/latest/boards/intel_mcs51/STC15F201EA.html +++ b/en/latest/boards/intel_mcs51/STC15F201EA.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F201EA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F202A.html b/en/latest/boards/intel_mcs51/STC15F202A.html index 89da65bcfb..40a5ac7ec3 100644 --- a/en/latest/boards/intel_mcs51/STC15F202A.html +++ b/en/latest/boards/intel_mcs51/STC15F202A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F202A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F202EA.html b/en/latest/boards/intel_mcs51/STC15F202EA.html index 8b2e3fb996..ac758b44c0 100644 --- a/en/latest/boards/intel_mcs51/STC15F202EA.html +++ b/en/latest/boards/intel_mcs51/STC15F202EA.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F202EA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F203A.html b/en/latest/boards/intel_mcs51/STC15F203A.html index a51f305a04..01bf189a8c 100644 --- a/en/latest/boards/intel_mcs51/STC15F203A.html +++ b/en/latest/boards/intel_mcs51/STC15F203A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F203A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F203EA.html b/en/latest/boards/intel_mcs51/STC15F203EA.html index b7554ed4d6..c69a4db6a4 100644 --- a/en/latest/boards/intel_mcs51/STC15F203EA.html +++ b/en/latest/boards/intel_mcs51/STC15F203EA.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F203EA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F204A.html b/en/latest/boards/intel_mcs51/STC15F204A.html index 6ebf29175a..2dfd6c4b4d 100644 --- a/en/latest/boards/intel_mcs51/STC15F204A.html +++ b/en/latest/boards/intel_mcs51/STC15F204A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F204A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F204EA.html b/en/latest/boards/intel_mcs51/STC15F204EA.html index f2340616ce..52bae7162c 100644 --- a/en/latest/boards/intel_mcs51/STC15F204EA.html +++ b/en/latest/boards/intel_mcs51/STC15F204EA.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F204EA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F205A.html b/en/latest/boards/intel_mcs51/STC15F205A.html index f8bcd5f4d5..a3d8443f58 100644 --- a/en/latest/boards/intel_mcs51/STC15F205A.html +++ b/en/latest/boards/intel_mcs51/STC15F205A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F205A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F205EA.html b/en/latest/boards/intel_mcs51/STC15F205EA.html index 2ccf46bf45..a55a9f7ee2 100644 --- a/en/latest/boards/intel_mcs51/STC15F205EA.html +++ b/en/latest/boards/intel_mcs51/STC15F205EA.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F205EA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K08S2.html b/en/latest/boards/intel_mcs51/STC15F2K08S2.html index 4ba2c51632..a2b7c54b36 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K08S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K08S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K08S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K16S2.html b/en/latest/boards/intel_mcs51/STC15F2K16S2.html index 3230f4cc9c..6c7d0b563e 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K16S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K16S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K16S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K24AS.html b/en/latest/boards/intel_mcs51/STC15F2K24AS.html index 70e343219d..9e4c790e52 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K24AS.html +++ b/en/latest/boards/intel_mcs51/STC15F2K24AS.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K24AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K24S2.html b/en/latest/boards/intel_mcs51/STC15F2K24S2.html index 5c482c8579..ad55e27239 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K24S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K24S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K24S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K32S2.html b/en/latest/boards/intel_mcs51/STC15F2K32S2.html index 766bf22f30..2beac720cf 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K32S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K40S2.html b/en/latest/boards/intel_mcs51/STC15F2K40S2.html index 3097e13f59..84cb0fd25b 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K40S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K40S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K40S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K48S2.html b/en/latest/boards/intel_mcs51/STC15F2K48S2.html index 8f68971724..9f941ab589 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K48S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K48S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K48S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K52S2.html b/en/latest/boards/intel_mcs51/STC15F2K52S2.html index 22199cd9d9..02dda104a8 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K52S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K52S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K52S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K56S2.html b/en/latest/boards/intel_mcs51/STC15F2K56S2.html index 5adab57a4b..ad1913f6db 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K56S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K56S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K56S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F2K60S2.html b/en/latest/boards/intel_mcs51/STC15F2K60S2.html index 40c5fcfb43..a850c3caf0 100644 --- a/en/latest/boards/intel_mcs51/STC15F2K60S2.html +++ b/en/latest/boards/intel_mcs51/STC15F2K60S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F2K60S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15F408AD.html b/en/latest/boards/intel_mcs51/STC15F408AD.html index ae8916e8a2..4155b11b3b 100644 --- a/en/latest/boards/intel_mcs51/STC15F408AD.html +++ b/en/latest/boards/intel_mcs51/STC15F408AD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15F408AD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W100.html b/en/latest/boards/intel_mcs51/STC15W100.html index 99339d3a1a..76af57817e 100644 --- a/en/latest/boards/intel_mcs51/STC15W100.html +++ b/en/latest/boards/intel_mcs51/STC15W100.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W100 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W101.html b/en/latest/boards/intel_mcs51/STC15W101.html index 310c69e20b..68b98b143b 100644 --- a/en/latest/boards/intel_mcs51/STC15W101.html +++ b/en/latest/boards/intel_mcs51/STC15W101.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W101 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W102.html b/en/latest/boards/intel_mcs51/STC15W102.html index 3091be07a9..7843907cb1 100644 --- a/en/latest/boards/intel_mcs51/STC15W102.html +++ b/en/latest/boards/intel_mcs51/STC15W102.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W102 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W103.html b/en/latest/boards/intel_mcs51/STC15W103.html index 802460136a..201b166db3 100644 --- a/en/latest/boards/intel_mcs51/STC15W103.html +++ b/en/latest/boards/intel_mcs51/STC15W103.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W103 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W104.html b/en/latest/boards/intel_mcs51/STC15W104.html index 3266741b83..937acd39f8 100644 --- a/en/latest/boards/intel_mcs51/STC15W104.html +++ b/en/latest/boards/intel_mcs51/STC15W104.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W104 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W1K16S.html b/en/latest/boards/intel_mcs51/STC15W1K16S.html index 290ace3a78..910bd2bba8 100644 --- a/en/latest/boards/intel_mcs51/STC15W1K16S.html +++ b/en/latest/boards/intel_mcs51/STC15W1K16S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W1K16S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W1K20S.html b/en/latest/boards/intel_mcs51/STC15W1K20S.html index b2228717bc..1ea2c274df 100644 --- a/en/latest/boards/intel_mcs51/STC15W1K20S.html +++ b/en/latest/boards/intel_mcs51/STC15W1K20S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W1K20S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W1K24S.html b/en/latest/boards/intel_mcs51/STC15W1K24S.html index 79c5eb55f7..9566a01d8d 100644 --- a/en/latest/boards/intel_mcs51/STC15W1K24S.html +++ b/en/latest/boards/intel_mcs51/STC15W1K24S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W1K24S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W201S.html b/en/latest/boards/intel_mcs51/STC15W201S.html index 19f164ae64..b92d2215d2 100644 --- a/en/latest/boards/intel_mcs51/STC15W201S.html +++ b/en/latest/boards/intel_mcs51/STC15W201S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W201S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W202S.html b/en/latest/boards/intel_mcs51/STC15W202S.html index 4b4cc8fd99..bb1dfe188a 100644 --- a/en/latest/boards/intel_mcs51/STC15W202S.html +++ b/en/latest/boards/intel_mcs51/STC15W202S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W202S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W203S.html b/en/latest/boards/intel_mcs51/STC15W203S.html index f8538b92e0..8b5a119ecb 100644 --- a/en/latest/boards/intel_mcs51/STC15W203S.html +++ b/en/latest/boards/intel_mcs51/STC15W203S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W203S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W204S.html b/en/latest/boards/intel_mcs51/STC15W204S.html index 140433b54d..1fe585f11c 100644 --- a/en/latest/boards/intel_mcs51/STC15W204S.html +++ b/en/latest/boards/intel_mcs51/STC15W204S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W204S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W401AS.html b/en/latest/boards/intel_mcs51/STC15W401AS.html index f52010010c..fcb461cac5 100644 --- a/en/latest/boards/intel_mcs51/STC15W401AS.html +++ b/en/latest/boards/intel_mcs51/STC15W401AS.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W401AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W402AS.html b/en/latest/boards/intel_mcs51/STC15W402AS.html index 9f6569a9b8..b751eee0eb 100644 --- a/en/latest/boards/intel_mcs51/STC15W402AS.html +++ b/en/latest/boards/intel_mcs51/STC15W402AS.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W402AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W404AS.html b/en/latest/boards/intel_mcs51/STC15W404AS.html index bf474fc42b..c0d0a12e95 100644 --- a/en/latest/boards/intel_mcs51/STC15W404AS.html +++ b/en/latest/boards/intel_mcs51/STC15W404AS.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W404AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W404S.html b/en/latest/boards/intel_mcs51/STC15W404S.html index 37ff103ca9..1d32c3180d 100644 --- a/en/latest/boards/intel_mcs51/STC15W404S.html +++ b/en/latest/boards/intel_mcs51/STC15W404S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W404S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W408AS.html b/en/latest/boards/intel_mcs51/STC15W408AS.html index c75ba49d1c..fca5ba3866 100644 --- a/en/latest/boards/intel_mcs51/STC15W408AS.html +++ b/en/latest/boards/intel_mcs51/STC15W408AS.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W408AS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W408S.html b/en/latest/boards/intel_mcs51/STC15W408S.html index f38632cd10..6c6c893ea1 100644 --- a/en/latest/boards/intel_mcs51/STC15W408S.html +++ b/en/latest/boards/intel_mcs51/STC15W408S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W408S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W410S.html b/en/latest/boards/intel_mcs51/STC15W410S.html index 8aaed05e46..c571cedfa9 100644 --- a/en/latest/boards/intel_mcs51/STC15W410S.html +++ b/en/latest/boards/intel_mcs51/STC15W410S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W410S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W4K16S4.html b/en/latest/boards/intel_mcs51/STC15W4K16S4.html index 212e9832f6..0d054b9a7e 100644 --- a/en/latest/boards/intel_mcs51/STC15W4K16S4.html +++ b/en/latest/boards/intel_mcs51/STC15W4K16S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W4K16S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W4K32S4.html b/en/latest/boards/intel_mcs51/STC15W4K32S4.html index 048a02c7ab..364414738d 100644 --- a/en/latest/boards/intel_mcs51/STC15W4K32S4.html +++ b/en/latest/boards/intel_mcs51/STC15W4K32S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W4K32S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W4K40S4.html b/en/latest/boards/intel_mcs51/STC15W4K40S4.html index 0e593ccdf3..ebe80c6f6a 100644 --- a/en/latest/boards/intel_mcs51/STC15W4K40S4.html +++ b/en/latest/boards/intel_mcs51/STC15W4K40S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W4K40S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W4K48S4.html b/en/latest/boards/intel_mcs51/STC15W4K48S4.html index 39a6e44968..eadb8042e7 100644 --- a/en/latest/boards/intel_mcs51/STC15W4K48S4.html +++ b/en/latest/boards/intel_mcs51/STC15W4K48S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W4K48S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC15W4K56S4.html b/en/latest/boards/intel_mcs51/STC15W4K56S4.html index 4bd367a913..795c12cce5 100644 --- a/en/latest/boards/intel_mcs51/STC15W4K56S4.html +++ b/en/latest/boards/intel_mcs51/STC15W4K56S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC15W4K56S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC89C516RD+.html b/en/latest/boards/intel_mcs51/STC89C516RD+.html index baa79c8ea6..1ffa64bfa6 100644 --- a/en/latest/boards/intel_mcs51/STC89C516RD+.html +++ b/en/latest/boards/intel_mcs51/STC89C516RD+.html @@ -1,28 +1,35 @@ + + + + + + Generic STC89C516RD+ — PlatformIO latest documentation - + - - - - - - - - - - + + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC89C51RC.html b/en/latest/boards/intel_mcs51/STC89C51RC.html index 40b2e8051f..4985f767e6 100644 --- a/en/latest/boards/intel_mcs51/STC89C51RC.html +++ b/en/latest/boards/intel_mcs51/STC89C51RC.html @@ -1,28 +1,35 @@ + + + + + + Generic STC89C51RC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC89C52RC.html b/en/latest/boards/intel_mcs51/STC89C52RC.html index f110ecb4fc..4e7beb6c23 100644 --- a/en/latest/boards/intel_mcs51/STC89C52RC.html +++ b/en/latest/boards/intel_mcs51/STC89C52RC.html @@ -1,28 +1,35 @@ + + + + + + Generic STC89C52RC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC89C53RC.html b/en/latest/boards/intel_mcs51/STC89C53RC.html index 31f33431ba..f46051bffb 100644 --- a/en/latest/boards/intel_mcs51/STC89C53RC.html +++ b/en/latest/boards/intel_mcs51/STC89C53RC.html @@ -1,28 +1,35 @@ + + + + + + Generic STC89C53RC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC89C54RD+.html b/en/latest/boards/intel_mcs51/STC89C54RD+.html index f6a3c0c8bd..357ecb8e72 100644 --- a/en/latest/boards/intel_mcs51/STC89C54RD+.html +++ b/en/latest/boards/intel_mcs51/STC89C54RD+.html @@ -1,28 +1,35 @@ + + + + + + Generic STC89C54RD+ — PlatformIO latest documentation - + - - - - - - - - - - + + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC89C58RD+.html b/en/latest/boards/intel_mcs51/STC89C58RD+.html index 78362eea4d..40021c641d 100644 --- a/en/latest/boards/intel_mcs51/STC89C58RD+.html +++ b/en/latest/boards/intel_mcs51/STC89C58RD+.html @@ -1,28 +1,35 @@ + + + + + + Generic STC89C58RD+ — PlatformIO latest documentation - + - - - - - - - - - - + + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A4K16S2A12.html b/en/latest/boards/intel_mcs51/STC8A4K16S2A12.html index ebc45935f3..5c371049fa 100644 --- a/en/latest/boards/intel_mcs51/STC8A4K16S2A12.html +++ b/en/latest/boards/intel_mcs51/STC8A4K16S2A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A4K16S2A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A4K32S2A12.html b/en/latest/boards/intel_mcs51/STC8A4K32S2A12.html index 875184012d..beb687cc08 100644 --- a/en/latest/boards/intel_mcs51/STC8A4K32S2A12.html +++ b/en/latest/boards/intel_mcs51/STC8A4K32S2A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A4K32S2A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A4K60S2A12.html b/en/latest/boards/intel_mcs51/STC8A4K60S2A12.html index 009a0112ac..2ef4de2ef7 100644 --- a/en/latest/boards/intel_mcs51/STC8A4K60S2A12.html +++ b/en/latest/boards/intel_mcs51/STC8A4K60S2A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A4K60S2A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A4K64S2A12.html b/en/latest/boards/intel_mcs51/STC8A4K64S2A12.html index ef4cbf6cbe..736d78e7fc 100644 --- a/en/latest/boards/intel_mcs51/STC8A4K64S2A12.html +++ b/en/latest/boards/intel_mcs51/STC8A4K64S2A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A4K64S2A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K16D4.html b/en/latest/boards/intel_mcs51/STC8A8K16D4.html index 5523453b73..7fac10555e 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K16D4.html +++ b/en/latest/boards/intel_mcs51/STC8A8K16D4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K16D4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K16S4A12.html b/en/latest/boards/intel_mcs51/STC8A8K16S4A12.html index e982f73394..737ac2abc0 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K16S4A12.html +++ b/en/latest/boards/intel_mcs51/STC8A8K16S4A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K16S4A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K32D4.html b/en/latest/boards/intel_mcs51/STC8A8K32D4.html index 04a3eeb7f3..5fabc813e1 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K32D4.html +++ b/en/latest/boards/intel_mcs51/STC8A8K32D4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K32D4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K32S4A12.html b/en/latest/boards/intel_mcs51/STC8A8K32S4A12.html index 37986662be..77e01202c8 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K32S4A12.html +++ b/en/latest/boards/intel_mcs51/STC8A8K32S4A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K32S4A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K60D4.html b/en/latest/boards/intel_mcs51/STC8A8K60D4.html index 01deb9da54..8415299b0b 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K60D4.html +++ b/en/latest/boards/intel_mcs51/STC8A8K60D4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K60D4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K60S4A12.html b/en/latest/boards/intel_mcs51/STC8A8K60S4A12.html index 339d5157d2..bf597f72c4 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K60S4A12.html +++ b/en/latest/boards/intel_mcs51/STC8A8K60S4A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K60S4A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K64D4.html b/en/latest/boards/intel_mcs51/STC8A8K64D4.html index d6e96aa6fd..6d60922831 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K64D4.html +++ b/en/latest/boards/intel_mcs51/STC8A8K64D4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K64D4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8A8K64S4A12.html b/en/latest/boards/intel_mcs51/STC8A8K64S4A12.html index 72de0aeb11..55c870b6e1 100644 --- a/en/latest/boards/intel_mcs51/STC8A8K64S4A12.html +++ b/en/latest/boards/intel_mcs51/STC8A8K64S4A12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8A8K64S4A12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C1K08.html b/en/latest/boards/intel_mcs51/STC8C1K08.html index 5265b107f7..5e7edc46d2 100644 --- a/en/latest/boards/intel_mcs51/STC8C1K08.html +++ b/en/latest/boards/intel_mcs51/STC8C1K08.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C1K08 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C1K12.html b/en/latest/boards/intel_mcs51/STC8C1K12.html index a58d3d34e1..d34369992f 100644 --- a/en/latest/boards/intel_mcs51/STC8C1K12.html +++ b/en/latest/boards/intel_mcs51/STC8C1K12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C1K12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K16S2.html b/en/latest/boards/intel_mcs51/STC8C2K16S2.html index ee1df137e3..c92624ca24 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K16S2.html +++ b/en/latest/boards/intel_mcs51/STC8C2K16S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K16S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K16S4.html b/en/latest/boards/intel_mcs51/STC8C2K16S4.html index dd536083d9..4285d4d962 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K16S4.html +++ b/en/latest/boards/intel_mcs51/STC8C2K16S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K16S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K32S2.html b/en/latest/boards/intel_mcs51/STC8C2K32S2.html index 8768980bb9..fe6869b781 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K32S2.html +++ b/en/latest/boards/intel_mcs51/STC8C2K32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K32S4.html b/en/latest/boards/intel_mcs51/STC8C2K32S4.html index 9565be3e1e..ecb5927e15 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K32S4.html +++ b/en/latest/boards/intel_mcs51/STC8C2K32S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K32S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K60S2.html b/en/latest/boards/intel_mcs51/STC8C2K60S2.html index 1123c9384c..a3fbc04960 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K60S2.html +++ b/en/latest/boards/intel_mcs51/STC8C2K60S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K60S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K60S4.html b/en/latest/boards/intel_mcs51/STC8C2K60S4.html index d9bca1c08c..728a2b5c6b 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K60S4.html +++ b/en/latest/boards/intel_mcs51/STC8C2K60S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K60S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K64S2.html b/en/latest/boards/intel_mcs51/STC8C2K64S2.html index 23f5243503..5aa17753e5 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K64S2.html +++ b/en/latest/boards/intel_mcs51/STC8C2K64S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K64S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8C2K64S4.html b/en/latest/boards/intel_mcs51/STC8C2K64S4.html index 3a52bd85e2..f76e4616b8 100644 --- a/en/latest/boards/intel_mcs51/STC8C2K64S4.html +++ b/en/latest/boards/intel_mcs51/STC8C2K64S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8C2K64S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F1K08.html b/en/latest/boards/intel_mcs51/STC8F1K08.html index 264b12cfa3..bac8a2d7e2 100644 --- a/en/latest/boards/intel_mcs51/STC8F1K08.html +++ b/en/latest/boards/intel_mcs51/STC8F1K08.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F1K08 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F1K08S.html b/en/latest/boards/intel_mcs51/STC8F1K08S.html index 7b9ded1507..371ed5c998 100644 --- a/en/latest/boards/intel_mcs51/STC8F1K08S.html +++ b/en/latest/boards/intel_mcs51/STC8F1K08S.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F1K08S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F1K08S2.html b/en/latest/boards/intel_mcs51/STC8F1K08S2.html index 40e053e48b..71378558c9 100644 --- a/en/latest/boards/intel_mcs51/STC8F1K08S2.html +++ b/en/latest/boards/intel_mcs51/STC8F1K08S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F1K08S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F1K08S2A10.html b/en/latest/boards/intel_mcs51/STC8F1K08S2A10.html index b075d89d13..c991151807 100644 --- a/en/latest/boards/intel_mcs51/STC8F1K08S2A10.html +++ b/en/latest/boards/intel_mcs51/STC8F1K08S2A10.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F1K08S2A10 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F1K17.html b/en/latest/boards/intel_mcs51/STC8F1K17.html index 8514b7c3b6..e51ab86e08 100644 --- a/en/latest/boards/intel_mcs51/STC8F1K17.html +++ b/en/latest/boards/intel_mcs51/STC8F1K17.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F1K17 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F1K17S2.html b/en/latest/boards/intel_mcs51/STC8F1K17S2.html index fe4699134a..7cff9e68b4 100644 --- a/en/latest/boards/intel_mcs51/STC8F1K17S2.html +++ b/en/latest/boards/intel_mcs51/STC8F1K17S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F1K17S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K08S2.html b/en/latest/boards/intel_mcs51/STC8F2K08S2.html index 02558cfbb3..bc3dcd431d 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K08S2.html +++ b/en/latest/boards/intel_mcs51/STC8F2K08S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K08S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K16S2.html b/en/latest/boards/intel_mcs51/STC8F2K16S2.html index 29657473a1..bac58f2974 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K16S2.html +++ b/en/latest/boards/intel_mcs51/STC8F2K16S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K16S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K16S4.html b/en/latest/boards/intel_mcs51/STC8F2K16S4.html index dc200be8a0..c037095d2b 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K16S4.html +++ b/en/latest/boards/intel_mcs51/STC8F2K16S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K16S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K32S2.html b/en/latest/boards/intel_mcs51/STC8F2K32S2.html index 26e35529cd..2bd5122df5 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K32S2.html +++ b/en/latest/boards/intel_mcs51/STC8F2K32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K32S4.html b/en/latest/boards/intel_mcs51/STC8F2K32S4.html index 96c81d23f8..23c792b5ad 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K32S4.html +++ b/en/latest/boards/intel_mcs51/STC8F2K32S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K32S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K60S2.html b/en/latest/boards/intel_mcs51/STC8F2K60S2.html index 07bfa3caa2..87a18da00e 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K60S2.html +++ b/en/latest/boards/intel_mcs51/STC8F2K60S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K60S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K60S4.html b/en/latest/boards/intel_mcs51/STC8F2K60S4.html index 9668949ffd..2a62583bfb 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K60S4.html +++ b/en/latest/boards/intel_mcs51/STC8F2K60S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K60S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K64S2.html b/en/latest/boards/intel_mcs51/STC8F2K64S2.html index 5b57c5636c..d95d91b341 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K64S2.html +++ b/en/latest/boards/intel_mcs51/STC8F2K64S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K64S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8F2K64S4.html b/en/latest/boards/intel_mcs51/STC8F2K64S4.html index b3d0a04790..b1ab47f3fa 100644 --- a/en/latest/boards/intel_mcs51/STC8F2K64S4.html +++ b/en/latest/boards/intel_mcs51/STC8F2K64S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8F2K64S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K08.html b/en/latest/boards/intel_mcs51/STC8G1K08.html index f82110046c..4f6463b681 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K08.html +++ b/en/latest/boards/intel_mcs51/STC8G1K08.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K08 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K08A.html b/en/latest/boards/intel_mcs51/STC8G1K08A.html index b1823c46e6..05653efd82 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K08A.html +++ b/en/latest/boards/intel_mcs51/STC8G1K08A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K08A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K08T.html b/en/latest/boards/intel_mcs51/STC8G1K08T.html index 5e6f1ee1d8..af413f23d0 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K08T.html +++ b/en/latest/boards/intel_mcs51/STC8G1K08T.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K08T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K12.html b/en/latest/boards/intel_mcs51/STC8G1K12.html index e5d0714b61..1a8dac433a 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K12.html +++ b/en/latest/boards/intel_mcs51/STC8G1K12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K12A.html b/en/latest/boards/intel_mcs51/STC8G1K12A.html index 85c63afdf3..47f1383dfe 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K12A.html +++ b/en/latest/boards/intel_mcs51/STC8G1K12A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K12A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K17.html b/en/latest/boards/intel_mcs51/STC8G1K17.html index 1c77f1653c..10d4f32b8a 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K17.html +++ b/en/latest/boards/intel_mcs51/STC8G1K17.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K17 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K17A.html b/en/latest/boards/intel_mcs51/STC8G1K17A.html index 41b329005a..33de7c2594 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K17A.html +++ b/en/latest/boards/intel_mcs51/STC8G1K17A.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K17A — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G1K17T.html b/en/latest/boards/intel_mcs51/STC8G1K17T.html index b9be031ed3..80e5d40982 100644 --- a/en/latest/boards/intel_mcs51/STC8G1K17T.html +++ b/en/latest/boards/intel_mcs51/STC8G1K17T.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G1K17T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K16S2.html b/en/latest/boards/intel_mcs51/STC8G2K16S2.html index f439710a5d..ba886df93b 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K16S2.html +++ b/en/latest/boards/intel_mcs51/STC8G2K16S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K16S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K16S4.html b/en/latest/boards/intel_mcs51/STC8G2K16S4.html index dae6afb935..aeb9a8c17b 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K16S4.html +++ b/en/latest/boards/intel_mcs51/STC8G2K16S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K16S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K32S2.html b/en/latest/boards/intel_mcs51/STC8G2K32S2.html index 0c8215a3ad..afb3488090 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K32S2.html +++ b/en/latest/boards/intel_mcs51/STC8G2K32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K32S4.html b/en/latest/boards/intel_mcs51/STC8G2K32S4.html index cbda65fdf6..fc1759f6fd 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K32S4.html +++ b/en/latest/boards/intel_mcs51/STC8G2K32S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K32S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K60S2.html b/en/latest/boards/intel_mcs51/STC8G2K60S2.html index 7edbdeb3de..699ed60d82 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K60S2.html +++ b/en/latest/boards/intel_mcs51/STC8G2K60S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K60S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K60S4.html b/en/latest/boards/intel_mcs51/STC8G2K60S4.html index aa3c9540db..9a1dde3f81 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K60S4.html +++ b/en/latest/boards/intel_mcs51/STC8G2K60S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K60S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K64S2.html b/en/latest/boards/intel_mcs51/STC8G2K64S2.html index 94c1f69d42..e720fef36f 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K64S2.html +++ b/en/latest/boards/intel_mcs51/STC8G2K64S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K64S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8G2K64S4.html b/en/latest/boards/intel_mcs51/STC8G2K64S4.html index ede1a8ccda..69602f578b 100644 --- a/en/latest/boards/intel_mcs51/STC8G2K64S4.html +++ b/en/latest/boards/intel_mcs51/STC8G2K64S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8G2K64S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H04.html b/en/latest/boards/intel_mcs51/STC8H04.html index 7bf84adacf..ec009d2654 100644 --- a/en/latest/boards/intel_mcs51/STC8H04.html +++ b/en/latest/boards/intel_mcs51/STC8H04.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H04 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H04A10.html b/en/latest/boards/intel_mcs51/STC8H04A10.html index 35362bb206..278e689406 100644 --- a/en/latest/boards/intel_mcs51/STC8H04A10.html +++ b/en/latest/boards/intel_mcs51/STC8H04A10.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H04A10 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K08.html b/en/latest/boards/intel_mcs51/STC8H1K08.html index 3a1671c1e0..4fb93800cb 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K08.html +++ b/en/latest/boards/intel_mcs51/STC8H1K08.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K08 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K08S2.html b/en/latest/boards/intel_mcs51/STC8H1K08S2.html index 132b9328c0..f06788399c 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K08S2.html +++ b/en/latest/boards/intel_mcs51/STC8H1K08S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K08S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K08S2A10.html b/en/latest/boards/intel_mcs51/STC8H1K08S2A10.html index 8df4ac029b..51c3b9bfb9 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K08S2A10.html +++ b/en/latest/boards/intel_mcs51/STC8H1K08S2A10.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K08S2A10 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K12.html b/en/latest/boards/intel_mcs51/STC8H1K12.html index bf754e5f94..0c49cf615e 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K12.html +++ b/en/latest/boards/intel_mcs51/STC8H1K12.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K12 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K16.html b/en/latest/boards/intel_mcs51/STC8H1K16.html index 6c52147c23..7592731bc3 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K16.html +++ b/en/latest/boards/intel_mcs51/STC8H1K16.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K16 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K16S2.html b/en/latest/boards/intel_mcs51/STC8H1K16S2.html index 13ef6c6ddb..b930c0157f 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K16S2.html +++ b/en/latest/boards/intel_mcs51/STC8H1K16S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K16S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K16S2A10.html b/en/latest/boards/intel_mcs51/STC8H1K16S2A10.html index 0c3e88e68d..9ebd52a6ae 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K16S2A10.html +++ b/en/latest/boards/intel_mcs51/STC8H1K16S2A10.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K16S2A10 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K17.html b/en/latest/boards/intel_mcs51/STC8H1K17.html index 7aa5459e91..a268ebe274 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K17.html +++ b/en/latest/boards/intel_mcs51/STC8H1K17.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K17 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K24.html b/en/latest/boards/intel_mcs51/STC8H1K24.html index 9908ff4f1e..ad1f3f6ed6 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K24.html +++ b/en/latest/boards/intel_mcs51/STC8H1K24.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K24 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K28.html b/en/latest/boards/intel_mcs51/STC8H1K28.html index 5c244a683e..cc8c8f22d8 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K28.html +++ b/en/latest/boards/intel_mcs51/STC8H1K28.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K28 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K32S2.html b/en/latest/boards/intel_mcs51/STC8H1K32S2.html index 11fcf6ccee..c594a494bf 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K32S2.html +++ b/en/latest/boards/intel_mcs51/STC8H1K32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K32S2A10.html b/en/latest/boards/intel_mcs51/STC8H1K32S2A10.html index cb882d789b..ec493810da 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K32S2A10.html +++ b/en/latest/boards/intel_mcs51/STC8H1K32S2A10.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K32S2A10 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K33.html b/en/latest/boards/intel_mcs51/STC8H1K33.html index 41a5f5dc02..3f3f30b30f 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K33.html +++ b/en/latest/boards/intel_mcs51/STC8H1K33.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K33 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H1K64S2A10.html b/en/latest/boards/intel_mcs51/STC8H1K64S2A10.html index 61fbd9b0a7..20189c33da 100644 --- a/en/latest/boards/intel_mcs51/STC8H1K64S2A10.html +++ b/en/latest/boards/intel_mcs51/STC8H1K64S2A10.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H1K64S2A10 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H2K32T.html b/en/latest/boards/intel_mcs51/STC8H2K32T.html index 231c42a203..d89c76f04b 100644 --- a/en/latest/boards/intel_mcs51/STC8H2K32T.html +++ b/en/latest/boards/intel_mcs51/STC8H2K32T.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H2K32T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H2K48T.html b/en/latest/boards/intel_mcs51/STC8H2K48T.html index 4301aed193..d861f9105c 100644 --- a/en/latest/boards/intel_mcs51/STC8H2K48T.html +++ b/en/latest/boards/intel_mcs51/STC8H2K48T.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H2K48T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H2K60T.html b/en/latest/boards/intel_mcs51/STC8H2K60T.html index 5b1cfdda8e..50e24d84e0 100644 --- a/en/latest/boards/intel_mcs51/STC8H2K60T.html +++ b/en/latest/boards/intel_mcs51/STC8H2K60T.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H2K60T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H2K64T.html b/en/latest/boards/intel_mcs51/STC8H2K64T.html index ecf3df4aa1..e414187155 100644 --- a/en/latest/boards/intel_mcs51/STC8H2K64T.html +++ b/en/latest/boards/intel_mcs51/STC8H2K64T.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H2K64T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K32S2.html b/en/latest/boards/intel_mcs51/STC8H3K32S2.html index 543f9567e4..7840486efc 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K32S2.html +++ b/en/latest/boards/intel_mcs51/STC8H3K32S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K32S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K32S4.html b/en/latest/boards/intel_mcs51/STC8H3K32S4.html index aed7f710f7..31e38e2fd7 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K32S4.html +++ b/en/latest/boards/intel_mcs51/STC8H3K32S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K32S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K48S2.html b/en/latest/boards/intel_mcs51/STC8H3K48S2.html index bbcfb352c0..74e507092e 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K48S2.html +++ b/en/latest/boards/intel_mcs51/STC8H3K48S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K48S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K48S4.html b/en/latest/boards/intel_mcs51/STC8H3K48S4.html index 10ada6b274..1e5b38e693 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K48S4.html +++ b/en/latest/boards/intel_mcs51/STC8H3K48S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K48S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K60S2.html b/en/latest/boards/intel_mcs51/STC8H3K60S2.html index 0abd5d3488..c26aea2107 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K60S2.html +++ b/en/latest/boards/intel_mcs51/STC8H3K60S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K60S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K60S4.html b/en/latest/boards/intel_mcs51/STC8H3K60S4.html index ad9c6d4c77..60658b8e81 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K60S4.html +++ b/en/latest/boards/intel_mcs51/STC8H3K60S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K60S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K64S2.html b/en/latest/boards/intel_mcs51/STC8H3K64S2.html index a22d10e8e2..16887dcf60 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K64S2.html +++ b/en/latest/boards/intel_mcs51/STC8H3K64S2.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K64S2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H3K64S4.html b/en/latest/boards/intel_mcs51/STC8H3K64S4.html index 7150c36993..aefb0fde9c 100644 --- a/en/latest/boards/intel_mcs51/STC8H3K64S4.html +++ b/en/latest/boards/intel_mcs51/STC8H3K64S4.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H3K64S4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K32LCD.html b/en/latest/boards/intel_mcs51/STC8H4K32LCD.html index 3d7c83be09..b2a89e4eca 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K32LCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K32LCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K32LCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K32TLCD.html b/en/latest/boards/intel_mcs51/STC8H4K32TLCD.html index 2b64f446f7..15977b780f 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K32TLCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K32TLCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K32TLCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K32TLR.html b/en/latest/boards/intel_mcs51/STC8H4K32TLR.html index f9a5440624..9cb2943e14 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K32TLR.html +++ b/en/latest/boards/intel_mcs51/STC8H4K32TLR.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K32TLR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K48LCD.html b/en/latest/boards/intel_mcs51/STC8H4K48LCD.html index 539b336f06..627ab959d4 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K48LCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K48LCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K48LCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K48TLCD.html b/en/latest/boards/intel_mcs51/STC8H4K48TLCD.html index 57994a2ec6..bb386baaae 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K48TLCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K48TLCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K48TLCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K48TLR.html b/en/latest/boards/intel_mcs51/STC8H4K48TLR.html index 194545f16e..2b91781e74 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K48TLR.html +++ b/en/latest/boards/intel_mcs51/STC8H4K48TLR.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K48TLR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K60LCD.html b/en/latest/boards/intel_mcs51/STC8H4K60LCD.html index a751d4d497..1d2255f294 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K60LCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K60LCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K60LCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K60TLCD.html b/en/latest/boards/intel_mcs51/STC8H4K60TLCD.html index d7dd0d0fd8..678b04ac5d 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K60TLCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K60TLCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K60TLCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K60TLR.html b/en/latest/boards/intel_mcs51/STC8H4K60TLR.html index 745ce130d3..35302a3993 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K60TLR.html +++ b/en/latest/boards/intel_mcs51/STC8H4K60TLR.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K60TLR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K64LCD.html b/en/latest/boards/intel_mcs51/STC8H4K64LCD.html index a7b0aed4b9..0877ae728d 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K64LCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K64LCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K64LCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K64TLCD.html b/en/latest/boards/intel_mcs51/STC8H4K64TLCD.html index 265460b57e..680908fc16 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K64TLCD.html +++ b/en/latest/boards/intel_mcs51/STC8H4K64TLCD.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K64TLCD — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H4K64TLR.html b/en/latest/boards/intel_mcs51/STC8H4K64TLR.html index 675db5afdb..cf5fc89dd7 100644 --- a/en/latest/boards/intel_mcs51/STC8H4K64TLR.html +++ b/en/latest/boards/intel_mcs51/STC8H4K64TLR.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H4K64TLR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H8K32U.html b/en/latest/boards/intel_mcs51/STC8H8K32U.html index d817d61c7f..24628d0063 100644 --- a/en/latest/boards/intel_mcs51/STC8H8K32U.html +++ b/en/latest/boards/intel_mcs51/STC8H8K32U.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H8K32U — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H8K48U.html b/en/latest/boards/intel_mcs51/STC8H8K48U.html index b6d666ee9a..32893bdbd3 100644 --- a/en/latest/boards/intel_mcs51/STC8H8K48U.html +++ b/en/latest/boards/intel_mcs51/STC8H8K48U.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H8K48U — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H8K60U.html b/en/latest/boards/intel_mcs51/STC8H8K60U.html index d178e6eac0..fae72be990 100644 --- a/en/latest/boards/intel_mcs51/STC8H8K60U.html +++ b/en/latest/boards/intel_mcs51/STC8H8K60U.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H8K60U — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/STC8H8K64U.html b/en/latest/boards/intel_mcs51/STC8H8K64U.html index 513bf75e63..73cab2e8f9 100644 --- a/en/latest/boards/intel_mcs51/STC8H8K64U.html +++ b/en/latest/boards/intel_mcs51/STC8H8K64U.html @@ -1,28 +1,35 @@ + + + + + + Generic STC8H8K64U — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E2051.html b/en/latest/boards/intel_mcs51/W79E2051.html index 0cba333bbf..991a0b8f7d 100644 --- a/en/latest/boards/intel_mcs51/W79E2051.html +++ b/en/latest/boards/intel_mcs51/W79E2051.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E2051 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E4051.html b/en/latest/boards/intel_mcs51/W79E4051.html index 37f9850bbb..911ef7e57c 100644 --- a/en/latest/boards/intel_mcs51/W79E4051.html +++ b/en/latest/boards/intel_mcs51/W79E4051.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E4051 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E632.html b/en/latest/boards/intel_mcs51/W79E632.html index 954b029668..b5b8a15edf 100644 --- a/en/latest/boards/intel_mcs51/W79E632.html +++ b/en/latest/boards/intel_mcs51/W79E632.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E632 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E633.html b/en/latest/boards/intel_mcs51/W79E633.html index 99ed6d3533..1c45863d1c 100644 --- a/en/latest/boards/intel_mcs51/W79E633.html +++ b/en/latest/boards/intel_mcs51/W79E633.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E633 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E658.html b/en/latest/boards/intel_mcs51/W79E658.html index 9f1103a1d5..0e042268d5 100644 --- a/en/latest/boards/intel_mcs51/W79E658.html +++ b/en/latest/boards/intel_mcs51/W79E658.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E658 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E659.html b/en/latest/boards/intel_mcs51/W79E659.html index 91a7fd8a12..9c589b77d3 100644 --- a/en/latest/boards/intel_mcs51/W79E659.html +++ b/en/latest/boards/intel_mcs51/W79E659.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E659 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/intel_mcs51/W79E8213.html b/en/latest/boards/intel_mcs51/W79E8213.html index f782dabf3b..55b72070e7 100644 --- a/en/latest/boards/intel_mcs51/W79E8213.html +++ b/en/latest/boards/intel_mcs51/W79E8213.html @@ -1,28 +1,35 @@ + + + + + + Generic W79E8213 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -659,18 +666,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/lattice_ice40/icestick.html b/en/latest/boards/lattice_ice40/icestick.html index d9c5c5fbda..5d6cf9e42a 100644 --- a/en/latest/boards/lattice_ice40/icestick.html +++ b/en/latest/boards/lattice_ice40/icestick.html @@ -1,28 +1,35 @@ + + + + + + Lattice iCEstick FPGA Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -397,18 +404,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/lattice_ice40/icezum.html b/en/latest/boards/lattice_ice40/icezum.html index 3e79e8e714..8cf30bdb9c 100644 --- a/en/latest/boards/lattice_ice40/icezum.html +++ b/en/latest/boards/lattice_ice40/icezum.html @@ -1,28 +1,35 @@ + + + + + + IceZUM Alhambra FPGA — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -397,18 +404,7 @@

Debugging - - - + \ No newline at end of file diff --git a/en/latest/boards/linux_arm/raspberrypi_1b.html b/en/latest/boards/linux_arm/raspberrypi_1b.html index 9dc5322559..8acf56b8f9 100644 --- a/en/latest/boards/linux_arm/raspberrypi_1b.html +++ b/en/latest/boards/linux_arm/raspberrypi_1b.html @@ -1,28 +1,35 @@ + + + + + + Raspberry Pi 1 Model B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -416,18 +423,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/linux_arm/raspberrypi_2b.html b/en/latest/boards/linux_arm/raspberrypi_2b.html index 8edb459c73..2c757e0579 100644 --- a/en/latest/boards/linux_arm/raspberrypi_2b.html +++ b/en/latest/boards/linux_arm/raspberrypi_2b.html @@ -1,28 +1,35 @@ + + + + + + Raspberry Pi 2 Model B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -416,18 +423,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/linux_arm/raspberrypi_3b.html b/en/latest/boards/linux_arm/raspberrypi_3b.html index a1cb4d7a19..af163251d9 100644 --- a/en/latest/boards/linux_arm/raspberrypi_3b.html +++ b/en/latest/boards/linux_arm/raspberrypi_3b.html @@ -1,28 +1,35 @@ + + + + + + Raspberry Pi 3 Model B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -416,18 +423,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/linux_arm/raspberrypi_zero.html b/en/latest/boards/linux_arm/raspberrypi_zero.html index 0709e91b4f..c4375c204c 100644 --- a/en/latest/boards/linux_arm/raspberrypi_zero.html +++ b/en/latest/boards/linux_arm/raspberrypi_zero.html @@ -1,28 +1,35 @@ + + + + + + Raspberry Pi Zero — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -416,18 +423,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/max32600mbed.html b/en/latest/boards/maxim32/max32600mbed.html index f029d53bb0..5aea6fa2f0 100644 --- a/en/latest/boards/maxim32/max32600mbed.html +++ b/en/latest/boards/maxim32/max32600mbed.html @@ -1,28 +1,35 @@ + + + + + + Maxim ARM mbed Enabled Development Platform for MAX32600 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/max32620fthr.html b/en/latest/boards/maxim32/max32620fthr.html index 86c05df95b..9b6d761aaf 100644 --- a/en/latest/boards/maxim32/max32620fthr.html +++ b/en/latest/boards/maxim32/max32620fthr.html @@ -1,28 +1,35 @@ + + + + + + MAX32620FTHR — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/max32620hsp.html b/en/latest/boards/maxim32/max32620hsp.html index 1274af887b..006f7d43d5 100644 --- a/en/latest/boards/maxim32/max32620hsp.html +++ b/en/latest/boards/maxim32/max32620hsp.html @@ -1,28 +1,35 @@ + + + + + + Maxim Health Sensor Platform — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/max32625mbed.html b/en/latest/boards/maxim32/max32625mbed.html index 7324a91c13..ae697b1e1e 100644 --- a/en/latest/boards/maxim32/max32625mbed.html +++ b/en/latest/boards/maxim32/max32625mbed.html @@ -1,28 +1,35 @@ + + + + + + MAX32625MBED — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -421,18 +428,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/max32625pico.html b/en/latest/boards/maxim32/max32625pico.html index 499d53cf6e..5a6a45ad14 100644 --- a/en/latest/boards/maxim32/max32625pico.html +++ b/en/latest/boards/maxim32/max32625pico.html @@ -1,28 +1,35 @@ + + + + + + MAX32625PICO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -421,18 +428,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/max32630fthr.html b/en/latest/boards/maxim32/max32630fthr.html index b53e5dde93..ae5c8759f9 100644 --- a/en/latest/boards/maxim32/max32630fthr.html +++ b/en/latest/boards/maxim32/max32630fthr.html @@ -1,28 +1,35 @@ + + + + + + Maxim MAX32630FTHR Application Platform — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -421,18 +428,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/maxwsnenv.html b/en/latest/boards/maxim32/maxwsnenv.html index 0ee578f12e..c72d1c23a9 100644 --- a/en/latest/boards/maxim32/maxwsnenv.html +++ b/en/latest/boards/maxim32/maxwsnenv.html @@ -1,28 +1,35 @@ + + + + + + Maxim Wireless Sensor Node Demonstrator — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/sdt32620b.html b/en/latest/boards/maxim32/sdt32620b.html index a58914e8f5..70a74000ef 100644 --- a/en/latest/boards/maxim32/sdt32620b.html +++ b/en/latest/boards/maxim32/sdt32620b.html @@ -1,28 +1,35 @@ + + + + + + SDT32620B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -421,18 +428,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/maxim32/sdt32625b.html b/en/latest/boards/maxim32/sdt32625b.html index 8538fcd495..56fe12c637 100644 --- a/en/latest/boards/maxim32/sdt32625b.html +++ b/en/latest/boards/maxim32/sdt32625b.html @@ -1,28 +1,35 @@ + + + + + + SDT32625B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -421,18 +428,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/cerebot32mx4.html b/en/latest/boards/microchippic32/cerebot32mx4.html index 018c793246..c009d25e9e 100644 --- a/en/latest/boards/microchippic32/cerebot32mx4.html +++ b/en/latest/boards/microchippic32/cerebot32mx4.html @@ -1,28 +1,35 @@ + + + + + + Digilent Cerebot 32MX4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/cerebot32mx7.html b/en/latest/boards/microchippic32/cerebot32mx7.html index 0efc3cfe50..707bcb4ff0 100644 --- a/en/latest/boards/microchippic32/cerebot32mx7.html +++ b/en/latest/boards/microchippic32/cerebot32mx7.html @@ -1,28 +1,35 @@ + + + + + + Digilent Cerebot 32MX7 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_cmod.html b/en/latest/boards/microchippic32/chipkit_cmod.html index c48ad50fe0..4374520c4a 100644 --- a/en/latest/boards/microchippic32/chipkit_cmod.html +++ b/en/latest/boards/microchippic32/chipkit_cmod.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT Cmod — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_dp32.html b/en/latest/boards/microchippic32/chipkit_dp32.html index 4a514b1bc2..1cc34281fd 100644 --- a/en/latest/boards/microchippic32/chipkit_dp32.html +++ b/en/latest/boards/microchippic32/chipkit_dp32.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT DP32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_mx3.html b/en/latest/boards/microchippic32/chipkit_mx3.html index 8e1f032a40..860e4f363c 100644 --- a/en/latest/boards/microchippic32/chipkit_mx3.html +++ b/en/latest/boards/microchippic32/chipkit_mx3.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT MX3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_pi.html b/en/latest/boards/microchippic32/chipkit_pi.html index b439063632..e410b9609a 100644 --- a/en/latest/boards/microchippic32/chipkit_pi.html +++ b/en/latest/boards/microchippic32/chipkit_pi.html @@ -1,28 +1,35 @@ + + + + + + Element14 chipKIT Pi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_pro_mx4.html b/en/latest/boards/microchippic32/chipkit_pro_mx4.html index 4774768fad..91fa7b6790 100644 --- a/en/latest/boards/microchippic32/chipkit_pro_mx4.html +++ b/en/latest/boards/microchippic32/chipkit_pro_mx4.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT Pro MX4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_pro_mx7.html b/en/latest/boards/microchippic32/chipkit_pro_mx7.html index 383ef8afc5..f2e24f9a00 100644 --- a/en/latest/boards/microchippic32/chipkit_pro_mx7.html +++ b/en/latest/boards/microchippic32/chipkit_pro_mx7.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT Pro MX7 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_uc32.html b/en/latest/boards/microchippic32/chipkit_uc32.html index 01bfc837b1..3f4c564f0a 100644 --- a/en/latest/boards/microchippic32/chipkit_uc32.html +++ b/en/latest/boards/microchippic32/chipkit_uc32.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT uC32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_wf32.html b/en/latest/boards/microchippic32/chipkit_wf32.html index 59f0626b30..510781bfd4 100644 --- a/en/latest/boards/microchippic32/chipkit_wf32.html +++ b/en/latest/boards/microchippic32/chipkit_wf32.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT WF32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_wifire.html b/en/latest/boards/microchippic32/chipkit_wifire.html index 411f00438a..f87121fce5 100644 --- a/en/latest/boards/microchippic32/chipkit_wifire.html +++ b/en/latest/boards/microchippic32/chipkit_wifire.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT WiFire — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/chipkit_wifire_revc.html b/en/latest/boards/microchippic32/chipkit_wifire_revc.html index 43e41b1481..3e5ee7aad5 100644 --- a/en/latest/boards/microchippic32/chipkit_wifire_revc.html +++ b/en/latest/boards/microchippic32/chipkit_wifire_revc.html @@ -1,28 +1,35 @@ + + + + + + chipKIT WiFire rev. C — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/clicker2.html b/en/latest/boards/microchippic32/clicker2.html index 9820d53ba5..6e7ec5b309 100644 --- a/en/latest/boards/microchippic32/clicker2.html +++ b/en/latest/boards/microchippic32/clicker2.html @@ -1,28 +1,35 @@ + + + + + + MikroElektronika Clicker 2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/cui32.html b/en/latest/boards/microchippic32/cui32.html index caa67260e8..223efdbba5 100644 --- a/en/latest/boards/microchippic32/cui32.html +++ b/en/latest/boards/microchippic32/cui32.html @@ -1,28 +1,35 @@ + + + + + + Pic32 CUI32-Development Stick — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/cui32stem.html b/en/latest/boards/microchippic32/cui32stem.html index d99d998b82..9accf55350 100644 --- a/en/latest/boards/microchippic32/cui32stem.html +++ b/en/latest/boards/microchippic32/cui32stem.html @@ -1,28 +1,35 @@ + + + + + + SeeedStudio CUI32stem — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/dsmini.html b/en/latest/boards/microchippic32/dsmini.html index c25992a56f..89c6cd68a9 100644 --- a/en/latest/boards/microchippic32/dsmini.html +++ b/en/latest/boards/microchippic32/dsmini.html @@ -1,28 +1,35 @@ + + + + + + DataStation Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/flipnclickmz.html b/en/latest/boards/microchippic32/flipnclickmz.html index d18408cc68..65771d3a62 100644 --- a/en/latest/boards/microchippic32/flipnclickmz.html +++ b/en/latest/boards/microchippic32/flipnclickmz.html @@ -1,28 +1,35 @@ + + + + + + MikroElektronika Flip N Click MZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/fubarino_mini.html b/en/latest/boards/microchippic32/fubarino_mini.html index a8001e690c..af0578f514 100644 --- a/en/latest/boards/microchippic32/fubarino_mini.html +++ b/en/latest/boards/microchippic32/fubarino_mini.html @@ -1,28 +1,35 @@ + + + + + + Fubarino Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/fubarino_mini_20.html b/en/latest/boards/microchippic32/fubarino_mini_20.html index 2c5dfa003b..0aab15b4a3 100644 --- a/en/latest/boards/microchippic32/fubarino_mini_20.html +++ b/en/latest/boards/microchippic32/fubarino_mini_20.html @@ -1,28 +1,35 @@ + + + + + + Mini 2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/fubarino_sd.html b/en/latest/boards/microchippic32/fubarino_sd.html index 4e5ea98111..0bffa7b174 100644 --- a/en/latest/boards/microchippic32/fubarino_sd.html +++ b/en/latest/boards/microchippic32/fubarino_sd.html @@ -1,28 +1,35 @@ + + + + + + Fubarino SD (1.5) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/helvepic32.html b/en/latest/boards/microchippic32/helvepic32.html index 5698c640ee..acdf6205d3 100644 --- a/en/latest/boards/microchippic32/helvepic32.html +++ b/en/latest/boards/microchippic32/helvepic32.html @@ -1,28 +1,35 @@ + + + + + + HelvePic32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/helvepic32_breadboardside.html b/en/latest/boards/microchippic32/helvepic32_breadboardside.html index 306736b8b0..8bfb2ed152 100644 --- a/en/latest/boards/microchippic32/helvepic32_breadboardside.html +++ b/en/latest/boards/microchippic32/helvepic32_breadboardside.html @@ -1,28 +1,35 @@ + + + + + + HelvePic32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/helvepic32_mx270.html b/en/latest/boards/microchippic32/helvepic32_mx270.html index 85819fb117..4133e4594d 100644 --- a/en/latest/boards/microchippic32/helvepic32_mx270.html +++ b/en/latest/boards/microchippic32/helvepic32_mx270.html @@ -1,28 +1,35 @@ + + + + + + HelvePic32 MX270 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/helvepic32_robot.html b/en/latest/boards/microchippic32/helvepic32_robot.html index 73febd9e17..78501f8e07 100644 --- a/en/latest/boards/microchippic32/helvepic32_robot.html +++ b/en/latest/boards/microchippic32/helvepic32_robot.html @@ -1,28 +1,35 @@ + + + + + + HelvePic32 Robot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/helvepic32_smd.html b/en/latest/boards/microchippic32/helvepic32_smd.html index 1063394bda..a9601ec4a5 100644 --- a/en/latest/boards/microchippic32/helvepic32_smd.html +++ b/en/latest/boards/microchippic32/helvepic32_smd.html @@ -1,28 +1,35 @@ + + + + + + HelvePic32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/helvepic32_smd_mx270.html b/en/latest/boards/microchippic32/helvepic32_smd_mx270.html index 2f24e0bc78..10ad17e0cb 100644 --- a/en/latest/boards/microchippic32/helvepic32_smd_mx270.html +++ b/en/latest/boards/microchippic32/helvepic32_smd_mx270.html @@ -1,28 +1,35 @@ + + + + + + HelvePic32 SMD MX270 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/lenny.html b/en/latest/boards/microchippic32/lenny.html index 4c5e2d2d86..bb6a2e805f 100644 --- a/en/latest/boards/microchippic32/lenny.html +++ b/en/latest/boards/microchippic32/lenny.html @@ -1,28 +1,35 @@ + + + + + + chipKIT Lenny — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/mega_pic32.html b/en/latest/boards/microchippic32/mega_pic32.html index 691252fe22..ea61f420c6 100644 --- a/en/latest/boards/microchippic32/mega_pic32.html +++ b/en/latest/boards/microchippic32/mega_pic32.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT MAX32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/nofire.html b/en/latest/boards/microchippic32/nofire.html index 276349f86b..5684aabfc4 100644 --- a/en/latest/boards/microchippic32/nofire.html +++ b/en/latest/boards/microchippic32/nofire.html @@ -1,28 +1,35 @@ + + + + + + Pontech NoFire — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/openbci.html b/en/latest/boards/microchippic32/openbci.html index 2c1eaa7bca..ff18c44fef 100644 --- a/en/latest/boards/microchippic32/openbci.html +++ b/en/latest/boards/microchippic32/openbci.html @@ -1,28 +1,35 @@ + + + + + + OpenBCI 32bit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/openscope.html b/en/latest/boards/microchippic32/openscope.html index ee3c9e8a1c..4a99ccf355 100644 --- a/en/latest/boards/microchippic32/openscope.html +++ b/en/latest/boards/microchippic32/openscope.html @@ -1,28 +1,35 @@ + + + + + + Digilent OpenScope — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/picadillo_35t.html b/en/latest/boards/microchippic32/picadillo_35t.html index d4b35ddfb9..c5d70fd2e9 100644 --- a/en/latest/boards/microchippic32/picadillo_35t.html +++ b/en/latest/boards/microchippic32/picadillo_35t.html @@ -1,28 +1,35 @@ + + + + + + 4D Systems PICadillo 35T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/pinguino32.html b/en/latest/boards/microchippic32/pinguino32.html index 3240efa357..b5b902c5c1 100644 --- a/en/latest/boards/microchippic32/pinguino32.html +++ b/en/latest/boards/microchippic32/pinguino32.html @@ -1,28 +1,35 @@ + + + + + + Olimex PIC32-PINGUINO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/quick240_usb.html b/en/latest/boards/microchippic32/quick240_usb.html index 30a4b11d30..67c3a2edc5 100644 --- a/en/latest/boards/microchippic32/quick240_usb.html +++ b/en/latest/boards/microchippic32/quick240_usb.html @@ -1,28 +1,35 @@ + + + + + + Pontech Quick240 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/rgb_station.html b/en/latest/boards/microchippic32/rgb_station.html index da859ad5d7..235c71bea8 100644 --- a/en/latest/boards/microchippic32/rgb_station.html +++ b/en/latest/boards/microchippic32/rgb_station.html @@ -1,28 +1,35 @@ + + + + + + RGB Station — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/ubw32_mx460.html b/en/latest/boards/microchippic32/ubw32_mx460.html index 5ad6087f2c..cb6b2a8047 100644 --- a/en/latest/boards/microchippic32/ubw32_mx460.html +++ b/en/latest/boards/microchippic32/ubw32_mx460.html @@ -1,28 +1,35 @@ + + + + + + UBW32 MX460 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/ubw32_mx795.html b/en/latest/boards/microchippic32/ubw32_mx795.html index da7c4da70a..3c80217f20 100644 --- a/en/latest/boards/microchippic32/ubw32_mx795.html +++ b/en/latest/boards/microchippic32/ubw32_mx795.html @@ -1,28 +1,35 @@ + + + + + + UBW32 MX795 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/uno_pic32.html b/en/latest/boards/microchippic32/uno_pic32.html index 6eea29fbd5..062033477e 100644 --- a/en/latest/boards/microchippic32/uno_pic32.html +++ b/en/latest/boards/microchippic32/uno_pic32.html @@ -1,28 +1,35 @@ + + + + + + Digilent chipKIT UNO32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/microchippic32/usbono_pic32.html b/en/latest/boards/microchippic32/usbono_pic32.html index 4e0bb5fd17..f4d6488143 100644 --- a/en/latest/boards/microchippic32/usbono_pic32.html +++ b/en/latest/boards/microchippic32/usbono_pic32.html @@ -1,28 +1,35 @@ + + + + + + PONTECH UAV100 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/Sinobit.html b/en/latest/boards/nordicnrf51/Sinobit.html index f63f8dc2b5..b4d392d291 100644 --- a/en/latest/boards/nordicnrf51/Sinobit.html +++ b/en/latest/boards/nordicnrf51/Sinobit.html @@ -1,28 +1,35 @@ + + + + + + Sino:Bit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -478,18 +485,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/bbcmicrobit.html b/en/latest/boards/nordicnrf51/bbcmicrobit.html index 130fd89938..4c488fdba0 100644 --- a/en/latest/boards/nordicnrf51/bbcmicrobit.html +++ b/en/latest/boards/nordicnrf51/bbcmicrobit.html @@ -1,28 +1,35 @@ + + + + + + BBC micro:bit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -475,18 +482,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/bluz_dk.html b/en/latest/boards/nordicnrf51/bluz_dk.html index 2474ce0abb..0fe98f2512 100644 --- a/en/latest/boards/nordicnrf51/bluz_dk.html +++ b/en/latest/boards/nordicnrf51/bluz_dk.html @@ -1,28 +1,35 @@ + + + + + + BluzDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -478,18 +485,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/calliope_mini.html b/en/latest/boards/nordicnrf51/calliope_mini.html index f1c5392ff6..e2d8d0783a 100644 --- a/en/latest/boards/nordicnrf51/calliope_mini.html +++ b/en/latest/boards/nordicnrf51/calliope_mini.html @@ -1,28 +1,35 @@ + + + + + + Calliope mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -472,18 +479,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/ng_beacon.html b/en/latest/boards/nordicnrf51/ng_beacon.html index 7af29ef5b3..de7fa1986f 100644 --- a/en/latest/boards/nordicnrf51/ng_beacon.html +++ b/en/latest/boards/nordicnrf51/ng_beacon.html @@ -1,28 +1,35 @@ + + + + + + ng-beacon — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -478,18 +485,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/nrf51_beacon.html b/en/latest/boards/nordicnrf51/nrf51_beacon.html index 04e06d692d..3f2059a61e 100644 --- a/en/latest/boards/nordicnrf51/nrf51_beacon.html +++ b/en/latest/boards/nordicnrf51/nrf51_beacon.html @@ -1,28 +1,35 @@ + + + + + + Nordic Beacon Kit (PCA20006) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -483,18 +490,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/nrf51_dk.html b/en/latest/boards/nordicnrf51/nrf51_dk.html index 28481bcf96..1750263297 100644 --- a/en/latest/boards/nordicnrf51/nrf51_dk.html +++ b/en/latest/boards/nordicnrf51/nrf51_dk.html @@ -1,28 +1,35 @@ + + + + + + Nordic nRF51X22 Development Kit(PCA1000X) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -486,18 +493,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/nrf51_dongle.html b/en/latest/boards/nordicnrf51/nrf51_dongle.html index ed1cb585bf..6f30557147 100644 --- a/en/latest/boards/nordicnrf51/nrf51_dongle.html +++ b/en/latest/boards/nordicnrf51/nrf51_dongle.html @@ -1,28 +1,35 @@ + + + + + + Nordic nRF51 Dongle (PCA10031) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -476,18 +483,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/oshchip.html b/en/latest/boards/nordicnrf51/oshchip.html index c8194247c2..ff662edb65 100644 --- a/en/latest/boards/nordicnrf51/oshchip.html +++ b/en/latest/boards/nordicnrf51/oshchip.html @@ -1,28 +1,35 @@ + + + + + + OSHChip — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -477,18 +484,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/redBearLab.html b/en/latest/boards/nordicnrf51/redBearLab.html index e3655c41ea..44892e9c7d 100644 --- a/en/latest/boards/nordicnrf51/redBearLab.html +++ b/en/latest/boards/nordicnrf51/redBearLab.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab nRF51822 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -483,18 +490,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/redBearLabBLENano.html b/en/latest/boards/nordicnrf51/redBearLabBLENano.html index e75deaca9f..1227c9bc07 100644 --- a/en/latest/boards/nordicnrf51/redBearLabBLENano.html +++ b/en/latest/boards/nordicnrf51/redBearLabBLENano.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab BLE Nano 1.5 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -486,18 +493,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/seeedTinyBLE.html b/en/latest/boards/nordicnrf51/seeedTinyBLE.html index f19e8d3bde..21c3b620fb 100644 --- a/en/latest/boards/nordicnrf51/seeedTinyBLE.html +++ b/en/latest/boards/nordicnrf51/seeedTinyBLE.html @@ -1,28 +1,35 @@ + + + + + + Seeed Tiny BLE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -483,18 +490,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/vbluno51.html b/en/latest/boards/nordicnrf51/vbluno51.html index 072512b961..70e17e703d 100644 --- a/en/latest/boards/nordicnrf51/vbluno51.html +++ b/en/latest/boards/nordicnrf51/vbluno51.html @@ -1,28 +1,35 @@ + + + + + + VNG VBLUNO51 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -449,18 +456,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf51/waveshare_ble400.html b/en/latest/boards/nordicnrf51/waveshare_ble400.html index 1dcbacd93f..bc6171be36 100644 --- a/en/latest/boards/nordicnrf51/waveshare_ble400.html +++ b/en/latest/boards/nordicnrf51/waveshare_ble400.html @@ -1,28 +1,35 @@ + + + + + + Waveshare BLE400 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -481,18 +488,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/96b_nitrogen.html b/en/latest/boards/nordicnrf52/96b_nitrogen.html index 800aa3617a..c51f64d3c4 100644 --- a/en/latest/boards/nordicnrf52/96b_nitrogen.html +++ b/en/latest/boards/nordicnrf52/96b_nitrogen.html @@ -1,28 +1,35 @@ + + + + + + 96Boards Nitrogen — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -509,18 +516,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_clue_nrf52840.html b/en/latest/boards/nordicnrf52/adafruit_clue_nrf52840.html index df24ee5a68..36a2ec59c3 100644 --- a/en/latest/boards/nordicnrf52/adafruit_clue_nrf52840.html +++ b/en/latest/boards/nordicnrf52/adafruit_clue_nrf52840.html @@ -1,28 +1,35 @@ + + + + + + Adafruit CLUE nRF52840 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_cplaynrf52840.html b/en/latest/boards/nordicnrf52/adafruit_cplaynrf52840.html index 871f889953..57efb21fb9 100644 --- a/en/latest/boards/nordicnrf52/adafruit_cplaynrf52840.html +++ b/en/latest/boards/nordicnrf52/adafruit_cplaynrf52840.html @@ -1,28 +1,35 @@ + + + + + + Circuit Playground Bluefruit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_feather_nrf52832.html b/en/latest/boards/nordicnrf52/adafruit_feather_nrf52832.html index a7fdc64a61..30e6592e1d 100644 --- a/en/latest/boards/nordicnrf52/adafruit_feather_nrf52832.html +++ b/en/latest/boards/nordicnrf52/adafruit_feather_nrf52832.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Bluefruit nRF52832 Feather — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -518,18 +525,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840.html b/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840.html index 632877a278..35491232d2 100644 --- a/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840.html +++ b/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather nRF52840 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -518,18 +525,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840_sense.html b/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840_sense.html index 6676649d0d..2a8355c713 100644 --- a/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840_sense.html +++ b/en/latest/boards/nordicnrf52/adafruit_feather_nrf52840_sense.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather Bluefruit Sense — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_itsybitsy_nrf52840.html b/en/latest/boards/nordicnrf52/adafruit_itsybitsy_nrf52840.html index 26902db41f..7d5469c6eb 100644 --- a/en/latest/boards/nordicnrf52/adafruit_itsybitsy_nrf52840.html +++ b/en/latest/boards/nordicnrf52/adafruit_itsybitsy_nrf52840.html @@ -1,28 +1,35 @@ + + + + + + ItsyBitsy nRF52840 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_ledglasses_nrf52840.html b/en/latest/boards/nordicnrf52/adafruit_ledglasses_nrf52840.html index 7e8c4ca203..4d0cc48bdb 100644 --- a/en/latest/boards/nordicnrf52/adafruit_ledglasses_nrf52840.html +++ b/en/latest/boards/nordicnrf52/adafruit_ledglasses_nrf52840.html @@ -1,28 +1,35 @@ + + + + + + Adafruit LED Glasses Driver nRF52840 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -518,18 +525,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/adafruit_metro_nrf52840.html b/en/latest/boards/nordicnrf52/adafruit_metro_nrf52840.html index d881b8ba22..8b3ae464f1 100644 --- a/en/latest/boards/nordicnrf52/adafruit_metro_nrf52840.html +++ b/en/latest/boards/nordicnrf52/adafruit_metro_nrf52840.html @@ -1,28 +1,35 @@ + + + + + + Metro nRF52840 Express — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/bbcmicrobit_v2.html b/en/latest/boards/nordicnrf52/bbcmicrobit_v2.html index ed2458485f..2e64151edd 100644 --- a/en/latest/boards/nordicnrf52/bbcmicrobit_v2.html +++ b/en/latest/boards/nordicnrf52/bbcmicrobit_v2.html @@ -1,28 +1,35 @@ + + + + + + BBC micro:bit V2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -518,18 +525,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/bluey.html b/en/latest/boards/nordicnrf52/bluey.html index 70c9d47af6..757b8e350d 100644 --- a/en/latest/boards/nordicnrf52/bluey.html +++ b/en/latest/boards/nordicnrf52/bluey.html @@ -1,28 +1,35 @@ + + + + + + Bluey nRF52832 IoT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/calliopemini_v3.html b/en/latest/boards/nordicnrf52/calliopemini_v3.html index 92066dae25..8272f809fb 100644 --- a/en/latest/boards/nordicnrf52/calliopemini_v3.html +++ b/en/latest/boards/nordicnrf52/calliopemini_v3.html @@ -1,28 +1,35 @@ + + + + + + Calliope Mini v3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -513,18 +520,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/delta_dfbm_nq620.html b/en/latest/boards/nordicnrf52/delta_dfbm_nq620.html index ad6d0e4c54..8a340b4e86 100644 --- a/en/latest/boards/nordicnrf52/delta_dfbm_nq620.html +++ b/en/latest/boards/nordicnrf52/delta_dfbm_nq620.html @@ -1,28 +1,35 @@ + + + + + + Delta DFBM-NQ620 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/dwm1001_dev.html b/en/latest/boards/nordicnrf52/dwm1001_dev.html index 834507a3bc..a36388b66b 100644 --- a/en/latest/boards/nordicnrf52/dwm1001_dev.html +++ b/en/latest/boards/nordicnrf52/dwm1001_dev.html @@ -1,28 +1,35 @@ + + + + + + decaWave DWM1001 Module Development Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/electronut_blip.html b/en/latest/boards/nordicnrf52/electronut_blip.html index 4a59bc179b..35fb2fdcd8 100644 --- a/en/latest/boards/nordicnrf52/electronut_blip.html +++ b/en/latest/boards/nordicnrf52/electronut_blip.html @@ -1,28 +1,35 @@ + + + + + + ElectronutLabs Blip — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/electronut_papyr.html b/en/latest/boards/nordicnrf52/electronut_papyr.html index 633ee4c53e..a7e4f03454 100644 --- a/en/latest/boards/nordicnrf52/electronut_papyr.html +++ b/en/latest/boards/nordicnrf52/electronut_papyr.html @@ -1,28 +1,35 @@ + + + + + + ElectronutLabs Papyr — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/hackaBLE.html b/en/latest/boards/nordicnrf52/hackaBLE.html index db0327ed77..6ff06fc17c 100644 --- a/en/latest/boards/nordicnrf52/hackaBLE.html +++ b/en/latest/boards/nordicnrf52/hackaBLE.html @@ -1,28 +1,35 @@ + + + + + + hackaBLE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/holyiot_yj16019.html b/en/latest/boards/nordicnrf52/holyiot_yj16019.html index 9981a0e05a..441cc0c16d 100644 --- a/en/latest/boards/nordicnrf52/holyiot_yj16019.html +++ b/en/latest/boards/nordicnrf52/holyiot_yj16019.html @@ -1,28 +1,35 @@ + + + + + + Holyiot YJ-16019 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/laird_bl652_dvk.html b/en/latest/boards/nordicnrf52/laird_bl652_dvk.html index a4fa164098..943ce2b097 100644 --- a/en/latest/boards/nordicnrf52/laird_bl652_dvk.html +++ b/en/latest/boards/nordicnrf52/laird_bl652_dvk.html @@ -1,28 +1,35 @@ + + + + + + BL652 Development Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/laird_bl653_dvk.html b/en/latest/boards/nordicnrf52/laird_bl653_dvk.html index c7f3411503..6512457098 100644 --- a/en/latest/boards/nordicnrf52/laird_bl653_dvk.html +++ b/en/latest/boards/nordicnrf52/laird_bl653_dvk.html @@ -1,28 +1,35 @@ + + + + + + BL653 Development Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/laird_bl654_dvk.html b/en/latest/boards/nordicnrf52/laird_bl654_dvk.html index 20a6e75919..8705035373 100644 --- a/en/latest/boards/nordicnrf52/laird_bl654_dvk.html +++ b/en/latest/boards/nordicnrf52/laird_bl654_dvk.html @@ -1,28 +1,35 @@ + + + + + + BL654 Development Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/laird_pinnacle_100_dvk.html b/en/latest/boards/nordicnrf52/laird_pinnacle_100_dvk.html index e9f7a79b6e..f0a288a622 100644 --- a/en/latest/boards/nordicnrf52/laird_pinnacle_100_dvk.html +++ b/en/latest/boards/nordicnrf52/laird_pinnacle_100_dvk.html @@ -1,28 +1,35 @@ + + + + + + Laird Connectivity Pinnacle 100 DVK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nano33ble.html b/en/latest/boards/nordicnrf52/nano33ble.html index 45811322d9..938e3cf511 100644 --- a/en/latest/boards/nordicnrf52/nano33ble.html +++ b/en/latest/boards/nordicnrf52/nano33ble.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano 33 BLE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -511,18 +518,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nicla_sense_me.html b/en/latest/boards/nordicnrf52/nicla_sense_me.html index 1d27c8bf25..c471376d45 100644 --- a/en/latest/boards/nordicnrf52/nicla_sense_me.html +++ b/en/latest/boards/nordicnrf52/nicla_sense_me.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nicla Sense ME — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -511,18 +518,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nrf52832_mdk.html b/en/latest/boards/nordicnrf52/nrf52832_mdk.html index de1fcf7a37..96c2289537 100644 --- a/en/latest/boards/nordicnrf52/nrf52832_mdk.html +++ b/en/latest/boards/nordicnrf52/nrf52832_mdk.html @@ -1,28 +1,35 @@ + + + + + + Makerdiary nRF52832-MDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nrf52833_dk.html b/en/latest/boards/nordicnrf52/nrf52833_dk.html index c8b5f31e7c..f854a7d3af 100644 --- a/en/latest/boards/nordicnrf52/nrf52833_dk.html +++ b/en/latest/boards/nordicnrf52/nrf52833_dk.html @@ -1,28 +1,35 @@ + + + + + + Nordic nRF52833-DK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nrf52840_dk.html b/en/latest/boards/nordicnrf52/nrf52840_dk.html index dece0e1adb..4e6cf0eeb0 100644 --- a/en/latest/boards/nordicnrf52/nrf52840_dk.html +++ b/en/latest/boards/nordicnrf52/nrf52840_dk.html @@ -1,28 +1,35 @@ + + + + + + Nordic nRF52840-DK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -521,18 +528,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nrf52840_dk_adafruit.html b/en/latest/boards/nordicnrf52/nrf52840_dk_adafruit.html index e105566e30..0f8eb54366 100644 --- a/en/latest/boards/nordicnrf52/nrf52840_dk_adafruit.html +++ b/en/latest/boards/nordicnrf52/nrf52840_dk_adafruit.html @@ -1,28 +1,35 @@ + + + + + + Nordic nRF52840-DK (Adafruit BSP) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nrf52840_mdk.html b/en/latest/boards/nordicnrf52/nrf52840_mdk.html index d8a7cb4bc6..5d6f9a956d 100644 --- a/en/latest/boards/nordicnrf52/nrf52840_mdk.html +++ b/en/latest/boards/nordicnrf52/nrf52840_mdk.html @@ -1,28 +1,35 @@ + + + + + + Makerdiary nRF52840-MDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/nrf52_dk.html b/en/latest/boards/nordicnrf52/nrf52_dk.html index fb19407a21..eeaa7030a6 100644 --- a/en/latest/boards/nordicnrf52/nrf52_dk.html +++ b/en/latest/boards/nordicnrf52/nrf52_dk.html @@ -1,28 +1,35 @@ + + + + + + Nordic nRF52-DK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -521,18 +528,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/particle_argon.html b/en/latest/boards/nordicnrf52/particle_argon.html index a087f350f0..a37999c523 100644 --- a/en/latest/boards/nordicnrf52/particle_argon.html +++ b/en/latest/boards/nordicnrf52/particle_argon.html @@ -1,28 +1,35 @@ + + + + + + Particle Argon — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -510,18 +517,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/particle_boron.html b/en/latest/boards/nordicnrf52/particle_boron.html index 3cfcc1f34b..712e50395e 100644 --- a/en/latest/boards/nordicnrf52/particle_boron.html +++ b/en/latest/boards/nordicnrf52/particle_boron.html @@ -1,28 +1,35 @@ + + + + + + Particle Boron — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -510,18 +517,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/particle_xenon.html b/en/latest/boards/nordicnrf52/particle_xenon.html index 0e01e45508..63ee924f3b 100644 --- a/en/latest/boards/nordicnrf52/particle_xenon.html +++ b/en/latest/boards/nordicnrf52/particle_xenon.html @@ -1,28 +1,35 @@ + + + + + + Particle Xenon — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -518,18 +525,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/raytac_mdbt50q_rx.html b/en/latest/boards/nordicnrf52/raytac_mdbt50q_rx.html index cdc10311aa..3df1d5cf1a 100644 --- a/en/latest/boards/nordicnrf52/raytac_mdbt50q_rx.html +++ b/en/latest/boards/nordicnrf52/raytac_mdbt50q_rx.html @@ -1,28 +1,35 @@ + + + + + + Raytac MDBT50Q-RX Dongle — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/redbear_blenano2.html b/en/latest/boards/nordicnrf52/redbear_blenano2.html index 3a7b120147..90b731846d 100644 --- a/en/latest/boards/nordicnrf52/redbear_blenano2.html +++ b/en/latest/boards/nordicnrf52/redbear_blenano2.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab BLE Nano 2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -517,18 +524,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/redbear_blend2.html b/en/latest/boards/nordicnrf52/redbear_blend2.html index 2fe7588cac..de57b74e5e 100644 --- a/en/latest/boards/nordicnrf52/redbear_blend2.html +++ b/en/latest/boards/nordicnrf52/redbear_blend2.html @@ -1,28 +1,35 @@ + + + + + + RedBearLab Blend 2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/reel_board.html b/en/latest/boards/nordicnrf52/reel_board.html index bf060bfb74..b4c391f50b 100644 --- a/en/latest/boards/nordicnrf52/reel_board.html +++ b/en/latest/boards/nordicnrf52/reel_board.html @@ -1,28 +1,35 @@ + + + + + + PHYTEC reel board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/reel_board_v2.html b/en/latest/boards/nordicnrf52/reel_board_v2.html index 9d113eb564..0950ba8daf 100644 --- a/en/latest/boards/nordicnrf52/reel_board_v2.html +++ b/en/latest/boards/nordicnrf52/reel_board_v2.html @@ -1,28 +1,35 @@ + + + + + + PHYTEC reel board v2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/ruuvitag.html b/en/latest/boards/nordicnrf52/ruuvitag.html index 41a7e6590b..ba44ed5aac 100644 --- a/en/latest/boards/nordicnrf52/ruuvitag.html +++ b/en/latest/boards/nordicnrf52/ruuvitag.html @@ -1,28 +1,35 @@ + + + + + + Ruuvi Tag — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/sdt52832b.html b/en/latest/boards/nordicnrf52/sdt52832b.html index 1ed733d55c..66cb5def31 100644 --- a/en/latest/boards/nordicnrf52/sdt52832b.html +++ b/en/latest/boards/nordicnrf52/sdt52832b.html @@ -1,28 +1,35 @@ + + + + + + SDT52832B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/stct_nrf52_minidev.html b/en/latest/boards/nordicnrf52/stct_nrf52_minidev.html index f55f47bcee..b4862bd3dd 100644 --- a/en/latest/boards/nordicnrf52/stct_nrf52_minidev.html +++ b/en/latest/boards/nordicnrf52/stct_nrf52_minidev.html @@ -1,28 +1,35 @@ + + + + + + Taida Century nRF52 mini board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/thingy_52.html b/en/latest/boards/nordicnrf52/thingy_52.html index bb09366c2a..ab8ca825a4 100644 --- a/en/latest/boards/nordicnrf52/thingy_52.html +++ b/en/latest/boards/nordicnrf52/thingy_52.html @@ -1,28 +1,35 @@ + + + + + + Nordic Thingy:52 (nRF52-PCA20020) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/ublox_bmd345eval_nrf52840.html b/en/latest/boards/nordicnrf52/ublox_bmd345eval_nrf52840.html index aaca41804f..12e0241180 100644 --- a/en/latest/boards/nordicnrf52/ublox_bmd345eval_nrf52840.html +++ b/en/latest/boards/nordicnrf52/ublox_bmd345eval_nrf52840.html @@ -1,28 +1,35 @@ + + + + + + u-blox BMD-345-EVAL — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/ublox_evk_nina_b1.html b/en/latest/boards/nordicnrf52/ublox_evk_nina_b1.html index 819e021ea2..e3f7ed609e 100644 --- a/en/latest/boards/nordicnrf52/ublox_evk_nina_b1.html +++ b/en/latest/boards/nordicnrf52/ublox_evk_nina_b1.html @@ -1,28 +1,35 @@ + + + + + + u-blox EVK-NINA-B1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nordicnrf52/vbluno52.html b/en/latest/boards/nordicnrf52/vbluno52.html index 572f6016be..d9f86eea37 100644 --- a/en/latest/boards/nordicnrf52/vbluno52.html +++ b/en/latest/boards/nordicnrf52/vbluno52.html @@ -1,28 +1,35 @@ + + + + + + VNG VBLUno52 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxpimxrt/mimxrt1010_evk.html b/en/latest/boards/nxpimxrt/mimxrt1010_evk.html index e56c2c87b1..1ec5b9928e 100644 --- a/en/latest/boards/nxpimxrt/mimxrt1010_evk.html +++ b/en/latest/boards/nxpimxrt/mimxrt1010_evk.html @@ -1,28 +1,35 @@ + + + + + + NXP i.MX RT1010 Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxpimxrt/mimxrt1015_evk.html b/en/latest/boards/nxpimxrt/mimxrt1015_evk.html index e2ed87c08f..96c0951d0a 100644 --- a/en/latest/boards/nxpimxrt/mimxrt1015_evk.html +++ b/en/latest/boards/nxpimxrt/mimxrt1015_evk.html @@ -1,28 +1,35 @@ + + + + + + NXP i.MX RT1015 Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxpimxrt/mimxrt1020_evk.html b/en/latest/boards/nxpimxrt/mimxrt1020_evk.html index dfd0126dcf..ac9d9b07b5 100644 --- a/en/latest/boards/nxpimxrt/mimxrt1020_evk.html +++ b/en/latest/boards/nxpimxrt/mimxrt1020_evk.html @@ -1,28 +1,35 @@ + + + + + + NXP i.MX RT1020 Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxpimxrt/mimxrt1050_evk.html b/en/latest/boards/nxpimxrt/mimxrt1050_evk.html index 39e751c76a..310b5484b2 100644 --- a/en/latest/boards/nxpimxrt/mimxrt1050_evk.html +++ b/en/latest/boards/nxpimxrt/mimxrt1050_evk.html @@ -1,28 +1,35 @@ + + + + + + NXP i.MX RT1050 Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -468,18 +475,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxpimxrt/mimxrt1060_evk.html b/en/latest/boards/nxpimxrt/mimxrt1060_evk.html index b86c5fc0ae..c6c3f52491 100644 --- a/en/latest/boards/nxpimxrt/mimxrt1060_evk.html +++ b/en/latest/boards/nxpimxrt/mimxrt1060_evk.html @@ -1,28 +1,35 @@ + + + + + + NXP i.MX RT1060 Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxpimxrt/mimxrt1064_evk.html b/en/latest/boards/nxpimxrt/mimxrt1064_evk.html index 089353d382..6f77c407fe 100644 --- a/en/latest/boards/nxpimxrt/mimxrt1064_evk.html +++ b/en/latest/boards/nxpimxrt/mimxrt1064_evk.html @@ -1,28 +1,35 @@ + + + + + + NXP i.MX RT1064 Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxplpc/lpc11u68.html b/en/latest/boards/nxplpc/lpc11u68.html index 0d22a09ed9..a6ca5526f8 100644 --- a/en/latest/boards/nxplpc/lpc11u68.html +++ b/en/latest/boards/nxplpc/lpc11u68.html @@ -1,28 +1,35 @@ + + + + + + LPCXpresso11U68 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -470,18 +477,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxplpc/lpc1768.html b/en/latest/boards/nxplpc/lpc1768.html index 5ebdc22f53..6a2e94b3a1 100644 --- a/en/latest/boards/nxplpc/lpc1768.html +++ b/en/latest/boards/nxplpc/lpc1768.html @@ -1,28 +1,35 @@ + + + + + + NXP mbed LPC1768 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -470,18 +477,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxplpc/lpc54114.html b/en/latest/boards/nxplpc/lpc54114.html index 8ecfa226ec..c58fd4947a 100644 --- a/en/latest/boards/nxplpc/lpc54114.html +++ b/en/latest/boards/nxplpc/lpc54114.html @@ -1,28 +1,35 @@ + + + + + + NXP LPCXpresso54114 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -468,18 +475,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxplpc/lpc546xx.html b/en/latest/boards/nxplpc/lpc546xx.html index dc0fd07c27..e195c62bb7 100644 --- a/en/latest/boards/nxplpc/lpc546xx.html +++ b/en/latest/boards/nxplpc/lpc546xx.html @@ -1,28 +1,35 @@ + + + + + + NXP LPCXpresso54608 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -460,18 +467,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxplpc/lpcxpresso55s16.html b/en/latest/boards/nxplpc/lpcxpresso55s16.html index fbfc8c669a..5c3a06e330 100644 --- a/en/latest/boards/nxplpc/lpcxpresso55s16.html +++ b/en/latest/boards/nxplpc/lpcxpresso55s16.html @@ -1,28 +1,35 @@ + + + + + + NXP LPCXpresso55S16 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -460,18 +467,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/nxplpc/seeedArchPro.html b/en/latest/boards/nxplpc/seeedArchPro.html index 8d9ae800e1..d434b8d1bf 100644 --- a/en/latest/boards/nxplpc/seeedArchPro.html +++ b/en/latest/boards/nxplpc/seeedArchPro.html @@ -1,28 +1,35 @@ + + + + + + Seeed Arch Pro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -460,18 +467,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/openhw/nexys_a7.html b/en/latest/boards/openhw/nexys_a7.html index 7c73383705..43dd763ac5 100644 --- a/en/latest/boards/openhw/nexys_a7.html +++ b/en/latest/boards/openhw/nexys_a7.html @@ -1,28 +1,35 @@ + + + + + + Digilent Nexys A7 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -467,18 +474,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/raspberrypi/nanorp2040connect.html b/en/latest/boards/raspberrypi/nanorp2040connect.html index 42a076896c..d74617153d 100644 --- a/en/latest/boards/raspberrypi/nanorp2040connect.html +++ b/en/latest/boards/raspberrypi/nanorp2040connect.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nano RP2040 Connect — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -466,18 +473,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/raspberrypi/pico.html b/en/latest/boards/raspberrypi/pico.html index 44cc5880d0..bec27d6d7c 100644 --- a/en/latest/boards/raspberrypi/pico.html +++ b/en/latest/boards/raspberrypi/pico.html @@ -1,28 +1,35 @@ + + + + + + Raspberry Pi Pico — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -466,18 +473,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/renesas-ra/portenta_c33.html b/en/latest/boards/renesas-ra/portenta_c33.html index 5ff6aebcbc..57f27ce5b5 100644 --- a/en/latest/boards/renesas-ra/portenta_c33.html +++ b/en/latest/boards/renesas-ra/portenta_c33.html @@ -1,28 +1,35 @@ + + + + + + Arduino Portenta C33 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/renesas-ra/uno_r4_minima.html b/en/latest/boards/renesas-ra/uno_r4_minima.html index 87e5d50052..96012d71f8 100644 --- a/en/latest/boards/renesas-ra/uno_r4_minima.html +++ b/en/latest/boards/renesas-ra/uno_r4_minima.html @@ -1,28 +1,35 @@ + + + + + + Arduino Uno R4 Minima — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -468,18 +475,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/renesas-ra/uno_r4_wifi.html b/en/latest/boards/renesas-ra/uno_r4_wifi.html index 6d328acc2e..49b4609573 100644 --- a/en/latest/boards/renesas-ra/uno_r4_wifi.html +++ b/en/latest/boards/renesas-ra/uno_r4_wifi.html @@ -1,28 +1,35 @@ + + + + + + Arduino Uno R4 WiFi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -468,18 +475,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/riscv_gap/gapuino.html b/en/latest/boards/riscv_gap/gapuino.html index a6a54265e4..148e07a3e3 100644 --- a/en/latest/boards/riscv_gap/gapuino.html +++ b/en/latest/boards/riscv_gap/gapuino.html @@ -1,28 +1,35 @@ + + + + + + GAPuino GAP8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -439,18 +446,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/shakti/artix7_100t.html b/en/latest/boards/shakti/artix7_100t.html index cc41d78e4b..f90757220e 100644 --- a/en/latest/boards/shakti/artix7_100t.html +++ b/en/latest/boards/shakti/artix7_100t.html @@ -1,28 +1,35 @@ + + + + + + Arty A7-100: Artix-7 FPGA Development Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/shakti/artix7_35t.html b/en/latest/boards/shakti/artix7_35t.html index 5ec08fd618..c89468667e 100644 --- a/en/latest/boards/shakti/artix7_35t.html +++ b/en/latest/boards/shakti/artix7_35t.html @@ -1,28 +1,35 @@ + + + + + + Artix-7 35T Arty FPGA Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/shakti/parashu.html b/en/latest/boards/shakti/parashu.html index 59a9a94731..1b4194dce8 100644 --- a/en/latest/boards/shakti/parashu.html +++ b/en/latest/boards/shakti/parashu.html @@ -1,28 +1,35 @@ + + + + + + Parashu on Artix-7 100T Arty FPGA Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/shakti/pinaka.html b/en/latest/boards/shakti/pinaka.html index 8f901838c4..26727f659e 100644 --- a/en/latest/boards/shakti/pinaka.html +++ b/en/latest/boards/shakti/pinaka.html @@ -1,28 +1,35 @@ + + + + + + Pinaka on Artix-7 35T Arty FPGA Evaluation Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/shakti/vajra.html b/en/latest/boards/shakti/vajra.html index e7fd86c745..1cefc16e66 100644 --- a/en/latest/boards/shakti/vajra.html +++ b/en/latest/boards/shakti/vajra.html @@ -1,28 +1,35 @@ + + + + + + Vajra on Arty A7-100: Artix-7 FPGA Development Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/sifive/e310-arty.html b/en/latest/boards/sifive/e310-arty.html index da3faaa7d7..f134776725 100644 --- a/en/latest/boards/sifive/e310-arty.html +++ b/en/latest/boards/sifive/e310-arty.html @@ -1,28 +1,35 @@ + + + + + + Arty FPGA Dev Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -505,18 +512,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/sifive/hifive-unleashed.html b/en/latest/boards/sifive/hifive-unleashed.html index 022959fe52..a9a752358b 100644 --- a/en/latest/boards/sifive/hifive-unleashed.html +++ b/en/latest/boards/sifive/hifive-unleashed.html @@ -1,28 +1,35 @@ + + + + + + HiFive Unleashed — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -452,18 +459,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/sifive/hifive1-revb.html b/en/latest/boards/sifive/hifive1-revb.html index 30d68ebc07..24affe4170 100644 --- a/en/latest/boards/sifive/hifive1-revb.html +++ b/en/latest/boards/sifive/hifive1-revb.html @@ -1,28 +1,35 @@ + + + + + + HiFive1 Rev B — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/sifive/hifive1.html b/en/latest/boards/sifive/hifive1.html index f5f667440b..8060dc7783 100644 --- a/en/latest/boards/sifive/hifive1.html +++ b/en/latest/boards/sifive/hifive1.html @@ -1,28 +1,35 @@ + + + + + + HiFive1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -455,18 +462,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/sifive/sparkfun_redboard_v.html b/en/latest/boards/sifive/sparkfun_redboard_v.html index 7490472749..3e50fc416b 100644 --- a/en/latest/boards/sifive/sparkfun_redboard_v.html +++ b/en/latest/boards/sifive/sparkfun_redboard_v.html @@ -1,28 +1,35 @@ + + + + + + SparkFun RED-V RedBoard — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/sifive/sparkfun_thing_plus_v.html b/en/latest/boards/sifive/sparkfun_thing_plus_v.html index 62ef03dc99..56f922a15a 100644 --- a/en/latest/boards/sifive/sparkfun_thing_plus_v.html +++ b/en/latest/boards/sifive/sparkfun_thing_plus_v.html @@ -1,28 +1,35 @@ + + + + + + SparkFun RED-V Thing Plus — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -451,18 +458,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/siliconlabsefm32/efm32gg11_stk3701.html b/en/latest/boards/siliconlabsefm32/efm32gg11_stk3701.html index 486dc5310e..31e99faad5 100644 --- a/en/latest/boards/siliconlabsefm32/efm32gg11_stk3701.html +++ b/en/latest/boards/siliconlabsefm32/efm32gg11_stk3701.html @@ -1,28 +1,35 @@ + + + + + + SLSTK3701A Giant Gecko S1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -464,18 +471,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/siliconlabsefm32/efm32gg_stk3700.html b/en/latest/boards/siliconlabsefm32/efm32gg_stk3700.html index d7fa838e9e..f93c9a6a12 100644 --- a/en/latest/boards/siliconlabsefm32/efm32gg_stk3700.html +++ b/en/latest/boards/siliconlabsefm32/efm32gg_stk3700.html @@ -1,28 +1,35 @@ + + + + + + EFM32GG-STK3700 Giant Gecko — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -464,18 +471,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/siliconlabsefm32/efm32hg_stk3400.html b/en/latest/boards/siliconlabsefm32/efm32hg_stk3400.html index 8e16c26b4a..1781613370 100644 --- a/en/latest/boards/siliconlabsefm32/efm32hg_stk3400.html +++ b/en/latest/boards/siliconlabsefm32/efm32hg_stk3400.html @@ -1,28 +1,35 @@ + + + + + + SLSTK3400A USB-enabled Happy Gecko — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -464,18 +471,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/siliconlabsefm32/efm32wg_stk3800.html b/en/latest/boards/siliconlabsefm32/efm32wg_stk3800.html index c85b5f4699..09832f4e5d 100644 --- a/en/latest/boards/siliconlabsefm32/efm32wg_stk3800.html +++ b/en/latest/boards/siliconlabsefm32/efm32wg_stk3800.html @@ -1,28 +1,35 @@ + + + + + + EFM32WG-STK3800 Wonder Gecko — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -464,18 +471,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/siliconlabsefm32/tb_sense_12.html b/en/latest/boards/siliconlabsefm32/tb_sense_12.html index 020b120302..3ed2f66311 100644 --- a/en/latest/boards/siliconlabsefm32/tb_sense_12.html +++ b/en/latest/boards/siliconlabsefm32/tb_sense_12.html @@ -1,28 +1,35 @@ + + + + + + Thunderboard Sense 2 Sensor-to-Cloud Advanced IoT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -467,18 +474,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/1bitsy_stm32f415rgt.html b/en/latest/boards/ststm32/1bitsy_stm32f415rgt.html index a821bae121..f895458f9f 100644 --- a/en/latest/boards/ststm32/1bitsy_stm32f415rgt.html +++ b/en/latest/boards/ststm32/1bitsy_stm32f415rgt.html @@ -1,28 +1,35 @@ + + + + + + 1Bitsy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/acsip_s76s.html b/en/latest/boards/ststm32/acsip_s76s.html index 6fc4e2b224..515d67563b 100644 --- a/en/latest/boards/ststm32/acsip_s76s.html +++ b/en/latest/boards/ststm32/acsip_s76s.html @@ -1,28 +1,35 @@ + + + + + + ACSIP S76S — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/adafruit_feather_f405.html b/en/latest/boards/ststm32/adafruit_feather_f405.html index 931de13afa..e87a84e989 100644 --- a/en/latest/boards/ststm32/adafruit_feather_f405.html +++ b/en/latest/boards/ststm32/adafruit_feather_f405.html @@ -1,28 +1,35 @@ + + + + + + Adafruit Feather STM32F405 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/afroflight_f103cb.html b/en/latest/boards/ststm32/afroflight_f103cb.html index a4289d05a4..b42ed8e5ca 100644 --- a/en/latest/boards/ststm32/afroflight_f103cb.html +++ b/en/latest/boards/ststm32/afroflight_f103cb.html @@ -1,28 +1,35 @@ + + + + + + AfroFlight Rev5 (8MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/agafia_sg0.html b/en/latest/boards/ststm32/agafia_sg0.html index a395c074e0..e510c3cde1 100644 --- a/en/latest/boards/ststm32/agafia_sg0.html +++ b/en/latest/boards/ststm32/agafia_sg0.html @@ -1,28 +1,35 @@ + + + + + + Sigma IC AGAFIA SG0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/armed_v1.html b/en/latest/boards/ststm32/armed_v1.html index 429d06f7ac..2e0bc24780 100644 --- a/en/latest/boards/ststm32/armed_v1.html +++ b/en/latest/boards/ststm32/armed_v1.html @@ -1,28 +1,35 @@ + + + + + + 3D Printer Controller — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/armstrap_eagle1024.html b/en/latest/boards/ststm32/armstrap_eagle1024.html index dafca52bbd..9cb04d4d95 100644 --- a/en/latest/boards/ststm32/armstrap_eagle1024.html +++ b/en/latest/boards/ststm32/armstrap_eagle1024.html @@ -1,28 +1,35 @@ + + + + + + Armstrap Eagle 1024 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/armstrap_eagle2048.html b/en/latest/boards/ststm32/armstrap_eagle2048.html index eb80f169f0..1ef99cbd24 100644 --- a/en/latest/boards/ststm32/armstrap_eagle2048.html +++ b/en/latest/boards/ststm32/armstrap_eagle2048.html @@ -1,28 +1,35 @@ + + + + + + Armstrap Eagle 2048 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/armstrap_eagle512.html b/en/latest/boards/ststm32/armstrap_eagle512.html index 8c791936a0..23812da644 100644 --- a/en/latest/boards/ststm32/armstrap_eagle512.html +++ b/en/latest/boards/ststm32/armstrap_eagle512.html @@ -1,28 +1,35 @@ + + + + + + Armstrap Eagle 512 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/b96b_aerocore2.html b/en/latest/boards/ststm32/b96b_aerocore2.html index 2504c9286e..582cc2b8f0 100644 --- a/en/latest/boards/ststm32/b96b_aerocore2.html +++ b/en/latest/boards/ststm32/b96b_aerocore2.html @@ -1,28 +1,35 @@ + + + + + + 96Boards Neonkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/b96b_argonkey.html b/en/latest/boards/ststm32/b96b_argonkey.html index 06758506b3..6db8213ed8 100644 --- a/en/latest/boards/ststm32/b96b_argonkey.html +++ b/en/latest/boards/ststm32/b96b_argonkey.html @@ -1,28 +1,35 @@ + + + + + + 96Boards Argonkey (STEVAL-MKI187V1) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/b96b_f446ve.html b/en/latest/boards/ststm32/b96b_f446ve.html index 57059df85c..44ab8e1304 100644 --- a/en/latest/boards/ststm32/b96b_f446ve.html +++ b/en/latest/boards/ststm32/b96b_f446ve.html @@ -1,28 +1,35 @@ + + + + + + 96Boards B96B-F446VE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/b96b_neonkey.html b/en/latest/boards/ststm32/b96b_neonkey.html index 9be8aa13ad..2119c30261 100644 --- a/en/latest/boards/ststm32/b96b_neonkey.html +++ b/en/latest/boards/ststm32/b96b_neonkey.html @@ -1,28 +1,35 @@ + + + + + + 96Boards Neonkey — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/black_f407ve.html b/en/latest/boards/ststm32/black_f407ve.html index 170e8c97e8..0a367cb5a7 100644 --- a/en/latest/boards/ststm32/black_f407ve.html +++ b/en/latest/boards/ststm32/black_f407ve.html @@ -1,28 +1,35 @@ + + + + + + Black STM32F407VE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/black_f407vg.html b/en/latest/boards/ststm32/black_f407vg.html index 9dd7e659fa..8b57a2e867 100644 --- a/en/latest/boards/ststm32/black_f407vg.html +++ b/en/latest/boards/ststm32/black_f407vg.html @@ -1,28 +1,35 @@ + + + + + + Black STM32F407VG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/black_f407ze.html b/en/latest/boards/ststm32/black_f407ze.html index 2d0ac18e29..89f6590285 100644 --- a/en/latest/boards/ststm32/black_f407ze.html +++ b/en/latest/boards/ststm32/black_f407ze.html @@ -1,28 +1,35 @@ + + + + + + Black STM32F407ZE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/black_f407zg.html b/en/latest/boards/ststm32/black_f407zg.html index ace0d34340..84c62d838c 100644 --- a/en/latest/boards/ststm32/black_f407zg.html +++ b/en/latest/boards/ststm32/black_f407zg.html @@ -1,28 +1,35 @@ + + + + + + Black STM32F407ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/blackpill_f103c8.html b/en/latest/boards/ststm32/blackpill_f103c8.html index ad100622b4..f9f3ecc3f2 100644 --- a/en/latest/boards/ststm32/blackpill_f103c8.html +++ b/en/latest/boards/ststm32/blackpill_f103c8.html @@ -1,28 +1,35 @@ + + + + + + BlackPill F103C8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/blackpill_f103c8_128.html b/en/latest/boards/ststm32/blackpill_f103c8_128.html index 2a65b65efe..cf625e1d85 100644 --- a/en/latest/boards/ststm32/blackpill_f103c8_128.html +++ b/en/latest/boards/ststm32/blackpill_f103c8_128.html @@ -1,28 +1,35 @@ + + + + + + BlackPill F103C8 (128k) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/blackpill_f401cc.html b/en/latest/boards/ststm32/blackpill_f401cc.html index e9e88b17c6..1d25f898fa 100644 --- a/en/latest/boards/ststm32/blackpill_f401cc.html +++ b/en/latest/boards/ststm32/blackpill_f401cc.html @@ -1,28 +1,35 @@ + + + + + + WeAct Studio BlackPill V2.0 (STM32F401CC) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/blackpill_f401ce.html b/en/latest/boards/ststm32/blackpill_f401ce.html index 558a4a036e..2469c8c000 100644 --- a/en/latest/boards/ststm32/blackpill_f401ce.html +++ b/en/latest/boards/ststm32/blackpill_f401ce.html @@ -1,28 +1,35 @@ + + + + + + WeAct Studio BlackPill V3.0 (STM32F401CE) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -765,18 +772,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/blackpill_f411ce.html b/en/latest/boards/ststm32/blackpill_f411ce.html index 6311f03410..37c0bad09b 100644 --- a/en/latest/boards/ststm32/blackpill_f411ce.html +++ b/en/latest/boards/ststm32/blackpill_f411ce.html @@ -1,28 +1,35 @@ + + + + + + WeAct Studio BlackPill V2.0 (STM32F411CE) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -765,18 +772,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/blue_f407ve_mini.html b/en/latest/boards/ststm32/blue_f407ve_mini.html index cc4239c5c8..d337137092 100644 --- a/en/latest/boards/ststm32/blue_f407ve_mini.html +++ b/en/latest/boards/ststm32/blue_f407ve_mini.html @@ -1,28 +1,35 @@ + + + + + + Blue STM32F407VE Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/bluepill_f103c6.html b/en/latest/boards/ststm32/bluepill_f103c6.html index 859974e999..1521b322d1 100644 --- a/en/latest/boards/ststm32/bluepill_f103c6.html +++ b/en/latest/boards/ststm32/bluepill_f103c6.html @@ -1,28 +1,35 @@ + + + + + + BluePill F103C6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/bluepill_f103c8.html b/en/latest/boards/ststm32/bluepill_f103c8.html index 08f50898b1..dfff3126af 100644 --- a/en/latest/boards/ststm32/bluepill_f103c8.html +++ b/en/latest/boards/ststm32/bluepill_f103c8.html @@ -1,28 +1,35 @@ + + + + + + BluePill F103C8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -765,18 +772,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/bluepill_f103c8_128k.html b/en/latest/boards/ststm32/bluepill_f103c8_128k.html index 668f713adb..8287962e22 100644 --- a/en/latest/boards/ststm32/bluepill_f103c8_128k.html +++ b/en/latest/boards/ststm32/bluepill_f103c8_128k.html @@ -1,28 +1,35 @@ + + + + + + BluePill F103C8 (128k) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/btt_ebb42_v1_1.html b/en/latest/boards/ststm32/btt_ebb42_v1_1.html index 9bdbda9d84..745f13c8bf 100644 --- a/en/latest/boards/ststm32/btt_ebb42_v1_1.html +++ b/en/latest/boards/ststm32/btt_ebb42_v1_1.html @@ -1,28 +1,35 @@ + + + + + + Big Tree Tech EBB42 V1.1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/bw_swan_r5.html b/en/latest/boards/ststm32/bw_swan_r5.html index 0b0a24807a..47f1bd58c0 100644 --- a/en/latest/boards/ststm32/bw_swan_r5.html +++ b/en/latest/boards/ststm32/bw_swan_r5.html @@ -1,28 +1,35 @@ + + + + + + BluesWireless Swan R5 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/cicada_l082cz.html b/en/latest/boards/ststm32/cicada_l082cz.html index 5230c06183..f075f0713d 100644 --- a/en/latest/boards/ststm32/cicada_l082cz.html +++ b/en/latest/boards/ststm32/cicada_l082cz.html @@ -1,28 +1,35 @@ + + + + + + Cicada-L082CZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -750,18 +757,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/cloud_jam.html b/en/latest/boards/ststm32/cloud_jam.html index 147ae4b234..c015572507 100644 --- a/en/latest/boards/ststm32/cloud_jam.html +++ b/en/latest/boards/ststm32/cloud_jam.html @@ -1,28 +1,35 @@ + + + + + + RushUp Cloud-JAM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/cloud_jam_l4.html b/en/latest/boards/ststm32/cloud_jam_l4.html index 9c55019397..b7885dfa2b 100644 --- a/en/latest/boards/ststm32/cloud_jam_l4.html +++ b/en/latest/boards/ststm32/cloud_jam_l4.html @@ -1,28 +1,35 @@ + + + + + + RushUp Cloud-JAM L4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/coreboard_f401rc.html b/en/latest/boards/ststm32/coreboard_f401rc.html index a7f5bcb1e7..783892c4ac 100644 --- a/en/latest/boards/ststm32/coreboard_f401rc.html +++ b/en/latest/boards/ststm32/coreboard_f401rc.html @@ -1,28 +1,35 @@ + + + + + + Core board F401RCT6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/cricket_l082cz.html b/en/latest/boards/ststm32/cricket_l082cz.html index 782ed51277..3cc2e079b6 100644 --- a/en/latest/boards/ststm32/cricket_l082cz.html +++ b/en/latest/boards/ststm32/cricket_l082cz.html @@ -1,28 +1,35 @@ + + + + + + Cricket-L082CZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -750,18 +757,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/demo_f030f4.html b/en/latest/boards/ststm32/demo_f030f4.html index bd0876c525..1d58ac8d99 100644 --- a/en/latest/boards/ststm32/demo_f030f4.html +++ b/en/latest/boards/ststm32/demo_f030f4.html @@ -1,28 +1,35 @@ + + + + + + Demo F030F4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/devebox_h743vitx.html b/en/latest/boards/ststm32/devebox_h743vitx.html index 431d3b7524..04e88897c1 100644 --- a/en/latest/boards/ststm32/devebox_h743vitx.html +++ b/en/latest/boards/ststm32/devebox_h743vitx.html @@ -1,28 +1,35 @@ + + + + + + DevEBox H743VITX — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/devebox_h750vbtx.html b/en/latest/boards/ststm32/devebox_h750vbtx.html index 3b692ed63e..14804988cd 100644 --- a/en/latest/boards/ststm32/devebox_h750vbtx.html +++ b/en/latest/boards/ststm32/devebox_h750vbtx.html @@ -1,28 +1,35 @@ + + + + + + DevEBox H750VBTX — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_b_g431b_esc1.html b/en/latest/boards/ststm32/disco_b_g431b_esc1.html index d6cc1deec7..dcf0cdd018 100644 --- a/en/latest/boards/ststm32/disco_b_g431b_esc1.html +++ b/en/latest/boards/ststm32/disco_b_g431b_esc1.html @@ -1,28 +1,35 @@ + + + + + + ST B-G431B-ESC1 Discovery — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_b_u585i_iot02a.html b/en/latest/boards/ststm32/disco_b_u585i_iot02a.html index 69e2ace4c4..59c1ebf15e 100644 --- a/en/latest/boards/ststm32/disco_b_u585i_iot02a.html +++ b/en/latest/boards/ststm32/disco_b_u585i_iot02a.html @@ -1,28 +1,35 @@ + + + + + + ST B-U585I-IOT02A Discovery — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -752,18 +759,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f030r8.html b/en/latest/boards/ststm32/disco_f030r8.html index 177802ab36..62a768e030 100644 --- a/en/latest/boards/ststm32/disco_f030r8.html +++ b/en/latest/boards/ststm32/disco_f030r8.html @@ -1,28 +1,35 @@ + + + + + + ST STM32F0308DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f051r8.html b/en/latest/boards/ststm32/disco_f051r8.html index 9a3af11f59..41f2ed566c 100644 --- a/en/latest/boards/ststm32/disco_f051r8.html +++ b/en/latest/boards/ststm32/disco_f051r8.html @@ -1,28 +1,35 @@ + + + + + + ST STM32F0DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f072rb.html b/en/latest/boards/ststm32/disco_f072rb.html index c28979bcf0..50915b3824 100644 --- a/en/latest/boards/ststm32/disco_f072rb.html +++ b/en/latest/boards/ststm32/disco_f072rb.html @@ -1,28 +1,35 @@ + + + + + + ST Discovery F072RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f100rb.html b/en/latest/boards/ststm32/disco_f100rb.html index 100762554e..fd554715ad 100644 --- a/en/latest/boards/ststm32/disco_f100rb.html +++ b/en/latest/boards/ststm32/disco_f100rb.html @@ -1,28 +1,35 @@ + + + + + + ST STM32VLDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f303vc.html b/en/latest/boards/ststm32/disco_f303vc.html index 3b657ac481..65502b92de 100644 --- a/en/latest/boards/ststm32/disco_f303vc.html +++ b/en/latest/boards/ststm32/disco_f303vc.html @@ -1,28 +1,35 @@ + + + + + + ST STM32F3DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f334c8.html b/en/latest/boards/ststm32/disco_f334c8.html index 8d582fda15..6e5ea38175 100644 --- a/en/latest/boards/ststm32/disco_f334c8.html +++ b/en/latest/boards/ststm32/disco_f334c8.html @@ -1,28 +1,35 @@ + + + + + + ST 32F3348DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f401vc.html b/en/latest/boards/ststm32/disco_f401vc.html index 163ed1ac4c..5d2afa681f 100644 --- a/en/latest/boards/ststm32/disco_f401vc.html +++ b/en/latest/boards/ststm32/disco_f401vc.html @@ -1,28 +1,35 @@ + + + + + + ST 32F401CDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f407vg.html b/en/latest/boards/ststm32/disco_f407vg.html index 4f96c1af87..128fcdf889 100644 --- a/en/latest/boards/ststm32/disco_f407vg.html +++ b/en/latest/boards/ststm32/disco_f407vg.html @@ -1,28 +1,35 @@ + + + + + + ST STM32F4DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f411ve.html b/en/latest/boards/ststm32/disco_f411ve.html index 9f7bc14120..79049834d9 100644 --- a/en/latest/boards/ststm32/disco_f411ve.html +++ b/en/latest/boards/ststm32/disco_f411ve.html @@ -1,28 +1,35 @@ + + + + + + ST 32F411EDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f412zg.html b/en/latest/boards/ststm32/disco_f412zg.html index e4688e8880..12e97f4865 100644 --- a/en/latest/boards/ststm32/disco_f412zg.html +++ b/en/latest/boards/ststm32/disco_f412zg.html @@ -1,28 +1,35 @@ + + + + + + 32F412GDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f413zh.html b/en/latest/boards/ststm32/disco_f413zh.html index 9cdb4f16e0..d806daa3a3 100644 --- a/en/latest/boards/ststm32/disco_f413zh.html +++ b/en/latest/boards/ststm32/disco_f413zh.html @@ -1,28 +1,35 @@ + + + + + + ST 32F413HDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f429zi.html b/en/latest/boards/ststm32/disco_f429zi.html index cdd505a85a..2140f05252 100644 --- a/en/latest/boards/ststm32/disco_f429zi.html +++ b/en/latest/boards/ststm32/disco_f429zi.html @@ -1,28 +1,35 @@ + + + + + + ST 32F429IDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f469ni.html b/en/latest/boards/ststm32/disco_f469ni.html index 42b8b3d38d..5d010edb77 100644 --- a/en/latest/boards/ststm32/disco_f469ni.html +++ b/en/latest/boards/ststm32/disco_f469ni.html @@ -1,28 +1,35 @@ + + + + + + ST 32F469IDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f723ie.html b/en/latest/boards/ststm32/disco_f723ie.html index 0ee6f31d85..2ba020ac5a 100644 --- a/en/latest/boards/ststm32/disco_f723ie.html +++ b/en/latest/boards/ststm32/disco_f723ie.html @@ -1,28 +1,35 @@ + + + + + + 32F723EDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f746ng.html b/en/latest/boards/ststm32/disco_f746ng.html index 949c79c138..37b8a1a47e 100644 --- a/en/latest/boards/ststm32/disco_f746ng.html +++ b/en/latest/boards/ststm32/disco_f746ng.html @@ -1,28 +1,35 @@ + + + + + + ST 32F746GDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f750n8.html b/en/latest/boards/ststm32/disco_f750n8.html index 9eb7f77e5f..7260204fee 100644 --- a/en/latest/boards/ststm32/disco_f750n8.html +++ b/en/latest/boards/ststm32/disco_f750n8.html @@ -1,28 +1,35 @@ + + + + + + STM32F7508-DK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_f769ni.html b/en/latest/boards/ststm32/disco_f769ni.html index 1a9f4cfda5..4ef4d3e5eb 100644 --- a/en/latest/boards/ststm32/disco_f769ni.html +++ b/en/latest/boards/ststm32/disco_f769ni.html @@ -1,28 +1,35 @@ + + + + + + ST 32F769IDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_g031j6.html b/en/latest/boards/ststm32/disco_g031j6.html index cb3833f181..74bdf71695 100644 --- a/en/latest/boards/ststm32/disco_g031j6.html +++ b/en/latest/boards/ststm32/disco_g031j6.html @@ -1,28 +1,35 @@ + + + + + + ST STM32G0316-DISCO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_g071rb.html b/en/latest/boards/ststm32/disco_g071rb.html index 871b44d17f..20bfd292d9 100644 --- a/en/latest/boards/ststm32/disco_g071rb.html +++ b/en/latest/boards/ststm32/disco_g071rb.html @@ -1,28 +1,35 @@ + + + + + + ST STM32G071B Discovery — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_h735ig.html b/en/latest/boards/ststm32/disco_h735ig.html index 4e0542f1d4..788920e63b 100644 --- a/en/latest/boards/ststm32/disco_h735ig.html +++ b/en/latest/boards/ststm32/disco_h735ig.html @@ -1,28 +1,35 @@ + + + + + + STM32H735G-DK Discovery kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -755,18 +762,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_h747xi.html b/en/latest/boards/ststm32/disco_h747xi.html index cb72d6d5eb..dd84dc0c47 100644 --- a/en/latest/boards/ststm32/disco_h747xi.html +++ b/en/latest/boards/ststm32/disco_h747xi.html @@ -1,28 +1,35 @@ + + + + + + STM32H747I-DISCO — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l053c8.html b/en/latest/boards/ststm32/disco_l053c8.html index 01f107f90d..e7ca3ca730 100644 --- a/en/latest/boards/ststm32/disco_l053c8.html +++ b/en/latest/boards/ststm32/disco_l053c8.html @@ -1,28 +1,35 @@ + + + + + + ST 32L0538DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l072cz_lrwan1.html b/en/latest/boards/ststm32/disco_l072cz_lrwan1.html index 068320394c..e491bd1326 100644 --- a/en/latest/boards/ststm32/disco_l072cz_lrwan1.html +++ b/en/latest/boards/ststm32/disco_l072cz_lrwan1.html @@ -1,28 +1,35 @@ + + + + + + ST DISCO-L072CZ-LRWAN1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l100rc.html b/en/latest/boards/ststm32/disco_l100rc.html index 8bdd54cc6a..dcd1c4a697 100644 --- a/en/latest/boards/ststm32/disco_l100rc.html +++ b/en/latest/boards/ststm32/disco_l100rc.html @@ -1,28 +1,35 @@ + + + + + + ST 32L100DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -752,18 +759,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l152rb.html b/en/latest/boards/ststm32/disco_l152rb.html index 541bad0e6c..ce029473ab 100644 --- a/en/latest/boards/ststm32/disco_l152rb.html +++ b/en/latest/boards/ststm32/disco_l152rb.html @@ -1,28 +1,35 @@ + + + + + + ST STM32LDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l475vg_iot01a.html b/en/latest/boards/ststm32/disco_l475vg_iot01a.html index 73e5c36771..dc56226608 100644 --- a/en/latest/boards/ststm32/disco_l475vg_iot01a.html +++ b/en/latest/boards/ststm32/disco_l475vg_iot01a.html @@ -1,28 +1,35 @@ + + + + + + ST B-L475E-IOT01A Discovery kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l476vg.html b/en/latest/boards/ststm32/disco_l476vg.html index 4f7431193b..6aee01a043 100644 --- a/en/latest/boards/ststm32/disco_l476vg.html +++ b/en/latest/boards/ststm32/disco_l476vg.html @@ -1,28 +1,35 @@ + + + + + + ST 32L476GDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l496ag.html b/en/latest/boards/ststm32/disco_l496ag.html index fdba350e06..5fa828c1d2 100644 --- a/en/latest/boards/ststm32/disco_l496ag.html +++ b/en/latest/boards/ststm32/disco_l496ag.html @@ -1,28 +1,35 @@ + + + + + + ST 32L496GDISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/disco_l4s5i_iot01a.html b/en/latest/boards/ststm32/disco_l4s5i_iot01a.html index 8d84edc4e8..8f3e598994 100644 --- a/en/latest/boards/ststm32/disco_l4s5i_iot01a.html +++ b/en/latest/boards/ststm32/disco_l4s5i_iot01a.html @@ -1,28 +1,35 @@ + + + + + + ST STM32L4+ Discovery kit IoT node — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/diymore_f407vgt.html b/en/latest/boards/ststm32/diymore_f407vgt.html index ea7d645333..2da1aa7508 100644 --- a/en/latest/boards/ststm32/diymore_f407vgt.html +++ b/en/latest/boards/ststm32/diymore_f407vgt.html @@ -1,28 +1,35 @@ + + + + + + F407VG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/econode_l082cz.html b/en/latest/boards/ststm32/econode_l082cz.html index 981066313a..e2c50f62c3 100644 --- a/en/latest/boards/ststm32/econode_l082cz.html +++ b/en/latest/boards/ststm32/econode_l082cz.html @@ -1,28 +1,35 @@ + + + + + + Econode-L082CZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -750,18 +757,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/electrosmith_daisy.html b/en/latest/boards/ststm32/electrosmith_daisy.html index 6d09f3fe00..b5325b1278 100644 --- a/en/latest/boards/ststm32/electrosmith_daisy.html +++ b/en/latest/boards/ststm32/electrosmith_daisy.html @@ -1,28 +1,35 @@ + + + + + + Electrosmith Daisy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/electrosmith_daisy_patch_sm.html b/en/latest/boards/ststm32/electrosmith_daisy_patch_sm.html index bbdef5c1d4..2fe16ea896 100644 --- a/en/latest/boards/ststm32/electrosmith_daisy_patch_sm.html +++ b/en/latest/boards/ststm32/electrosmith_daisy_patch_sm.html @@ -1,28 +1,35 @@ + + + + + + Electrosmith Daisy Patch SM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/electrosmith_daisy_petal_sm.html b/en/latest/boards/ststm32/electrosmith_daisy_petal_sm.html index d30f32b2fb..b484da1596 100644 --- a/en/latest/boards/ststm32/electrosmith_daisy_petal_sm.html +++ b/en/latest/boards/ststm32/electrosmith_daisy_petal_sm.html @@ -1,28 +1,35 @@ + + + + + + Electrosmith Daisy Petal SM — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/elektor_f072c8.html b/en/latest/boards/ststm32/elektor_f072c8.html index a37e8475a5..5d73b1fbc5 100644 --- a/en/latest/boards/ststm32/elektor_f072c8.html +++ b/en/latest/boards/ststm32/elektor_f072c8.html @@ -1,28 +1,35 @@ + + + + + + Elektor LoRa Node Core F072C8 (64 kB) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/elektor_f072cb.html b/en/latest/boards/ststm32/elektor_f072cb.html index ddfd4d918d..05adcd2ec7 100644 --- a/en/latest/boards/ststm32/elektor_f072cb.html +++ b/en/latest/boards/ststm32/elektor_f072cb.html @@ -1,28 +1,35 @@ + + + + + + Elektor LoRa Node Core F072C8 (128 kB) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/elmo_f411re.html b/en/latest/boards/ststm32/elmo_f411re.html index f43a8ce42c..3b8d2a539a 100644 --- a/en/latest/boards/ststm32/elmo_f411re.html +++ b/en/latest/boards/ststm32/elmo_f411re.html @@ -1,28 +1,35 @@ + + + + + + Espotel LoRa Module — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/eval_f072vb.html b/en/latest/boards/ststm32/eval_f072vb.html index 1931c835a9..f95882e9f3 100644 --- a/en/latest/boards/ststm32/eval_f072vb.html +++ b/en/latest/boards/ststm32/eval_f072vb.html @@ -1,28 +1,35 @@ + + + + + + STM32F072-EVAL — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/eval_f107vc.html b/en/latest/boards/ststm32/eval_f107vc.html index b8d7dc6938..7471ae20fd 100644 --- a/en/latest/boards/ststm32/eval_f107vc.html +++ b/en/latest/boards/ststm32/eval_f107vc.html @@ -1,28 +1,35 @@ + + + + + + STM3210C-EVAL — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/eval_f373vc.html b/en/latest/boards/ststm32/eval_f373vc.html index d9a50bdb9e..cf9761b666 100644 --- a/en/latest/boards/ststm32/eval_f373vc.html +++ b/en/latest/boards/ststm32/eval_f373vc.html @@ -1,28 +1,35 @@ + + + + + + STM32373C-EVAL — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/eval_l073z.html b/en/latest/boards/ststm32/eval_l073z.html index a133db37a6..41b14b4ffb 100644 --- a/en/latest/boards/ststm32/eval_l073z.html +++ b/en/latest/boards/ststm32/eval_l073z.html @@ -1,28 +1,35 @@ + + + + + + ST STM32L073Z-EVAL — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/fk407m1.html b/en/latest/boards/ststm32/fk407m1.html index 0900e43c3c..108cdd0918 100644 --- a/en/latest/boards/ststm32/fk407m1.html +++ b/en/latest/boards/ststm32/fk407m1.html @@ -1,28 +1,35 @@ + + + + + + FK407M1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/fysetc_s6.html b/en/latest/boards/ststm32/fysetc_s6.html index 30dc9ab6ba..569a85d260 100644 --- a/en/latest/boards/ststm32/fysetc_s6.html +++ b/en/latest/boards/ststm32/fysetc_s6.html @@ -1,28 +1,35 @@ + + + + + + FYSETC S6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103C4.html b/en/latest/boards/ststm32/genericSTM32F103C4.html index 2f2105add6..311786d12f 100644 --- a/en/latest/boards/ststm32/genericSTM32F103C4.html +++ b/en/latest/boards/ststm32/genericSTM32F103C4.html @@ -1,28 +1,35 @@ + + + + + + STM32F103C4 (6k RAM. 16k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103C6.html b/en/latest/boards/ststm32/genericSTM32F103C6.html index 239b374083..c9d07ec9a0 100644 --- a/en/latest/boards/ststm32/genericSTM32F103C6.html +++ b/en/latest/boards/ststm32/genericSTM32F103C6.html @@ -1,28 +1,35 @@ + + + + + + STM32F103C6 (10k RAM. 32k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103C8.html b/en/latest/boards/ststm32/genericSTM32F103C8.html index 3d55e16b1c..ead8f1ddc7 100644 --- a/en/latest/boards/ststm32/genericSTM32F103C8.html +++ b/en/latest/boards/ststm32/genericSTM32F103C8.html @@ -1,28 +1,35 @@ + + + + + + STM32F103C8 (20k RAM. 64k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103CB.html b/en/latest/boards/ststm32/genericSTM32F103CB.html index 8037bd1f52..2f61cda5d5 100644 --- a/en/latest/boards/ststm32/genericSTM32F103CB.html +++ b/en/latest/boards/ststm32/genericSTM32F103CB.html @@ -1,28 +1,35 @@ + + + + + + STM32F103CB (20k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103R4.html b/en/latest/boards/ststm32/genericSTM32F103R4.html index 3bd4f6eb53..5c8ea2d9b3 100644 --- a/en/latest/boards/ststm32/genericSTM32F103R4.html +++ b/en/latest/boards/ststm32/genericSTM32F103R4.html @@ -1,28 +1,35 @@ + + + + + + STM32F103R4 (6k RAM. 16k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103R6.html b/en/latest/boards/ststm32/genericSTM32F103R6.html index 893a8683ba..fa2769aa7d 100644 --- a/en/latest/boards/ststm32/genericSTM32F103R6.html +++ b/en/latest/boards/ststm32/genericSTM32F103R6.html @@ -1,28 +1,35 @@ + + + + + + STM32F103R6 (10k RAM. 32k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103R8.html b/en/latest/boards/ststm32/genericSTM32F103R8.html index 62bbba50fa..bd47046f37 100644 --- a/en/latest/boards/ststm32/genericSTM32F103R8.html +++ b/en/latest/boards/ststm32/genericSTM32F103R8.html @@ -1,28 +1,35 @@ + + + + + + STM32F103R8 (20k RAM. 64 Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103RB.html b/en/latest/boards/ststm32/genericSTM32F103RB.html index 29b55c7abf..e4a90215b1 100644 --- a/en/latest/boards/ststm32/genericSTM32F103RB.html +++ b/en/latest/boards/ststm32/genericSTM32F103RB.html @@ -1,28 +1,35 @@ + + + + + + STM32F103RB (20k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -765,18 +772,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103RC.html b/en/latest/boards/ststm32/genericSTM32F103RC.html index 76e796be7b..25109fa06c 100644 --- a/en/latest/boards/ststm32/genericSTM32F103RC.html +++ b/en/latest/boards/ststm32/genericSTM32F103RC.html @@ -1,28 +1,35 @@ + + + + + + STM32F103RC (48k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103RD.html b/en/latest/boards/ststm32/genericSTM32F103RD.html index 223f4f36f5..b12d673937 100644 --- a/en/latest/boards/ststm32/genericSTM32F103RD.html +++ b/en/latest/boards/ststm32/genericSTM32F103RD.html @@ -1,28 +1,35 @@ + + + + + + STM32F103RD (64k RAM. 384k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103RE.html b/en/latest/boards/ststm32/genericSTM32F103RE.html index ba4f47ef2d..21259a3618 100644 --- a/en/latest/boards/ststm32/genericSTM32F103RE.html +++ b/en/latest/boards/ststm32/genericSTM32F103RE.html @@ -1,28 +1,35 @@ + + + + + + STM32F103RE (64k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103RF.html b/en/latest/boards/ststm32/genericSTM32F103RF.html index 4e6f16e480..dc29dcda3a 100644 --- a/en/latest/boards/ststm32/genericSTM32F103RF.html +++ b/en/latest/boards/ststm32/genericSTM32F103RF.html @@ -1,28 +1,35 @@ + + + + + + STM32F103RF (96k RAM. 768k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103RG.html b/en/latest/boards/ststm32/genericSTM32F103RG.html index d1df908ac0..6ab5c95c59 100644 --- a/en/latest/boards/ststm32/genericSTM32F103RG.html +++ b/en/latest/boards/ststm32/genericSTM32F103RG.html @@ -1,28 +1,35 @@ + + + + + + STM32F103RG (96k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103T4.html b/en/latest/boards/ststm32/genericSTM32F103T4.html index 0ae6b5d2a2..d90738e9fe 100644 --- a/en/latest/boards/ststm32/genericSTM32F103T4.html +++ b/en/latest/boards/ststm32/genericSTM32F103T4.html @@ -1,28 +1,35 @@ + + + + + + STM32F103T4 (6k RAM. 16k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103T6.html b/en/latest/boards/ststm32/genericSTM32F103T6.html index 2a708af465..c2c9edb56c 100644 --- a/en/latest/boards/ststm32/genericSTM32F103T6.html +++ b/en/latest/boards/ststm32/genericSTM32F103T6.html @@ -1,28 +1,35 @@ + + + + + + STM32F103T6 (10k RAM. 32k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103T8.html b/en/latest/boards/ststm32/genericSTM32F103T8.html index 236e4e2908..564b65c8cc 100644 --- a/en/latest/boards/ststm32/genericSTM32F103T8.html +++ b/en/latest/boards/ststm32/genericSTM32F103T8.html @@ -1,28 +1,35 @@ + + + + + + STM32F103T8 (20k RAM. 64k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103TB.html b/en/latest/boards/ststm32/genericSTM32F103TB.html index f71ff910f9..77b6fab66f 100644 --- a/en/latest/boards/ststm32/genericSTM32F103TB.html +++ b/en/latest/boards/ststm32/genericSTM32F103TB.html @@ -1,28 +1,35 @@ + + + + + + STM32F103TB (20k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103V8.html b/en/latest/boards/ststm32/genericSTM32F103V8.html index 88d4f135c0..75deb630ae 100644 --- a/en/latest/boards/ststm32/genericSTM32F103V8.html +++ b/en/latest/boards/ststm32/genericSTM32F103V8.html @@ -1,28 +1,35 @@ + + + + + + STM32F103V8 (20k RAM. 64k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103VB.html b/en/latest/boards/ststm32/genericSTM32F103VB.html index bb9869e0d4..7c80d96440 100644 --- a/en/latest/boards/ststm32/genericSTM32F103VB.html +++ b/en/latest/boards/ststm32/genericSTM32F103VB.html @@ -1,28 +1,35 @@ + + + + + + STM32F103VB (20k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103VC.html b/en/latest/boards/ststm32/genericSTM32F103VC.html index 977994e6aa..ce67a592db 100644 --- a/en/latest/boards/ststm32/genericSTM32F103VC.html +++ b/en/latest/boards/ststm32/genericSTM32F103VC.html @@ -1,28 +1,35 @@ + + + + + + STM32F103VC (48k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103VD.html b/en/latest/boards/ststm32/genericSTM32F103VD.html index 3e794e8393..80500da3f8 100644 --- a/en/latest/boards/ststm32/genericSTM32F103VD.html +++ b/en/latest/boards/ststm32/genericSTM32F103VD.html @@ -1,28 +1,35 @@ + + + + + + STM32F103VD (64k RAM. 384k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103VE.html b/en/latest/boards/ststm32/genericSTM32F103VE.html index 26c35def1b..b80e2a1244 100644 --- a/en/latest/boards/ststm32/genericSTM32F103VE.html +++ b/en/latest/boards/ststm32/genericSTM32F103VE.html @@ -1,28 +1,35 @@ + + + + + + STM32F103VE (64k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103VF.html b/en/latest/boards/ststm32/genericSTM32F103VF.html index a9b5cec502..5ad71c4ad5 100644 --- a/en/latest/boards/ststm32/genericSTM32F103VF.html +++ b/en/latest/boards/ststm32/genericSTM32F103VF.html @@ -1,28 +1,35 @@ + + + + + + STM32F103VF (96k RAM. 768k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103VG.html b/en/latest/boards/ststm32/genericSTM32F103VG.html index 8ca2e0372a..d9c498acc9 100644 --- a/en/latest/boards/ststm32/genericSTM32F103VG.html +++ b/en/latest/boards/ststm32/genericSTM32F103VG.html @@ -1,28 +1,35 @@ + + + + + + STM32F103VG (96k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103ZC.html b/en/latest/boards/ststm32/genericSTM32F103ZC.html index 4a4db2f957..5058b2026a 100644 --- a/en/latest/boards/ststm32/genericSTM32F103ZC.html +++ b/en/latest/boards/ststm32/genericSTM32F103ZC.html @@ -1,28 +1,35 @@ + + + + + + STM32F103ZC (48k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103ZD.html b/en/latest/boards/ststm32/genericSTM32F103ZD.html index 639c1827d6..efb3a16f45 100644 --- a/en/latest/boards/ststm32/genericSTM32F103ZD.html +++ b/en/latest/boards/ststm32/genericSTM32F103ZD.html @@ -1,28 +1,35 @@ + + + + + + STM32F103ZD (64k RAM. 384k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103ZE.html b/en/latest/boards/ststm32/genericSTM32F103ZE.html index 2b52350627..d6a3a1d76b 100644 --- a/en/latest/boards/ststm32/genericSTM32F103ZE.html +++ b/en/latest/boards/ststm32/genericSTM32F103ZE.html @@ -1,28 +1,35 @@ + + + + + + STM32F103ZE (64k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103ZF.html b/en/latest/boards/ststm32/genericSTM32F103ZF.html index 28035adfed..f85f680b00 100644 --- a/en/latest/boards/ststm32/genericSTM32F103ZF.html +++ b/en/latest/boards/ststm32/genericSTM32F103ZF.html @@ -1,28 +1,35 @@ + + + + + + STM32F103ZF (96k RAM. 768k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F103ZG.html b/en/latest/boards/ststm32/genericSTM32F103ZG.html index e808692c20..8d529bf500 100644 --- a/en/latest/boards/ststm32/genericSTM32F103ZG.html +++ b/en/latest/boards/ststm32/genericSTM32F103ZG.html @@ -1,28 +1,35 @@ + + + + + + STM32F103ZG (96k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F303CB.html b/en/latest/boards/ststm32/genericSTM32F303CB.html index 61670d2804..f7e6f7419d 100644 --- a/en/latest/boards/ststm32/genericSTM32F303CB.html +++ b/en/latest/boards/ststm32/genericSTM32F303CB.html @@ -1,28 +1,35 @@ + + + + + + STM32F303CB (32k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F373RC.html b/en/latest/boards/ststm32/genericSTM32F373RC.html index 25ea4f6f0d..6958cb7fec 100644 --- a/en/latest/boards/ststm32/genericSTM32F373RC.html +++ b/en/latest/boards/ststm32/genericSTM32F373RC.html @@ -1,28 +1,35 @@ + + + + + + STM32F373RC (32k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -754,18 +761,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401CB.html b/en/latest/boards/ststm32/genericSTM32F401CB.html index 84512eaf95..f4ca60e205 100644 --- a/en/latest/boards/ststm32/genericSTM32F401CB.html +++ b/en/latest/boards/ststm32/genericSTM32F401CB.html @@ -1,28 +1,35 @@ + + + + + + STM32F401CB (64k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401CC.html b/en/latest/boards/ststm32/genericSTM32F401CC.html index c53ed19336..2130568640 100644 --- a/en/latest/boards/ststm32/genericSTM32F401CC.html +++ b/en/latest/boards/ststm32/genericSTM32F401CC.html @@ -1,28 +1,35 @@ + + + + + + STM32F401CC (64k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401CD.html b/en/latest/boards/ststm32/genericSTM32F401CD.html index a8c3933e19..c330ee4be0 100644 --- a/en/latest/boards/ststm32/genericSTM32F401CD.html +++ b/en/latest/boards/ststm32/genericSTM32F401CD.html @@ -1,28 +1,35 @@ + + + + + + STM32F401CD (96k RAM. 384k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401CE.html b/en/latest/boards/ststm32/genericSTM32F401CE.html index 698dc1a9ca..986f8cd392 100644 --- a/en/latest/boards/ststm32/genericSTM32F401CE.html +++ b/en/latest/boards/ststm32/genericSTM32F401CE.html @@ -1,28 +1,35 @@ + + + + + + STM32F401CE (96k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401RB.html b/en/latest/boards/ststm32/genericSTM32F401RB.html index 4e09a2a955..606b2f33b1 100644 --- a/en/latest/boards/ststm32/genericSTM32F401RB.html +++ b/en/latest/boards/ststm32/genericSTM32F401RB.html @@ -1,28 +1,35 @@ + + + + + + STM32F401RB (64k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401RC.html b/en/latest/boards/ststm32/genericSTM32F401RC.html index 236ea4fd7e..0aecc85801 100644 --- a/en/latest/boards/ststm32/genericSTM32F401RC.html +++ b/en/latest/boards/ststm32/genericSTM32F401RC.html @@ -1,28 +1,35 @@ + + + + + + STM32F401RC (64k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401RD.html b/en/latest/boards/ststm32/genericSTM32F401RD.html index 8218ee4b54..0449757880 100644 --- a/en/latest/boards/ststm32/genericSTM32F401RD.html +++ b/en/latest/boards/ststm32/genericSTM32F401RD.html @@ -1,28 +1,35 @@ + + + + + + STM32F401RD (96k RAM. 384k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F401RE.html b/en/latest/boards/ststm32/genericSTM32F401RE.html index edbaf836f9..88aa37064d 100644 --- a/en/latest/boards/ststm32/genericSTM32F401RE.html +++ b/en/latest/boards/ststm32/genericSTM32F401RE.html @@ -1,28 +1,35 @@ + + + + + + STM32F401RE (96k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F405RG.html b/en/latest/boards/ststm32/genericSTM32F405RG.html index 4f2c51021f..d309e2e370 100644 --- a/en/latest/boards/ststm32/genericSTM32F405RG.html +++ b/en/latest/boards/ststm32/genericSTM32F405RG.html @@ -1,28 +1,35 @@ + + + + + + STM32F405RG (128k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F407IGT6.html b/en/latest/boards/ststm32/genericSTM32F407IGT6.html index 9cd84bad87..3862666bb0 100644 --- a/en/latest/boards/ststm32/genericSTM32F407IGT6.html +++ b/en/latest/boards/ststm32/genericSTM32F407IGT6.html @@ -1,28 +1,35 @@ + + + + + + STM32F407IG (192k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -754,18 +761,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F407VET6.html b/en/latest/boards/ststm32/genericSTM32F407VET6.html index 945116d5fd..a53b7fb2e4 100644 --- a/en/latest/boards/ststm32/genericSTM32F407VET6.html +++ b/en/latest/boards/ststm32/genericSTM32F407VET6.html @@ -1,28 +1,35 @@ + + + + + + STM32F407VE (192k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F407VGT6.html b/en/latest/boards/ststm32/genericSTM32F407VGT6.html index 1a8f86a648..f0b0f46853 100644 --- a/en/latest/boards/ststm32/genericSTM32F407VGT6.html +++ b/en/latest/boards/ststm32/genericSTM32F407VGT6.html @@ -1,28 +1,35 @@ + + + + + + STM32F407VG (128k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F410C8.html b/en/latest/boards/ststm32/genericSTM32F410C8.html index 4d622f9927..cb88192475 100644 --- a/en/latest/boards/ststm32/genericSTM32F410C8.html +++ b/en/latest/boards/ststm32/genericSTM32F410C8.html @@ -1,28 +1,35 @@ + + + + + + STM32F410C8 (32k RAM. 64k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F410CB.html b/en/latest/boards/ststm32/genericSTM32F410CB.html index e9385e9c37..a0a067105b 100644 --- a/en/latest/boards/ststm32/genericSTM32F410CB.html +++ b/en/latest/boards/ststm32/genericSTM32F410CB.html @@ -1,28 +1,35 @@ + + + + + + STM32F410CB (32k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F410R8.html b/en/latest/boards/ststm32/genericSTM32F410R8.html index 1bcfb02298..56a67ac46d 100644 --- a/en/latest/boards/ststm32/genericSTM32F410R8.html +++ b/en/latest/boards/ststm32/genericSTM32F410R8.html @@ -1,28 +1,35 @@ + + + + + + STM32F410R8 (32k RAM. 64k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F410RB.html b/en/latest/boards/ststm32/genericSTM32F410RB.html index 5d4e2bfb17..32902210ee 100644 --- a/en/latest/boards/ststm32/genericSTM32F410RB.html +++ b/en/latest/boards/ststm32/genericSTM32F410RB.html @@ -1,28 +1,35 @@ + + + + + + STM32F410RB (32k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F411CC.html b/en/latest/boards/ststm32/genericSTM32F411CC.html index 3beb54af85..c0604d382b 100644 --- a/en/latest/boards/ststm32/genericSTM32F411CC.html +++ b/en/latest/boards/ststm32/genericSTM32F411CC.html @@ -1,28 +1,35 @@ + + + + + + STM32F411CC (128k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F411CE.html b/en/latest/boards/ststm32/genericSTM32F411CE.html index 8136900574..70c6e5e1b7 100644 --- a/en/latest/boards/ststm32/genericSTM32F411CE.html +++ b/en/latest/boards/ststm32/genericSTM32F411CE.html @@ -1,28 +1,35 @@ + + + + + + STM32F411CE (128k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F411RC.html b/en/latest/boards/ststm32/genericSTM32F411RC.html index ea7e3d87bd..f03bd979b2 100644 --- a/en/latest/boards/ststm32/genericSTM32F411RC.html +++ b/en/latest/boards/ststm32/genericSTM32F411RC.html @@ -1,28 +1,35 @@ + + + + + + STM32F411RC (128k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F411RE.html b/en/latest/boards/ststm32/genericSTM32F411RE.html index 75a988a22e..7a62a41bfb 100644 --- a/en/latest/boards/ststm32/genericSTM32F411RE.html +++ b/en/latest/boards/ststm32/genericSTM32F411RE.html @@ -1,28 +1,35 @@ + + + + + + STM32F411RE (128k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F412CE.html b/en/latest/boards/ststm32/genericSTM32F412CE.html index 0b38e28103..8a69b6e905 100644 --- a/en/latest/boards/ststm32/genericSTM32F412CE.html +++ b/en/latest/boards/ststm32/genericSTM32F412CE.html @@ -1,28 +1,35 @@ + + + + + + STM32F412CE (256k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F412CG.html b/en/latest/boards/ststm32/genericSTM32F412CG.html index 026322277d..1ff98728ad 100644 --- a/en/latest/boards/ststm32/genericSTM32F412CG.html +++ b/en/latest/boards/ststm32/genericSTM32F412CG.html @@ -1,28 +1,35 @@ + + + + + + STM32F412CG (256k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F412RE.html b/en/latest/boards/ststm32/genericSTM32F412RE.html index e2aa191649..286cd86b23 100644 --- a/en/latest/boards/ststm32/genericSTM32F412RE.html +++ b/en/latest/boards/ststm32/genericSTM32F412RE.html @@ -1,28 +1,35 @@ + + + + + + STM32F412RE (256k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F412RG.html b/en/latest/boards/ststm32/genericSTM32F412RG.html index 4d52d83390..dbf27e1071 100644 --- a/en/latest/boards/ststm32/genericSTM32F412RG.html +++ b/en/latest/boards/ststm32/genericSTM32F412RG.html @@ -1,28 +1,35 @@ + + + + + + STM32F412RG (256k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F413CG.html b/en/latest/boards/ststm32/genericSTM32F413CG.html index a12247823e..e492579566 100644 --- a/en/latest/boards/ststm32/genericSTM32F413CG.html +++ b/en/latest/boards/ststm32/genericSTM32F413CG.html @@ -1,28 +1,35 @@ + + + + + + STM32F413CG (320k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F413CH.html b/en/latest/boards/ststm32/genericSTM32F413CH.html index 41374fffed..607e2110b1 100644 --- a/en/latest/boards/ststm32/genericSTM32F413CH.html +++ b/en/latest/boards/ststm32/genericSTM32F413CH.html @@ -1,28 +1,35 @@ + + + + + + STM32F413CH (320k RAM. 1536k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F413RG.html b/en/latest/boards/ststm32/genericSTM32F413RG.html index 3c88f55775..23c2c7ebd4 100644 --- a/en/latest/boards/ststm32/genericSTM32F413RG.html +++ b/en/latest/boards/ststm32/genericSTM32F413RG.html @@ -1,28 +1,35 @@ + + + + + + STM32F413RG (320k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F413RH.html b/en/latest/boards/ststm32/genericSTM32F413RH.html index 8daba8a050..b142b7bf27 100644 --- a/en/latest/boards/ststm32/genericSTM32F413RH.html +++ b/en/latest/boards/ststm32/genericSTM32F413RH.html @@ -1,28 +1,35 @@ + + + + + + STM32F413RH (320k RAM. 1536k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F415RG.html b/en/latest/boards/ststm32/genericSTM32F415RG.html index 97ba238eb3..9e5dcfe147 100644 --- a/en/latest/boards/ststm32/genericSTM32F415RG.html +++ b/en/latest/boards/ststm32/genericSTM32F415RG.html @@ -1,28 +1,35 @@ + + + + + + STM32F415RG (128k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F417VE.html b/en/latest/boards/ststm32/genericSTM32F417VE.html index af17b9e633..a51322c1bc 100644 --- a/en/latest/boards/ststm32/genericSTM32F417VE.html +++ b/en/latest/boards/ststm32/genericSTM32F417VE.html @@ -1,28 +1,35 @@ + + + + + + STM32F417VE (128k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F417VG.html b/en/latest/boards/ststm32/genericSTM32F417VG.html index 4d434e804b..612c66e0ed 100644 --- a/en/latest/boards/ststm32/genericSTM32F417VG.html +++ b/en/latest/boards/ststm32/genericSTM32F417VG.html @@ -1,28 +1,35 @@ + + + + + + STM32F417VG (128k RAM. 1024k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F423CH.html b/en/latest/boards/ststm32/genericSTM32F423CH.html index 12ac157dec..1eaee617d7 100644 --- a/en/latest/boards/ststm32/genericSTM32F423CH.html +++ b/en/latest/boards/ststm32/genericSTM32F423CH.html @@ -1,28 +1,35 @@ + + + + + + STM32F423CH (320k RAM. 1536k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F423RH.html b/en/latest/boards/ststm32/genericSTM32F423RH.html index 81fb630638..b61ced0fa5 100644 --- a/en/latest/boards/ststm32/genericSTM32F423RH.html +++ b/en/latest/boards/ststm32/genericSTM32F423RH.html @@ -1,28 +1,35 @@ + + + + + + STM32F423RH (320k RAM. 1536k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F446RC.html b/en/latest/boards/ststm32/genericSTM32F446RC.html index 82ad13270a..4469b0b089 100644 --- a/en/latest/boards/ststm32/genericSTM32F446RC.html +++ b/en/latest/boards/ststm32/genericSTM32F446RC.html @@ -1,28 +1,35 @@ + + + + + + STM32F446RC (128k RAM. 256k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32F446RE.html b/en/latest/boards/ststm32/genericSTM32F446RE.html index f8b098d56d..bce732cdb0 100644 --- a/en/latest/boards/ststm32/genericSTM32F446RE.html +++ b/en/latest/boards/ststm32/genericSTM32F446RE.html @@ -1,28 +1,35 @@ + + + + + + STM32F446RE (128k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32G431CB.html b/en/latest/boards/ststm32/genericSTM32G431CB.html index c3b09fef1e..7274635617 100644 --- a/en/latest/boards/ststm32/genericSTM32G431CB.html +++ b/en/latest/boards/ststm32/genericSTM32G431CB.html @@ -1,28 +1,35 @@ + + + + + + STM32G431CB (32k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/genericSTM32H750VB.html b/en/latest/boards/ststm32/genericSTM32H750VB.html index cc45509090..4ccf6f7236 100644 --- a/en/latest/boards/ststm32/genericSTM32H750VB.html +++ b/en/latest/boards/ststm32/genericSTM32H750VB.html @@ -1,28 +1,35 @@ + + + + + + STM32H750VBT6 (1024k RAM. 128k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/giga_r1_m4.html b/en/latest/boards/ststm32/giga_r1_m4.html index 79bbe9b4b7..15077e8cae 100644 --- a/en/latest/boards/ststm32/giga_r1_m4.html +++ b/en/latest/boards/ststm32/giga_r1_m4.html @@ -1,28 +1,35 @@ + + + + + + Arduino Giga R1 (M4 core) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/giga_r1_m7.html b/en/latest/boards/ststm32/giga_r1_m7.html index 27bee3ef4b..2f9645fc15 100644 --- a/en/latest/boards/ststm32/giga_r1_m7.html +++ b/en/latest/boards/ststm32/giga_r1_m7.html @@ -1,28 +1,35 @@ + + + + + + Arduino Giga R1 (M7 core) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/gnat_l082cz.html b/en/latest/boards/ststm32/gnat_l082cz.html index 34df953a9e..e28a751eec 100644 --- a/en/latest/boards/ststm32/gnat_l082cz.html +++ b/en/latest/boards/ststm32/gnat_l082cz.html @@ -1,28 +1,35 @@ + + + + + + Gnat-L082CZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -750,18 +757,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/grasshopper_l082cz.html b/en/latest/boards/ststm32/grasshopper_l082cz.html index ae4a55e35c..c518c3aab1 100644 --- a/en/latest/boards/ststm32/grasshopper_l082cz.html +++ b/en/latest/boards/ststm32/grasshopper_l082cz.html @@ -1,28 +1,35 @@ + + + + + + Grasshopper-L082CZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -750,18 +757,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/hy_tinystm103tb.html b/en/latest/boards/ststm32/hy_tinystm103tb.html index 4a3755a555..cfd66ec81a 100644 --- a/en/latest/boards/ststm32/hy_tinystm103tb.html +++ b/en/latest/boards/ststm32/hy_tinystm103tb.html @@ -1,28 +1,35 @@ + + + + + + Tiny STM103T — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/leafony_ap03.html b/en/latest/boards/ststm32/leafony_ap03.html index 125e647574..eaf3ef3e93 100644 --- a/en/latest/boards/ststm32/leafony_ap03.html +++ b/en/latest/boards/ststm32/leafony_ap03.html @@ -1,28 +1,35 @@ + + + + + + Leafony Systems AP03 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/lora_e5_dev_board.html b/en/latest/boards/ststm32/lora_e5_dev_board.html index accfb4910b..536878ab22 100644 --- a/en/latest/boards/ststm32/lora_e5_dev_board.html +++ b/en/latest/boards/ststm32/lora_e5_dev_board.html @@ -1,28 +1,35 @@ + + + + + + SeeedStudio LoRa E5 Dev Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -744,18 +751,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/lora_e5_mini.html b/en/latest/boards/ststm32/lora_e5_mini.html index 95e130980c..446475c2a0 100644 --- a/en/latest/boards/ststm32/lora_e5_mini.html +++ b/en/latest/boards/ststm32/lora_e5_mini.html @@ -1,28 +1,35 @@ + + + + + + SeeedStudio LoRa-E5 mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -718,18 +725,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/malyanm200_f070cb.html b/en/latest/boards/ststm32/malyanm200_f070cb.html index a79e86a28b..79f88e46e4 100644 --- a/en/latest/boards/ststm32/malyanm200_f070cb.html +++ b/en/latest/boards/ststm32/malyanm200_f070cb.html @@ -1,28 +1,35 @@ + + + + + + M200 V2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/malyanm200_f103cb.html b/en/latest/boards/ststm32/malyanm200_f103cb.html index 7cd8776e47..d0ce3d8a11 100644 --- a/en/latest/boards/ststm32/malyanm200_f103cb.html +++ b/en/latest/boards/ststm32/malyanm200_f103cb.html @@ -1,28 +1,35 @@ + + + + + + Malyan M200 V1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/malyanm300_f070cb.html b/en/latest/boards/ststm32/malyanm300_f070cb.html index a60f16ca57..58e7cd9e5e 100644 --- a/en/latest/boards/ststm32/malyanm300_f070cb.html +++ b/en/latest/boards/ststm32/malyanm300_f070cb.html @@ -1,28 +1,35 @@ + + + + + + M300 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/maple.html b/en/latest/boards/ststm32/maple.html index f0fa0af4cb..39d49c68ee 100644 --- a/en/latest/boards/ststm32/maple.html +++ b/en/latest/boards/ststm32/maple.html @@ -1,28 +1,35 @@ + + + + + + Maple — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/maple_mini_b20.html b/en/latest/boards/ststm32/maple_mini_b20.html index 38b0a86cdf..7943c59e9c 100644 --- a/en/latest/boards/ststm32/maple_mini_b20.html +++ b/en/latest/boards/ststm32/maple_mini_b20.html @@ -1,28 +1,35 @@ + + + + + + Maple Mini Bootloader 2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/maple_mini_origin.html b/en/latest/boards/ststm32/maple_mini_origin.html index f617bb2ee3..53e53cd7e6 100644 --- a/en/latest/boards/ststm32/maple_mini_origin.html +++ b/en/latest/boards/ststm32/maple_mini_origin.html @@ -1,28 +1,35 @@ + + + + + + Maple Mini Original — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/maple_ret6.html b/en/latest/boards/ststm32/maple_ret6.html index 5e901487c3..4d9ee4d47d 100644 --- a/en/latest/boards/ststm32/maple_ret6.html +++ b/en/latest/boards/ststm32/maple_ret6.html @@ -1,28 +1,35 @@ + + + + + + Maple (RET6) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mbed_connect_odin.html b/en/latest/boards/ststm32/mbed_connect_odin.html index 8bd3a5d232..c0117ef472 100644 --- a/en/latest/boards/ststm32/mbed_connect_odin.html +++ b/en/latest/boards/ststm32/mbed_connect_odin.html @@ -1,28 +1,35 @@ + + + + + + Mbed Connect Cloud — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -754,18 +761,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/microduino32_flash.html b/en/latest/boards/ststm32/microduino32_flash.html index dd9cf5a709..793951e506 100644 --- a/en/latest/boards/ststm32/microduino32_flash.html +++ b/en/latest/boards/ststm32/microduino32_flash.html @@ -1,28 +1,35 @@ + + + + + + Microduino Core STM32 to Flash — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mkr_sharky.html b/en/latest/boards/ststm32/mkr_sharky.html index 6423e2396d..86f6d1c998 100644 --- a/en/latest/boards/ststm32/mkr_sharky.html +++ b/en/latest/boards/ststm32/mkr_sharky.html @@ -1,28 +1,35 @@ + + + + + + MKR Sharky — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -749,18 +756,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mote_l152rc.html b/en/latest/boards/ststm32/mote_l152rc.html index 2757524f6e..68e755dcad 100644 --- a/en/latest/boards/ststm32/mote_l152rc.html +++ b/en/latest/boards/ststm32/mote_l152rc.html @@ -1,28 +1,35 @@ + + + + + + NAMote72 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mtb_ublox_odin_w2.html b/en/latest/boards/ststm32/mtb_ublox_odin_w2.html index 020a268296..720744416c 100644 --- a/en/latest/boards/ststm32/mtb_ublox_odin_w2.html +++ b/en/latest/boards/ststm32/mtb_ublox_odin_w2.html @@ -1,28 +1,35 @@ + + + + + + u-blox ODIN-W2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mts_dragonfly_f411re.html b/en/latest/boards/ststm32/mts_dragonfly_f411re.html index 12a209fc6a..3efcf3f39e 100644 --- a/en/latest/boards/ststm32/mts_dragonfly_f411re.html +++ b/en/latest/boards/ststm32/mts_dragonfly_f411re.html @@ -1,28 +1,35 @@ + + + + + + MTS Dragonfly — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mts_mdot_f405rg.html b/en/latest/boards/ststm32/mts_mdot_f405rg.html index b39b1c4c00..f0e1c906f4 100644 --- a/en/latest/boards/ststm32/mts_mdot_f405rg.html +++ b/en/latest/boards/ststm32/mts_mdot_f405rg.html @@ -1,28 +1,35 @@ + + + + + + MultiTech mDot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -755,18 +762,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mts_mdot_f411re.html b/en/latest/boards/ststm32/mts_mdot_f411re.html index bf43139798..7bc6c4d151 100644 --- a/en/latest/boards/ststm32/mts_mdot_f411re.html +++ b/en/latest/boards/ststm32/mts_mdot_f411re.html @@ -1,28 +1,35 @@ + + + + + + MultiTech mDot F411 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -755,18 +762,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/mxchip_az3166.html b/en/latest/boards/ststm32/mxchip_az3166.html index e5f724a6ba..ca36b1d809 100644 --- a/en/latest/boards/ststm32/mxchip_az3166.html +++ b/en/latest/boards/ststm32/mxchip_az3166.html @@ -1,28 +1,35 @@ + + + + + + Microsoft Azure IoT Development Kit (MXChip AZ3166) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/netduino2plus.html b/en/latest/boards/ststm32/netduino2plus.html index 79f7fe00f1..219bd45286 100644 --- a/en/latest/boards/ststm32/netduino2plus.html +++ b/en/latest/boards/ststm32/netduino2plus.html @@ -1,28 +1,35 @@ + + + + + + N2+ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nicla_vision.html b/en/latest/boards/ststm32/nicla_vision.html index 89e5ddb3a2..06ed168e5f 100644 --- a/en/latest/boards/ststm32/nicla_vision.html +++ b/en/latest/boards/ststm32/nicla_vision.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nicla Vision — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nicla_vision_m4.html b/en/latest/boards/ststm32/nicla_vision_m4.html index b3b8357097..b14f8e83e4 100644 --- a/en/latest/boards/ststm32/nicla_vision_m4.html +++ b/en/latest/boards/ststm32/nicla_vision_m4.html @@ -1,28 +1,35 @@ + + + + + + Arduino Nicla Vision (M4 core) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f030r8.html b/en/latest/boards/ststm32/nucleo_f030r8.html index aade38eb25..44ffb155e9 100644 --- a/en/latest/boards/ststm32/nucleo_f030r8.html +++ b/en/latest/boards/ststm32/nucleo_f030r8.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F030R8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f031k6.html b/en/latest/boards/ststm32/nucleo_f031k6.html index 0227453c7f..9a0750e00e 100644 --- a/en/latest/boards/ststm32/nucleo_f031k6.html +++ b/en/latest/boards/ststm32/nucleo_f031k6.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F031K6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f042k6.html b/en/latest/boards/ststm32/nucleo_f042k6.html index 6b02d43436..020db097e7 100644 --- a/en/latest/boards/ststm32/nucleo_f042k6.html +++ b/en/latest/boards/ststm32/nucleo_f042k6.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F042K6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f070rb.html b/en/latest/boards/ststm32/nucleo_f070rb.html index d27e9de6e6..ff0a6ea1b6 100644 --- a/en/latest/boards/ststm32/nucleo_f070rb.html +++ b/en/latest/boards/ststm32/nucleo_f070rb.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F070RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f072rb.html b/en/latest/boards/ststm32/nucleo_f072rb.html index 731e3efe25..f6cf6d101b 100644 --- a/en/latest/boards/ststm32/nucleo_f072rb.html +++ b/en/latest/boards/ststm32/nucleo_f072rb.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F072RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f091rc.html b/en/latest/boards/ststm32/nucleo_f091rc.html index ed593eb045..19fd899ce5 100644 --- a/en/latest/boards/ststm32/nucleo_f091rc.html +++ b/en/latest/boards/ststm32/nucleo_f091rc.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F091RC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f103rb.html b/en/latest/boards/ststm32/nucleo_f103rb.html index 1599448105..f2c51e36a2 100644 --- a/en/latest/boards/ststm32/nucleo_f103rb.html +++ b/en/latest/boards/ststm32/nucleo_f103rb.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F103RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f207zg.html b/en/latest/boards/ststm32/nucleo_f207zg.html index d5ebc86f2f..c36cf9c20d 100644 --- a/en/latest/boards/ststm32/nucleo_f207zg.html +++ b/en/latest/boards/ststm32/nucleo_f207zg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F207ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f302r8.html b/en/latest/boards/ststm32/nucleo_f302r8.html index 7520ae304f..03c12518a6 100644 --- a/en/latest/boards/ststm32/nucleo_f302r8.html +++ b/en/latest/boards/ststm32/nucleo_f302r8.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F302R8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f303k8.html b/en/latest/boards/ststm32/nucleo_f303k8.html index ff49dee6c5..02d66a6d87 100644 --- a/en/latest/boards/ststm32/nucleo_f303k8.html +++ b/en/latest/boards/ststm32/nucleo_f303k8.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F303K8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f303re.html b/en/latest/boards/ststm32/nucleo_f303re.html index ea0c4f1dfa..5f3a3314eb 100644 --- a/en/latest/boards/ststm32/nucleo_f303re.html +++ b/en/latest/boards/ststm32/nucleo_f303re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F303RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f303ze.html b/en/latest/boards/ststm32/nucleo_f303ze.html index 8f8a640ea0..b15aaee68e 100644 --- a/en/latest/boards/ststm32/nucleo_f303ze.html +++ b/en/latest/boards/ststm32/nucleo_f303ze.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F303ZE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f334r8.html b/en/latest/boards/ststm32/nucleo_f334r8.html index e4a3f33b70..283823051b 100644 --- a/en/latest/boards/ststm32/nucleo_f334r8.html +++ b/en/latest/boards/ststm32/nucleo_f334r8.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F334R8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f401re.html b/en/latest/boards/ststm32/nucleo_f401re.html index b788fafe62..547273bfee 100644 --- a/en/latest/boards/ststm32/nucleo_f401re.html +++ b/en/latest/boards/ststm32/nucleo_f401re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F401RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -770,18 +777,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f410rb.html b/en/latest/boards/ststm32/nucleo_f410rb.html index 2f36f3aa24..1fe03a4e31 100644 --- a/en/latest/boards/ststm32/nucleo_f410rb.html +++ b/en/latest/boards/ststm32/nucleo_f410rb.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F410RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f411re.html b/en/latest/boards/ststm32/nucleo_f411re.html index b542c6afbc..87fa3ec511 100644 --- a/en/latest/boards/ststm32/nucleo_f411re.html +++ b/en/latest/boards/ststm32/nucleo_f411re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F411RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f412zg.html b/en/latest/boards/ststm32/nucleo_f412zg.html index bc5086f1bd..af0e35758f 100644 --- a/en/latest/boards/ststm32/nucleo_f412zg.html +++ b/en/latest/boards/ststm32/nucleo_f412zg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F412ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f413zh.html b/en/latest/boards/ststm32/nucleo_f413zh.html index 084d3b8ff0..624dce1623 100644 --- a/en/latest/boards/ststm32/nucleo_f413zh.html +++ b/en/latest/boards/ststm32/nucleo_f413zh.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F413ZH — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f429zi.html b/en/latest/boards/ststm32/nucleo_f429zi.html index ccaa6b299e..6aa0f1a213 100644 --- a/en/latest/boards/ststm32/nucleo_f429zi.html +++ b/en/latest/boards/ststm32/nucleo_f429zi.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F429ZI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f439zi.html b/en/latest/boards/ststm32/nucleo_f439zi.html index da54f684f1..3d5bd25379 100644 --- a/en/latest/boards/ststm32/nucleo_f439zi.html +++ b/en/latest/boards/ststm32/nucleo_f439zi.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F439ZI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f446re.html b/en/latest/boards/ststm32/nucleo_f446re.html index e4fe07d5bc..9305111712 100644 --- a/en/latest/boards/ststm32/nucleo_f446re.html +++ b/en/latest/boards/ststm32/nucleo_f446re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F446RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f446ze.html b/en/latest/boards/ststm32/nucleo_f446ze.html index 8f1ee5c116..5d071c70c2 100644 --- a/en/latest/boards/ststm32/nucleo_f446ze.html +++ b/en/latest/boards/ststm32/nucleo_f446ze.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F446ZE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f722ze.html b/en/latest/boards/ststm32/nucleo_f722ze.html index a7d62b290d..9a888911c8 100644 --- a/en/latest/boards/ststm32/nucleo_f722ze.html +++ b/en/latest/boards/ststm32/nucleo_f722ze.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F722ZE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f746zg.html b/en/latest/boards/ststm32/nucleo_f746zg.html index afd40cabf5..16fd792847 100644 --- a/en/latest/boards/ststm32/nucleo_f746zg.html +++ b/en/latest/boards/ststm32/nucleo_f746zg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F746ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f756zg.html b/en/latest/boards/ststm32/nucleo_f756zg.html index 5c23a27695..672b5b7dee 100644 --- a/en/latest/boards/ststm32/nucleo_f756zg.html +++ b/en/latest/boards/ststm32/nucleo_f756zg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F756ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_f767zi.html b/en/latest/boards/ststm32/nucleo_f767zi.html index 2dfc9c247a..31827e0744 100644 --- a/en/latest/boards/ststm32/nucleo_f767zi.html +++ b/en/latest/boards/ststm32/nucleo_f767zi.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo F767ZI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g031k8.html b/en/latest/boards/ststm32/nucleo_g031k8.html index 8c7855ee83..69b4507792 100644 --- a/en/latest/boards/ststm32/nucleo_g031k8.html +++ b/en/latest/boards/ststm32/nucleo_g031k8.html @@ -1,28 +1,35 @@ + + + + + + ST NUCLEO-G031K8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g070rb.html b/en/latest/boards/ststm32/nucleo_g070rb.html index f3e327aec0..d2be5b34d6 100644 --- a/en/latest/boards/ststm32/nucleo_g070rb.html +++ b/en/latest/boards/ststm32/nucleo_g070rb.html @@ -1,28 +1,35 @@ + + + + + + Nucleo G070RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g071rb.html b/en/latest/boards/ststm32/nucleo_g071rb.html index a3003c2d09..c291b4d235 100644 --- a/en/latest/boards/ststm32/nucleo_g071rb.html +++ b/en/latest/boards/ststm32/nucleo_g071rb.html @@ -1,28 +1,35 @@ + + + + + + Nucleo G071RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g0b1re.html b/en/latest/boards/ststm32/nucleo_g0b1re.html index 776b8a1e6c..5d5b9abe9b 100644 --- a/en/latest/boards/ststm32/nucleo_g0b1re.html +++ b/en/latest/boards/ststm32/nucleo_g0b1re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo G0B1RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g431kb.html b/en/latest/boards/ststm32/nucleo_g431kb.html index b2ec79eac8..dd216ec03a 100644 --- a/en/latest/boards/ststm32/nucleo_g431kb.html +++ b/en/latest/boards/ststm32/nucleo_g431kb.html @@ -1,28 +1,35 @@ + + + + + + Nucleo G431KB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g431rb.html b/en/latest/boards/ststm32/nucleo_g431rb.html index 0736905a1c..fff7971495 100644 --- a/en/latest/boards/ststm32/nucleo_g431rb.html +++ b/en/latest/boards/ststm32/nucleo_g431rb.html @@ -1,28 +1,35 @@ + + + + + + Nucleo G431RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_g474re.html b/en/latest/boards/ststm32/nucleo_g474re.html index a2b4ec0dc0..7696e7f6f8 100644 --- a/en/latest/boards/ststm32/nucleo_g474re.html +++ b/en/latest/boards/ststm32/nucleo_g474re.html @@ -1,28 +1,35 @@ + + + + + + Nucleo G474RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_h723zg.html b/en/latest/boards/ststm32/nucleo_h723zg.html index b5a179530e..ba0620a08d 100644 --- a/en/latest/boards/ststm32/nucleo_h723zg.html +++ b/en/latest/boards/ststm32/nucleo_h723zg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo H723ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_h743zi.html b/en/latest/boards/ststm32/nucleo_h743zi.html index c4726bb8ae..cba217d967 100644 --- a/en/latest/boards/ststm32/nucleo_h743zi.html +++ b/en/latest/boards/ststm32/nucleo_h743zi.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo H743ZI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_h745zi_q.html b/en/latest/boards/ststm32/nucleo_h745zi_q.html index 30af413428..eee833db58 100644 --- a/en/latest/boards/ststm32/nucleo_h745zi_q.html +++ b/en/latest/boards/ststm32/nucleo_h745zi_q.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo H745ZI-Q — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_h753zi.html b/en/latest/boards/ststm32/nucleo_h753zi.html index fa3fa6feac..6513cfaadb 100644 --- a/en/latest/boards/ststm32/nucleo_h753zi.html +++ b/en/latest/boards/ststm32/nucleo_h753zi.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo H753ZI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l010rb.html b/en/latest/boards/ststm32/nucleo_l010rb.html index 627f1ecd99..b007cc07e0 100644 --- a/en/latest/boards/ststm32/nucleo_l010rb.html +++ b/en/latest/boards/ststm32/nucleo_l010rb.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L010RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -754,18 +761,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l011k4.html b/en/latest/boards/ststm32/nucleo_l011k4.html index 854b28c1f9..1ab0c1ecc4 100644 --- a/en/latest/boards/ststm32/nucleo_l011k4.html +++ b/en/latest/boards/ststm32/nucleo_l011k4.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L011K4 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l031k6.html b/en/latest/boards/ststm32/nucleo_l031k6.html index e34a2a34a0..bf12147fd2 100644 --- a/en/latest/boards/ststm32/nucleo_l031k6.html +++ b/en/latest/boards/ststm32/nucleo_l031k6.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L031K6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l053r8.html b/en/latest/boards/ststm32/nucleo_l053r8.html index b0c852752b..e61fed8dba 100644 --- a/en/latest/boards/ststm32/nucleo_l053r8.html +++ b/en/latest/boards/ststm32/nucleo_l053r8.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L053R8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l073rz.html b/en/latest/boards/ststm32/nucleo_l073rz.html index 6ae2d94cec..68584b8500 100644 --- a/en/latest/boards/ststm32/nucleo_l073rz.html +++ b/en/latest/boards/ststm32/nucleo_l073rz.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L073RZ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l152re.html b/en/latest/boards/ststm32/nucleo_l152re.html index 35bc50fc7f..348e95126c 100644 --- a/en/latest/boards/ststm32/nucleo_l152re.html +++ b/en/latest/boards/ststm32/nucleo_l152re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L152RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l412kb.html b/en/latest/boards/ststm32/nucleo_l412kb.html index 699619e295..354e786d8a 100644 --- a/en/latest/boards/ststm32/nucleo_l412kb.html +++ b/en/latest/boards/ststm32/nucleo_l412kb.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L412KB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l412rb_p.html b/en/latest/boards/ststm32/nucleo_l412rb_p.html index 3b97d04c3f..b375e1eb2f 100644 --- a/en/latest/boards/ststm32/nucleo_l412rb_p.html +++ b/en/latest/boards/ststm32/nucleo_l412rb_p.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L412RB-P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l432kc.html b/en/latest/boards/ststm32/nucleo_l432kc.html index f2407b59f5..1bd834ed47 100644 --- a/en/latest/boards/ststm32/nucleo_l432kc.html +++ b/en/latest/boards/ststm32/nucleo_l432kc.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L432KC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l433rc_p.html b/en/latest/boards/ststm32/nucleo_l433rc_p.html index 05c6c436b4..50365a582b 100644 --- a/en/latest/boards/ststm32/nucleo_l433rc_p.html +++ b/en/latest/boards/ststm32/nucleo_l433rc_p.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L433RC-P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l452re.html b/en/latest/boards/ststm32/nucleo_l452re.html index 403195a497..48a7cd8c0c 100644 --- a/en/latest/boards/ststm32/nucleo_l452re.html +++ b/en/latest/boards/ststm32/nucleo_l452re.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L452RE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l476rg.html b/en/latest/boards/ststm32/nucleo_l476rg.html index cfc3941295..4b19f91f93 100644 --- a/en/latest/boards/ststm32/nucleo_l476rg.html +++ b/en/latest/boards/ststm32/nucleo_l476rg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L476RG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l486rg.html b/en/latest/boards/ststm32/nucleo_l486rg.html index 9bbd345ad4..a394dbaaad 100644 --- a/en/latest/boards/ststm32/nucleo_l486rg.html +++ b/en/latest/boards/ststm32/nucleo_l486rg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L486RG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l496zg.html b/en/latest/boards/ststm32/nucleo_l496zg.html index b8180678cf..7507147580 100644 --- a/en/latest/boards/ststm32/nucleo_l496zg.html +++ b/en/latest/boards/ststm32/nucleo_l496zg.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L496ZG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -767,18 +774,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l496zg_p.html b/en/latest/boards/ststm32/nucleo_l496zg_p.html index d52f72fcc6..be28df44c2 100644 --- a/en/latest/boards/ststm32/nucleo_l496zg_p.html +++ b/en/latest/boards/ststm32/nucleo_l496zg_p.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L496ZG-P — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l4r5zi.html b/en/latest/boards/ststm32/nucleo_l4r5zi.html index c3ffa5a459..afa15e3e62 100644 --- a/en/latest/boards/ststm32/nucleo_l4r5zi.html +++ b/en/latest/boards/ststm32/nucleo_l4r5zi.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L4R5ZI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -764,18 +771,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_l552ze_q.html b/en/latest/boards/ststm32/nucleo_l552ze_q.html index b30d0037ac..a59966280f 100644 --- a/en/latest/boards/ststm32/nucleo_l552ze_q.html +++ b/en/latest/boards/ststm32/nucleo_l552ze_q.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo L552ZE-Q — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_u575zi_q.html b/en/latest/boards/ststm32/nucleo_u575zi_q.html index e642b1b413..da5b7bca7b 100644 --- a/en/latest/boards/ststm32/nucleo_u575zi_q.html +++ b/en/latest/boards/ststm32/nucleo_u575zi_q.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo U575ZI-Q — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -755,18 +762,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_wb55rg_p.html b/en/latest/boards/ststm32/nucleo_wb55rg_p.html index ec5046e7b7..2382bd211d 100644 --- a/en/latest/boards/ststm32/nucleo_wb55rg_p.html +++ b/en/latest/boards/ststm32/nucleo_wb55rg_p.html @@ -1,28 +1,35 @@ + + + + + + P-Nucleo WB55RG — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/nucleo_wl55jc.html b/en/latest/boards/ststm32/nucleo_wl55jc.html index 1e9f52f9a3..dbf171f28f 100644 --- a/en/latest/boards/ststm32/nucleo_wl55jc.html +++ b/en/latest/boards/ststm32/nucleo_wl55jc.html @@ -1,28 +1,35 @@ + + + + + + ST Nucleo WL55JC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -750,18 +757,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/olimex_e407.html b/en/latest/boards/ststm32/olimex_e407.html index 1fd95e5c0a..7c78674e69 100644 --- a/en/latest/boards/ststm32/olimex_e407.html +++ b/en/latest/boards/ststm32/olimex_e407.html @@ -1,28 +1,35 @@ + + + + + + STM32-E407 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/olimex_f103.html b/en/latest/boards/ststm32/olimex_f103.html index 68d936f53c..39564eb76a 100644 --- a/en/latest/boards/ststm32/olimex_f103.html +++ b/en/latest/boards/ststm32/olimex_f103.html @@ -1,28 +1,35 @@ + + + + + + Olimex STM32-H103 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/olimex_h407.html b/en/latest/boards/ststm32/olimex_h407.html index 0a614a9c01..11e9f365e3 100644 --- a/en/latest/boards/ststm32/olimex_h407.html +++ b/en/latest/boards/ststm32/olimex_h407.html @@ -1,28 +1,35 @@ + + + + + + STM32-H407 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/olimex_p405.html b/en/latest/boards/ststm32/olimex_p405.html index 3ccc5dac50..c961c42c76 100644 --- a/en/latest/boards/ststm32/olimex_p405.html +++ b/en/latest/boards/ststm32/olimex_p405.html @@ -1,28 +1,35 @@ + + + + + + Olimex STM32-P405 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/olimexino.html b/en/latest/boards/ststm32/olimexino.html index 85c922812e..3cc3966bb4 100644 --- a/en/latest/boards/ststm32/olimexino.html +++ b/en/latest/boards/ststm32/olimexino.html @@ -1,28 +1,35 @@ + + + + + + OLIMEXINO-STM32 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -763,18 +770,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/olimexino_stm32f3.html b/en/latest/boards/ststm32/olimexino_stm32f3.html index c5c91fbdc8..0657e6640b 100644 --- a/en/latest/boards/ststm32/olimexino_stm32f3.html +++ b/en/latest/boards/ststm32/olimexino_stm32f3.html @@ -1,28 +1,35 @@ + + + + + + Olimex OLIMEXINO-STM32F3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/opta.html b/en/latest/boards/ststm32/opta.html index 20698803c4..b412d1da40 100644 --- a/en/latest/boards/ststm32/opta.html +++ b/en/latest/boards/ststm32/opta.html @@ -1,28 +1,35 @@ + + + + + + Arduino Opta — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/opta_m4.html b/en/latest/boards/ststm32/opta_m4.html index 5d47b72369..757d2a1959 100644 --- a/en/latest/boards/ststm32/opta_m4.html +++ b/en/latest/boards/ststm32/opta_m4.html @@ -1,28 +1,35 @@ + + + + + + Arduino Opta (M4 core) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/piconomix_px_her0.html b/en/latest/boards/ststm32/piconomix_px_her0.html index 2cd77d073e..ed877dfab7 100644 --- a/en/latest/boards/ststm32/piconomix_px_her0.html +++ b/en/latest/boards/ststm32/piconomix_px_her0.html @@ -1,28 +1,35 @@ + + + + + + Piconomix PX-HER0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/portenta_h7_m4.html b/en/latest/boards/ststm32/portenta_h7_m4.html index 6e61cc1133..978275e931 100644 --- a/en/latest/boards/ststm32/portenta_h7_m4.html +++ b/en/latest/boards/ststm32/portenta_h7_m4.html @@ -1,28 +1,35 @@ + + + + + + Arduino Portenta H7 (M4 core) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/portenta_h7_m7.html b/en/latest/boards/ststm32/portenta_h7_m7.html index f23a0ddb1d..0e15e686ad 100644 --- a/en/latest/boards/ststm32/portenta_h7_m7.html +++ b/en/latest/boards/ststm32/portenta_h7_m7.html @@ -1,28 +1,35 @@ + + + + + + Arduino Portenta H7 (M7 core) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -748,18 +755,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/prntr_v2.html b/en/latest/boards/ststm32/prntr_v2.html index e15a54d618..fdadc99aa4 100644 --- a/en/latest/boards/ststm32/prntr_v2.html +++ b/en/latest/boards/ststm32/prntr_v2.html @@ -1,28 +1,35 @@ + + + + + + PrntrBoard V2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/pybstick26_duino.html b/en/latest/boards/ststm32/pybstick26_duino.html index 00c6a88e48..34d6272c71 100644 --- a/en/latest/boards/ststm32/pybstick26_duino.html +++ b/en/latest/boards/ststm32/pybstick26_duino.html @@ -1,28 +1,35 @@ + + + + + + PYBSTICK26 Duino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/pybstick26_lite.html b/en/latest/boards/ststm32/pybstick26_lite.html index e0975d4b64..672a908bca 100644 --- a/en/latest/boards/ststm32/pybstick26_lite.html +++ b/en/latest/boards/ststm32/pybstick26_lite.html @@ -1,28 +1,35 @@ + + + + + + PYBStick Lite 26 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/pybstick26_pro.html b/en/latest/boards/ststm32/pybstick26_pro.html index a98f159e8a..51d3392ad9 100644 --- a/en/latest/boards/ststm32/pybstick26_pro.html +++ b/en/latest/boards/ststm32/pybstick26_pro.html @@ -1,28 +1,35 @@ + + + + + + PYBStick 26 Pro — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/pybstick26_std.html b/en/latest/boards/ststm32/pybstick26_std.html index 5423fc8652..a1db45a805 100644 --- a/en/latest/boards/ststm32/pybstick26_std.html +++ b/en/latest/boards/ststm32/pybstick26_std.html @@ -1,28 +1,35 @@ + + + + + + PYBStick Standard 26 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rak811_tracker.html b/en/latest/boards/ststm32/rak811_tracker.html index 61461dc688..ab6ab71845 100644 --- a/en/latest/boards/ststm32/rak811_tracker.html +++ b/en/latest/boards/ststm32/rak811_tracker.html @@ -1,28 +1,35 @@ + + + + + + RAK811 LoRa Tracker — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rak811_tracker_32.html b/en/latest/boards/ststm32/rak811_tracker_32.html index 4ce7205367..c15bb1c128 100644 --- a/en/latest/boards/ststm32/rak811_tracker_32.html +++ b/en/latest/boards/ststm32/rak811_tracker_32.html @@ -1,28 +1,35 @@ + + + + + + RAK811 LoRa Tracker — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/remram_v1.html b/en/latest/boards/ststm32/remram_v1.html index c16717b0f3..2f5671b534 100644 --- a/en/latest/boards/ststm32/remram_v1.html +++ b/en/latest/boards/ststm32/remram_v1.html @@ -1,28 +1,35 @@ + + + + + + 3D printer controller — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rhf76_052.html b/en/latest/boards/ststm32/rhf76_052.html index aadb9c51b4..1e054ec897 100644 --- a/en/latest/boards/ststm32/rhf76_052.html +++ b/en/latest/boards/ststm32/rhf76_052.html @@ -1,28 +1,35 @@ + + + + + + RHF76 052 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rhombio_l476dmw1k.html b/en/latest/boards/ststm32/rhombio_l476dmw1k.html index 97c8923ef4..c52abf1142 100644 --- a/en/latest/boards/ststm32/rhombio_l476dmw1k.html +++ b/en/latest/boards/ststm32/rhombio_l476dmw1k.html @@ -1,28 +1,35 @@ + + + + + + L476DMW1K — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/robotdyn_blackpill_f303cc.html b/en/latest/boards/ststm32/robotdyn_blackpill_f303cc.html index 474d76fb96..396f8d268c 100644 --- a/en/latest/boards/ststm32/robotdyn_blackpill_f303cc.html +++ b/en/latest/boards/ststm32/robotdyn_blackpill_f303cc.html @@ -1,28 +1,35 @@ + + + + + + BlackPill F303CC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rumba32_f446ve.html b/en/latest/boards/ststm32/rumba32_f446ve.html index b28db5627b..08ee62283c 100644 --- a/en/latest/boards/ststm32/rumba32_f446ve.html +++ b/en/latest/boards/ststm32/rumba32_f446ve.html @@ -1,28 +1,35 @@ + + + + + + 3D Printer control board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rymcu_f407ve.html b/en/latest/boards/ststm32/rymcu_f407ve.html index 4cdf7f966a..c2a1993438 100644 --- a/en/latest/boards/ststm32/rymcu_f407ve.html +++ b/en/latest/boards/ststm32/rymcu_f407ve.html @@ -1,28 +1,35 @@ + + + + + + RYMCU STM32F407VE (192k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/rymcu_nebulapi_f103ve.html b/en/latest/boards/ststm32/rymcu_nebulapi_f103ve.html index 91db9e9344..f67f87ddd1 100644 --- a/en/latest/boards/ststm32/rymcu_nebulapi_f103ve.html +++ b/en/latest/boards/ststm32/rymcu_nebulapi_f103ve.html @@ -1,28 +1,35 @@ + + + + + + RYMCU Nebula Pi F103VE (64k RAM. 512k Flash) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/sakuraio_evb_01.html b/en/latest/boards/ststm32/sakuraio_evb_01.html index 48767a6309..2523951beb 100644 --- a/en/latest/boards/ststm32/sakuraio_evb_01.html +++ b/en/latest/boards/ststm32/sakuraio_evb_01.html @@ -1,28 +1,35 @@ + + + + + + sakura.io Evaluation Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/seeedArchMax.html b/en/latest/boards/ststm32/seeedArchMax.html index 52c06d341a..e46d85894c 100644 --- a/en/latest/boards/ststm32/seeedArchMax.html +++ b/en/latest/boards/ststm32/seeedArchMax.html @@ -1,28 +1,35 @@ + + + + + + Seeed Arch Max — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/silica_sensor_node.html b/en/latest/boards/ststm32/silica_sensor_node.html index fa4ace2fbb..9d0b748d9e 100644 --- a/en/latest/boards/ststm32/silica_sensor_node.html +++ b/en/latest/boards/ststm32/silica_sensor_node.html @@ -1,28 +1,35 @@ + + + + + + ST Sensor Node — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -758,18 +765,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/sparkfun_micromod_f405.html b/en/latest/boards/ststm32/sparkfun_micromod_f405.html index bf8374b954..a8bdf38981 100644 --- a/en/latest/boards/ststm32/sparkfun_micromod_f405.html +++ b/en/latest/boards/ststm32/sparkfun_micromod_f405.html @@ -1,28 +1,35 @@ + + + + + + SparkFun MicroMod STM32F405 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/sparky_v1.html b/en/latest/boards/ststm32/sparky_v1.html index 6d50e94cdc..b2059a0d2a 100644 --- a/en/latest/boards/ststm32/sparky_v1.html +++ b/en/latest/boards/ststm32/sparky_v1.html @@ -1,28 +1,35 @@ + + + + + + Sparky V1 F303 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/st3dp001_eval.html b/en/latest/boards/ststm32/st3dp001_eval.html index 86645640f6..7d173d5788 100644 --- a/en/latest/boards/ststm32/st3dp001_eval.html +++ b/en/latest/boards/ststm32/st3dp001_eval.html @@ -1,28 +1,35 @@ + + + + + + 3DP001V1 Evaluation board for 3D printer — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/steval_fcu001v1.html b/en/latest/boards/ststm32/steval_fcu001v1.html index a7d7c2713d..f38f65e003 100644 --- a/en/latest/boards/ststm32/steval_fcu001v1.html +++ b/en/latest/boards/ststm32/steval_fcu001v1.html @@ -1,28 +1,35 @@ + + + + + + STEVAL-FCU001V1 Flight controller unit evaluation board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/steval_mksboxv1.html b/en/latest/boards/ststm32/steval_mksboxv1.html index ea41e1ec69..d6c6e54db0 100644 --- a/en/latest/boards/ststm32/steval_mksboxv1.html +++ b/en/latest/boards/ststm32/steval_mksboxv1.html @@ -1,28 +1,35 @@ + + + + + + SensorTile.box — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/stm32f4stamp.html b/en/latest/boards/ststm32/stm32f4stamp.html index 31e53a4d55..8c53af2666 100644 --- a/en/latest/boards/ststm32/stm32f4stamp.html +++ b/en/latest/boards/ststm32/stm32f4stamp.html @@ -1,28 +1,35 @@ + + + + + + STM32F4Stamp F405 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/storm32_v1_31_rc.html b/en/latest/boards/ststm32/storm32_v1_31_rc.html index 62475bd5ed..027ab1a102 100644 --- a/en/latest/boards/ststm32/storm32_v1_31_rc.html +++ b/en/latest/boards/ststm32/storm32_v1_31_rc.html @@ -1,28 +1,35 @@ + + + + + + STorM32 BGC v1.31 RC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/thunder_pack.html b/en/latest/boards/ststm32/thunder_pack.html index de80d744c1..b0ff764af9 100644 --- a/en/latest/boards/ststm32/thunder_pack.html +++ b/en/latest/boards/ststm32/thunder_pack.html @@ -1,28 +1,35 @@ + + + + + + ThunderPack v1.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/thunder_pack_f411.html b/en/latest/boards/ststm32/thunder_pack_f411.html index eb6af25161..c3de474976 100644 --- a/en/latest/boards/ststm32/thunder_pack_f411.html +++ b/en/latest/boards/ststm32/thunder_pack_f411.html @@ -1,28 +1,35 @@ + + + + + + ThunderPack v1.1+ — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/ublox_c030_n211.html b/en/latest/boards/ststm32/ublox_c030_n211.html index b216fc564b..4ba3c61848 100644 --- a/en/latest/boards/ststm32/ublox_c030_n211.html +++ b/en/latest/boards/ststm32/ublox_c030_n211.html @@ -1,28 +1,35 @@ + + + + + + u-blox C030-N211 IoT Starter Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -752,18 +759,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/ublox_c030_r410m.html b/en/latest/boards/ststm32/ublox_c030_r410m.html index 1fd44007f1..1eb8c3e83f 100644 --- a/en/latest/boards/ststm32/ublox_c030_r410m.html +++ b/en/latest/boards/ststm32/ublox_c030_r410m.html @@ -1,28 +1,35 @@ + + + + + + u-blox C030-R410M IoT — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -746,18 +753,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/ublox_c030_u201.html b/en/latest/boards/ststm32/ublox_c030_u201.html index 4c0b953725..d54b8ca89c 100644 --- a/en/latest/boards/ststm32/ublox_c030_u201.html +++ b/en/latest/boards/ststm32/ublox_c030_u201.html @@ -1,28 +1,35 @@ + + + + + + u-blox C030-U201 IoT Starter Kit — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -752,18 +759,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/ublox_evk_odin_w2.html b/en/latest/boards/ststm32/ublox_evk_odin_w2.html index 8411f5749b..b57a3e999a 100644 --- a/en/latest/boards/ststm32/ublox_evk_odin_w2.html +++ b/en/latest/boards/ststm32/ublox_evk_odin_w2.html @@ -1,28 +1,35 @@ + + + + + + u-blox EVK-ODIN-W2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -751,18 +758,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/vake_v1.html b/en/latest/boards/ststm32/vake_v1.html index b56235665a..e77e38169c 100644 --- a/en/latest/boards/ststm32/vake_v1.html +++ b/en/latest/boards/ststm32/vake_v1.html @@ -1,28 +1,35 @@ + + + + + + VAkE v1.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -761,18 +768,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/vccgnd_f103zet6.html b/en/latest/boards/ststm32/vccgnd_f103zet6.html index 4242c7558a..be2b5d2497 100644 --- a/en/latest/boards/ststm32/vccgnd_f103zet6.html +++ b/en/latest/boards/ststm32/vccgnd_f103zet6.html @@ -1,28 +1,35 @@ + + + + + + VCCGND F103ZET6 Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/vccgnd_f407zg_mini.html b/en/latest/boards/ststm32/vccgnd_f407zg_mini.html index bfa72e802f..7f41e176d7 100644 --- a/en/latest/boards/ststm32/vccgnd_f407zg_mini.html +++ b/en/latest/boards/ststm32/vccgnd_f407zg_mini.html @@ -1,28 +1,35 @@ + + + + + + VCCGND F407ZGT6 Mini — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -762,18 +769,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/waveshare_open103z.html b/en/latest/boards/ststm32/waveshare_open103z.html index 742eb36ffe..440b9d0abf 100644 --- a/en/latest/boards/ststm32/waveshare_open103z.html +++ b/en/latest/boards/ststm32/waveshare_open103z.html @@ -1,28 +1,35 @@ + + + + + + Waveshare Open103Z — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/weact_mini_h743vitx.html b/en/latest/boards/ststm32/weact_mini_h743vitx.html index dd96a2fa2d..567f1a6df0 100644 --- a/en/latest/boards/ststm32/weact_mini_h743vitx.html +++ b/en/latest/boards/ststm32/weact_mini_h743vitx.html @@ -1,28 +1,35 @@ + + + + + + WeAct Studio MiniSTM32H743VITX — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/weact_mini_h750vbtx.html b/en/latest/boards/ststm32/weact_mini_h750vbtx.html index be9b4dd517..1957cd07aa 100644 --- a/en/latest/boards/ststm32/weact_mini_h750vbtx.html +++ b/en/latest/boards/ststm32/weact_mini_h750vbtx.html @@ -1,28 +1,35 @@ + + + + + + WeAct Studio MiniSTM32H750VBTX — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/wio_3g.html b/en/latest/boards/ststm32/wio_3g.html index f1f685217f..75fb131d21 100644 --- a/en/latest/boards/ststm32/wio_3g.html +++ b/en/latest/boards/ststm32/wio_3g.html @@ -1,28 +1,35 @@ + + + + + + Seeed Wio 3G — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -755,18 +762,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/wraith32_v1.html b/en/latest/boards/ststm32/wraith32_v1.html index 20db208812..5fb22c1522 100644 --- a/en/latest/boards/ststm32/wraith32_v1.html +++ b/en/latest/boards/ststm32/wraith32_v1.html @@ -1,28 +1,35 @@ + + + + + + Wraith V1 ESC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -757,18 +764,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm32/xdot_l151cc.html b/en/latest/boards/ststm32/xdot_l151cc.html index efa6c5c45c..f0f11fe896 100644 --- a/en/latest/boards/ststm32/xdot_l151cc.html +++ b/en/latest/boards/ststm32/xdot_l151cc.html @@ -1,28 +1,35 @@ + + + + + + MultiTech xDot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -760,18 +767,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/mb208.html b/en/latest/boards/ststm8/mb208.html index 219a5f2adc..713a25cf5a 100644 --- a/en/latest/boards/ststm8/mb208.html +++ b/en/latest/boards/ststm8/mb208.html @@ -1,28 +1,35 @@ + + + + + + sduino MB (STM8S208MBT6B) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/nucleo_8s207k8.html b/en/latest/boards/ststm8/nucleo_8s207k8.html index 0100d0c1a0..c3e01acc8c 100644 --- a/en/latest/boards/ststm8/nucleo_8s207k8.html +++ b/en/latest/boards/ststm8/nucleo_8s207k8.html @@ -1,28 +1,35 @@ + + + + + + NUCLEO-8S207K8 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -462,18 +469,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/nucleo_8s208rb.html b/en/latest/boards/ststm8/nucleo_8s208rb.html index b7ef2b0d26..f6cdfad71e 100644 --- a/en/latest/boards/ststm8/nucleo_8s208rb.html +++ b/en/latest/boards/ststm8/nucleo_8s208rb.html @@ -1,28 +1,35 @@ + + + + + + NUCLEO-8S208RB — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -462,18 +469,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/s8uno.html b/en/latest/boards/ststm8/s8uno.html index f5896f2706..7092edccd7 100644 --- a/en/latest/boards/ststm8/s8uno.html +++ b/en/latest/boards/ststm8/s8uno.html @@ -1,28 +1,35 @@ + + + + + + sduino UNO (STM8S105K6) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/stm8s003f3.html b/en/latest/boards/ststm8/stm8s003f3.html index e321b93d18..3ec3951c78 100644 --- a/en/latest/boards/ststm8/stm8s003f3.html +++ b/en/latest/boards/ststm8/stm8s003f3.html @@ -1,28 +1,35 @@ + + + + + + ST STM8S003F3 chip — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/stm8sblack.html b/en/latest/boards/ststm8/stm8sblack.html index 3cff64e060..ad1fed5d87 100644 --- a/en/latest/boards/ststm8/stm8sblack.html +++ b/en/latest/boards/ststm8/stm8sblack.html @@ -1,28 +1,35 @@ + + + + + + ST STM8S105K4T6 Breakout Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/stm8sblue.html b/en/latest/boards/ststm8/stm8sblue.html index e5b8005ee2..153f69b8ba 100644 --- a/en/latest/boards/ststm8/stm8sblue.html +++ b/en/latest/boards/ststm8/stm8sblue.html @@ -1,28 +1,35 @@ + + + + + + ST STM8S103F3 Breakout Board — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/ststm8/stm8sdisco.html b/en/latest/boards/ststm8/stm8sdisco.html index 160cd11fca..0abf368af5 100644 --- a/en/latest/boards/ststm8/stm8sdisco.html +++ b/en/latest/boards/ststm8/stm8sdisco.html @@ -1,28 +1,35 @@ + + + + + + ST STM8S-DISCOVERY — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -466,18 +473,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy2.html b/en/latest/boards/teensy/teensy2.html index 2345845f1c..735dc00dd7 100644 --- a/en/latest/boards/teensy/teensy2.html +++ b/en/latest/boards/teensy/teensy2.html @@ -1,28 +1,35 @@ + + + + + + Teensy 2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -441,18 +448,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy2pp.html b/en/latest/boards/teensy/teensy2pp.html index 0d2a03097f..7b8872b0f0 100644 --- a/en/latest/boards/teensy/teensy2pp.html +++ b/en/latest/boards/teensy/teensy2pp.html @@ -1,28 +1,35 @@ + + + + + + Teensy++ 2.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -441,18 +448,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy30.html b/en/latest/boards/teensy/teensy30.html index 6954e1f1b2..92479b306a 100644 --- a/en/latest/boards/teensy/teensy30.html +++ b/en/latest/boards/teensy/teensy30.html @@ -1,28 +1,35 @@ + + + + + + Teensy 3.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -441,18 +448,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy31.html b/en/latest/boards/teensy/teensy31.html index 59d5fc6053..2c2c9747c4 100644 --- a/en/latest/boards/teensy/teensy31.html +++ b/en/latest/boards/teensy/teensy31.html @@ -1,28 +1,35 @@ + + + + + + Teensy 3.1 / 3.2 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy35.html b/en/latest/boards/teensy/teensy35.html index 3621d9185f..df63568f36 100644 --- a/en/latest/boards/teensy/teensy35.html +++ b/en/latest/boards/teensy/teensy35.html @@ -1,28 +1,35 @@ + + + + + + Teensy 3.5 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy36.html b/en/latest/boards/teensy/teensy36.html index 4ff6d0b490..91ea77c488 100644 --- a/en/latest/boards/teensy/teensy36.html +++ b/en/latest/boards/teensy/teensy36.html @@ -1,28 +1,35 @@ + + + + + + Teensy 3.6 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy40.html b/en/latest/boards/teensy/teensy40.html index ab94f539dd..ca0675f6e6 100644 --- a/en/latest/boards/teensy/teensy40.html +++ b/en/latest/boards/teensy/teensy40.html @@ -1,28 +1,35 @@ + + + + + + Teensy 4.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -468,18 +475,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensy41.html b/en/latest/boards/teensy/teensy41.html index eb68fb5209..172bc414b0 100644 --- a/en/latest/boards/teensy/teensy41.html +++ b/en/latest/boards/teensy/teensy41.html @@ -1,28 +1,35 @@ + + + + + + Teensy 4.1 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -468,18 +475,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensylc.html b/en/latest/boards/teensy/teensylc.html index ae4577b406..a30e5196bd 100644 --- a/en/latest/boards/teensy/teensylc.html +++ b/en/latest/boards/teensy/teensylc.html @@ -1,28 +1,35 @@ + + + + + + Teensy LC — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/teensy/teensymm.html b/en/latest/boards/teensy/teensymm.html index e8685036ab..ff7211cd2e 100644 --- a/en/latest/boards/teensy/teensymm.html +++ b/en/latest/boards/teensy/teensymm.html @@ -1,28 +1,35 @@ + + + + + + SparkFun MicroMod Teensy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -465,18 +472,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430f5529.html b/en/latest/boards/timsp430/lpmsp430f5529.html index 779cce8990..7190876048 100644 --- a/en/latest/boards/timsp430/lpmsp430f5529.html +++ b/en/latest/boards/timsp430/lpmsp430f5529.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430F5529LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr2311.html b/en/latest/boards/timsp430/lpmsp430fr2311.html index 0b78121779..24ac98d259 100644 --- a/en/latest/boards/timsp430/lpmsp430fr2311.html +++ b/en/latest/boards/timsp430/lpmsp430fr2311.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR2311LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr2355.html b/en/latest/boards/timsp430/lpmsp430fr2355.html index b12e09a875..f5b12aa590 100644 --- a/en/latest/boards/timsp430/lpmsp430fr2355.html +++ b/en/latest/boards/timsp430/lpmsp430fr2355.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR2355LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr2433.html b/en/latest/boards/timsp430/lpmsp430fr2433.html index e2db7acb4e..ef9ffd04b9 100644 --- a/en/latest/boards/timsp430/lpmsp430fr2433.html +++ b/en/latest/boards/timsp430/lpmsp430fr2433.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR2433LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr2476.html b/en/latest/boards/timsp430/lpmsp430fr2476.html index 1e4e020009..14cadc9109 100644 --- a/en/latest/boards/timsp430/lpmsp430fr2476.html +++ b/en/latest/boards/timsp430/lpmsp430fr2476.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR2476LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr4133.html b/en/latest/boards/timsp430/lpmsp430fr4133.html index 40616cf562..ff4fc3d4de 100644 --- a/en/latest/boards/timsp430/lpmsp430fr4133.html +++ b/en/latest/boards/timsp430/lpmsp430fr4133.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR4133LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr5739.html b/en/latest/boards/timsp430/lpmsp430fr5739.html index a8dfbe7e7b..e0b634253b 100644 --- a/en/latest/boards/timsp430/lpmsp430fr5739.html +++ b/en/latest/boards/timsp430/lpmsp430fr5739.html @@ -1,28 +1,35 @@ + + + + + + TI FraunchPad MSP-EXP430FR5739LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr5969.html b/en/latest/boards/timsp430/lpmsp430fr5969.html index 31a787f7f8..55df28c458 100644 --- a/en/latest/boards/timsp430/lpmsp430fr5969.html +++ b/en/latest/boards/timsp430/lpmsp430fr5969.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR5969LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr5994.html b/en/latest/boards/timsp430/lpmsp430fr5994.html index a61454a933..bf668042d5 100644 --- a/en/latest/boards/timsp430/lpmsp430fr5994.html +++ b/en/latest/boards/timsp430/lpmsp430fr5994.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR5994LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430fr6989.html b/en/latest/boards/timsp430/lpmsp430fr6989.html index 28de5efc76..eee7a2b5d8 100644 --- a/en/latest/boards/timsp430/lpmsp430fr6989.html +++ b/en/latest/boards/timsp430/lpmsp430fr6989.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430FR6989LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430g2231.html b/en/latest/boards/timsp430/lpmsp430g2231.html index d4215e3ef7..10c6a4d8d6 100644 --- a/en/latest/boards/timsp430/lpmsp430g2231.html +++ b/en/latest/boards/timsp430/lpmsp430g2231.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430G2 w/ MSP430G2231 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430g2452.html b/en/latest/boards/timsp430/lpmsp430g2452.html index fc8f86066d..201cc43600 100644 --- a/en/latest/boards/timsp430/lpmsp430g2452.html +++ b/en/latest/boards/timsp430/lpmsp430g2452.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430G2 w/ MSP430G2452 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/timsp430/lpmsp430g2553.html b/en/latest/boards/timsp430/lpmsp430g2553.html index 8a93b5b445..ff58aaaa32 100644 --- a/en/latest/boards/timsp430/lpmsp430g2553.html +++ b/en/latest/boards/timsp430/lpmsp430g2553.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad MSP-EXP430G2553LP — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -448,18 +455,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/titiva/lplm4f120h5qr.html b/en/latest/boards/titiva/lplm4f120h5qr.html index ee92205d48..0e16520775 100644 --- a/en/latest/boards/titiva/lplm4f120h5qr.html +++ b/en/latest/boards/titiva/lplm4f120h5qr.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad (Stellaris) w/ lm4f120 (80MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -441,18 +448,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/titiva/lptm4c123gh6pm.html b/en/latest/boards/titiva/lptm4c123gh6pm.html index d207cb4489..fff3969325 100644 --- a/en/latest/boards/titiva/lptm4c123gh6pm.html +++ b/en/latest/boards/titiva/lptm4c123gh6pm.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad (Tiva C) w/ tm4c123 (80MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -441,18 +448,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/boards/titiva/lptm4c1294ncpdt.html b/en/latest/boards/titiva/lptm4c1294ncpdt.html index d013db69a6..b19d6a585d 100644 --- a/en/latest/boards/titiva/lptm4c1294ncpdt.html +++ b/en/latest/boards/titiva/lptm4c1294ncpdt.html @@ -1,28 +1,35 @@ + + + + + + TI LaunchPad (Tiva C) w/ tm4c129 (120MHz) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -441,18 +448,7 @@

Frameworks - - - + \ No newline at end of file diff --git a/en/latest/core/history.html b/en/latest/core/history.html index 5e6922e70b..2ff51fe7bf 100644 --- a/en/latest/core/history.html +++ b/en/latest/core/history.html @@ -1,28 +1,35 @@ + + + + + + Release Notes — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -174,6 +181,7 @@

6.1.17 (2024-??-??)issue #4987)

  • Resolved an issue where the compiledb target failed to properly escape compiler executable paths containing spaces (issue #4998)

  • Resolved an issue with incorrect path resolution when linking static libraries via the build_flags option (issue #5004)

  • +
  • Resolved an issue where the --project-dir flag did not function correctly with the pio check and pio debug commands (issue #5029)

  • @@ -725,18 +733,7 @@

    PlatformIO Core Preview - - - + \ No newline at end of file diff --git a/en/latest/core/index.html b/en/latest/core/index.html index fe17b4fbe6..a049bebb45 100644 --- a/en/latest/core/index.html +++ b/en/latest/core/index.html @@ -1,28 +1,35 @@ + + + + + + PlatformIO Core (CLI) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -351,18 +358,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/installation/development-version.html b/en/latest/core/installation/development-version.html index fc7868739a..49a11eac46 100644 --- a/en/latest/core/installation/development-version.html +++ b/en/latest/core/installation/development-version.html @@ -1,28 +1,35 @@ + + + + + + Development Version — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -336,18 +343,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/installation/index.html b/en/latest/core/installation/index.html index bbc44f18c3..402370af85 100644 --- a/en/latest/core/installation/index.html +++ b/en/latest/core/installation/index.html @@ -1,28 +1,35 @@ + + + + + + Installation — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -351,18 +358,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/installation/integration.html b/en/latest/core/installation/integration.html index 2d0492122c..8029d964b2 100644 --- a/en/latest/core/installation/integration.html +++ b/en/latest/core/installation/integration.html @@ -1,28 +1,35 @@ + + + + + + Integration with custom applications (extensions, plugins) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -433,18 +440,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/installation/methods/brew.html b/en/latest/core/installation/methods/brew.html index c1f1aaa0d2..d78ebda572 100644 --- a/en/latest/core/installation/methods/brew.html +++ b/en/latest/core/installation/methods/brew.html @@ -1,28 +1,35 @@ + + + + + + Homebrew (macOS) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -320,18 +327,7 @@

    Homebrew (macOS) - + \ No newline at end of file diff --git a/en/latest/core/installation/methods/index.html b/en/latest/core/installation/methods/index.html index 4fea061315..f90851f2e8 100644 --- a/en/latest/core/installation/methods/index.html +++ b/en/latest/core/installation/methods/index.html @@ -1,28 +1,35 @@ + + + + + + Installation Methods — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -326,18 +333,7 @@

    Installation Methods - - - + \ No newline at end of file diff --git a/en/latest/core/installation/methods/installer-script.html b/en/latest/core/installation/methods/installer-script.html index d79c1f9a0c..c5ad766462 100644 --- a/en/latest/core/installation/methods/installer-script.html +++ b/en/latest/core/installation/methods/installer-script.html @@ -1,28 +1,35 @@ + + + + + + Installer Script (Recommended) — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -380,18 +387,7 @@

    Local Download (macOS jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/installation/methods/pypi.html b/en/latest/core/installation/methods/pypi.html index 703a82d37d..d69b9412c5 100644 --- a/en/latest/core/installation/methods/pypi.html +++ b/en/latest/core/installation/methods/pypi.html @@ -1,28 +1,35 @@ + + + + + + Python Package Manager — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -331,18 +338,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/installation/proxy-configuration.html b/en/latest/core/installation/proxy-configuration.html index 418bbabba5..bc96d29f23 100644 --- a/en/latest/core/installation/proxy-configuration.html +++ b/en/latest/core/installation/proxy-configuration.html @@ -1,28 +1,35 @@ + + + + + + Proxy Configuration — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -338,18 +345,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/installation/requirements.html b/en/latest/core/installation/requirements.html index 1d5c573efb..a038d1b18e 100644 --- a/en/latest/core/installation/requirements.html +++ b/en/latest/core/installation/requirements.html @@ -1,28 +1,35 @@ + + + + + + System Requirements — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -338,18 +345,7 @@

    System Requirements - + \ No newline at end of file diff --git a/en/latest/core/installation/shell-commands.html b/en/latest/core/installation/shell-commands.html index edd280aa6c..49fc859976 100644 --- a/en/latest/core/installation/shell-commands.html +++ b/en/latest/core/installation/shell-commands.html @@ -1,28 +1,35 @@ + + + + + + Install Shell Commands — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -386,18 +393,7 @@

    Windows - + \ No newline at end of file diff --git a/en/latest/core/installation/troubleshooting.html b/en/latest/core/installation/troubleshooting.html index 17b179df9e..bd99bfed0a 100644 --- a/en/latest/core/installation/troubleshooting.html +++ b/en/latest/core/installation/troubleshooting.html @@ -1,28 +1,35 @@ + + + + + + Troubleshooting — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -366,18 +373,7 @@

    ImportError: cannot import name _remove_dead_weakref - - - + \ No newline at end of file diff --git a/en/latest/core/installation/udev-rules.html b/en/latest/core/installation/udev-rules.html index 03f9480b05..7d03ebd74b 100644 --- a/en/latest/core/installation/udev-rules.html +++ b/en/latest/core/installation/udev-rules.html @@ -1,28 +1,35 @@ + + + + + + 99-platformio-udev.rules — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -365,18 +372,7 @@

    Alternative using group membership - + \ No newline at end of file diff --git a/en/latest/core/installation/uninstall.html b/en/latest/core/installation/uninstall.html index c186f9aa9d..bc2a17b0be 100644 --- a/en/latest/core/installation/uninstall.html +++ b/en/latest/core/installation/uninstall.html @@ -1,28 +1,35 @@ + + + + + + Uninstall PlatformIO Core and dependent packages — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -325,18 +332,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/migration.html b/en/latest/core/migration.html index b05cbd5eb0..6f156a6f53 100644 --- a/en/latest/core/migration.html +++ b/en/latest/core/migration.html @@ -1,28 +1,35 @@ + + + + + + Migrating from 5.x to 6.0 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -619,18 +626,7 @@

    Command Line Interfa jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/quickstart.html b/en/latest/core/quickstart.html index 461d51f8b8..4330f1ef80 100644 --- a/en/latest/core/quickstart.html +++ b/en/latest/core/quickstart.html @@ -1,28 +1,35 @@ + + + + + + Quick Start — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -516,18 +523,7 @@

    Further Reading - + \ No newline at end of file diff --git a/en/latest/core/userguide/access/cmd_grant.html b/en/latest/core/userguide/access/cmd_grant.html index 9c719e60f5..83f08180e0 100644 --- a/en/latest/core/userguide/access/cmd_grant.html +++ b/en/latest/core/userguide/access/cmd_grant.html @@ -1,28 +1,35 @@ + + + + + + pio access grant — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -403,18 +410,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/access/cmd_list.html b/en/latest/core/userguide/access/cmd_list.html index 28a909b69a..c8b5baa572 100644 --- a/en/latest/core/userguide/access/cmd_list.html +++ b/en/latest/core/userguide/access/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio access list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -431,18 +438,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/access/cmd_private.html b/en/latest/core/userguide/access/cmd_private.html index 347adf022f..9c6f60cf12 100644 --- a/en/latest/core/userguide/access/cmd_private.html +++ b/en/latest/core/userguide/access/cmd_private.html @@ -1,28 +1,35 @@ + + + + + + pio access private — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -379,18 +386,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/access/cmd_public.html b/en/latest/core/userguide/access/cmd_public.html index 14d957fccb..ef011fd3d5 100644 --- a/en/latest/core/userguide/access/cmd_public.html +++ b/en/latest/core/userguide/access/cmd_public.html @@ -1,28 +1,35 @@ + + + + + + pio access public — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -378,18 +385,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/access/cmd_revoke.html b/en/latest/core/userguide/access/cmd_revoke.html index 030da3bac6..3dfd10c529 100644 --- a/en/latest/core/userguide/access/cmd_revoke.html +++ b/en/latest/core/userguide/access/cmd_revoke.html @@ -1,28 +1,35 @@ + + + + + + pio access revoke — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -390,18 +397,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/access/index.html b/en/latest/core/userguide/access/index.html index c7037aab23..5419bb469b 100644 --- a/en/latest/core/userguide/access/index.html +++ b/en/latest/core/userguide/access/index.html @@ -1,28 +1,35 @@ + + + + + + pio access — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -377,18 +384,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_destroy.html b/en/latest/core/userguide/account/cmd_destroy.html index fd00a0252a..1221b828b5 100644 --- a/en/latest/core/userguide/account/cmd_destroy.html +++ b/en/latest/core/userguide/account/cmd_destroy.html @@ -1,28 +1,35 @@ + + + + + + pio account destroy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -334,18 +341,7 @@

    Description - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_forgot.html b/en/latest/core/userguide/account/cmd_forgot.html index 40901141c9..cd26731092 100644 --- a/en/latest/core/userguide/account/cmd_forgot.html +++ b/en/latest/core/userguide/account/cmd_forgot.html @@ -1,28 +1,35 @@ + + + + + + pio account forgot — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -348,18 +355,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_login.html b/en/latest/core/userguide/account/cmd_login.html index ae83f029cc..96d8113f76 100644 --- a/en/latest/core/userguide/account/cmd_login.html +++ b/en/latest/core/userguide/account/cmd_login.html @@ -1,28 +1,35 @@ + + + + + + pio account login — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -355,18 +362,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_logout.html b/en/latest/core/userguide/account/cmd_logout.html index 85414fc6c4..d5a7626c5f 100644 --- a/en/latest/core/userguide/account/cmd_logout.html +++ b/en/latest/core/userguide/account/cmd_logout.html @@ -1,28 +1,35 @@ + + + + + + pio account logout — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -333,18 +340,7 @@

    Description - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_password.html b/en/latest/core/userguide/account/cmd_password.html index 9d6a7125d0..56c31573ae 100644 --- a/en/latest/core/userguide/account/cmd_password.html +++ b/en/latest/core/userguide/account/cmd_password.html @@ -1,28 +1,35 @@ + + + + + + pio account password — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -333,18 +340,7 @@

    Description - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_register.html b/en/latest/core/userguide/account/cmd_register.html index a814b83098..27d783339d 100644 --- a/en/latest/core/userguide/account/cmd_register.html +++ b/en/latest/core/userguide/account/cmd_register.html @@ -1,28 +1,35 @@ + + + + + + pio account register — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -376,18 +383,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_show.html b/en/latest/core/userguide/account/cmd_show.html index 03334e01d6..309a02ab6b 100644 --- a/en/latest/core/userguide/account/cmd_show.html +++ b/en/latest/core/userguide/account/cmd_show.html @@ -1,28 +1,35 @@ + + + + + + pio account show — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -350,18 +357,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_token.html b/en/latest/core/userguide/account/cmd_token.html index 2d8ef1047d..f857775036 100644 --- a/en/latest/core/userguide/account/cmd_token.html +++ b/en/latest/core/userguide/account/cmd_token.html @@ -1,28 +1,35 @@ + + + + + + pio account token — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -355,18 +362,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/cmd_update.html b/en/latest/core/userguide/account/cmd_update.html index 189633392d..45c6d7d902 100644 --- a/en/latest/core/userguide/account/cmd_update.html +++ b/en/latest/core/userguide/account/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio account update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -372,18 +379,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/account/index.html b/en/latest/core/userguide/account/index.html index 2dc8e1258e..96f4fc9cb9 100644 --- a/en/latest/core/userguide/account/index.html +++ b/en/latest/core/userguide/account/index.html @@ -1,28 +1,35 @@ + + + + + + pio account — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -366,18 +373,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_boards.html b/en/latest/core/userguide/cmd_boards.html index c431913078..f16e2d4a08 100644 --- a/en/latest/core/userguide/cmd_boards.html +++ b/en/latest/core/userguide/cmd_boards.html @@ -1,28 +1,35 @@ + + + + + + pio boards — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -484,18 +491,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_check.html b/en/latest/core/userguide/cmd_check.html index e190b7609a..ba48999546 100644 --- a/en/latest/core/userguide/cmd_check.html +++ b/en/latest/core/userguide/cmd_check.html @@ -1,28 +1,35 @@ + + + + + + pio check — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -466,18 +473,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_ci.html b/en/latest/core/userguide/cmd_ci.html index 9e54e980d7..7feb59e304 100644 --- a/en/latest/core/userguide/cmd_ci.html +++ b/en/latest/core/userguide/cmd_ci.html @@ -1,28 +1,35 @@ + + + + + + pio ci — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -463,18 +470,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_debug.html b/en/latest/core/userguide/cmd_debug.html index fb40655b29..9ba2770a4a 100644 --- a/en/latest/core/userguide/cmd_debug.html +++ b/en/latest/core/userguide/cmd_debug.html @@ -1,28 +1,35 @@ + + + + + + pio debug — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -440,18 +447,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_home.html b/en/latest/core/userguide/cmd_home.html index cb96f1be41..1c43a33172 100644 --- a/en/latest/core/userguide/cmd_home.html +++ b/en/latest/core/userguide/cmd_home.html @@ -1,28 +1,35 @@ + + + + + + pio home — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -406,18 +413,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_run.html b/en/latest/core/userguide/cmd_run.html index bd41dd367c..3b692575a2 100644 --- a/en/latest/core/userguide/cmd_run.html +++ b/en/latest/core/userguide/cmd_run.html @@ -1,28 +1,35 @@ + + + + + + pio run — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -749,18 +756,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_settings.html b/en/latest/core/userguide/cmd_settings.html index 089ac05499..f4b8762fba 100644 --- a/en/latest/core/userguide/cmd_settings.html +++ b/en/latest/core/userguide/cmd_settings.html @@ -1,28 +1,35 @@ + + + + + + pio settings — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -586,18 +593,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_test.html b/en/latest/core/userguide/cmd_test.html index cae38f659c..47334374df 100644 --- a/en/latest/core/userguide/cmd_test.html +++ b/en/latest/core/userguide/cmd_test.html @@ -1,28 +1,35 @@ + + + + + + pio test — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -531,18 +538,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_update.html b/en/latest/core/userguide/cmd_update.html index cc3ad1976b..a590557fa9 100644 --- a/en/latest/core/userguide/cmd_update.html +++ b/en/latest/core/userguide/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -571,18 +578,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/cmd_upgrade.html b/en/latest/core/userguide/cmd_upgrade.html index e791061208..50027c25b3 100644 --- a/en/latest/core/userguide/cmd_upgrade.html +++ b/en/latest/core/userguide/cmd_upgrade.html @@ -1,28 +1,35 @@ + + + + + + pio upgrade — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -367,18 +374,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/device/cmd_list.html b/en/latest/core/userguide/device/cmd_list.html index 244fe74db8..7e1f7c3291 100644 --- a/en/latest/core/userguide/device/cmd_list.html +++ b/en/latest/core/userguide/device/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio device list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -462,18 +469,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/device/cmd_monitor.html b/en/latest/core/userguide/device/cmd_monitor.html index f42ee4ba3b..fa40d8a1ee 100644 --- a/en/latest/core/userguide/device/cmd_monitor.html +++ b/en/latest/core/userguide/device/cmd_monitor.html @@ -1,28 +1,35 @@ + + + + + + pio device monitor — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -704,18 +711,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/device/index.html b/en/latest/core/userguide/device/index.html index 1d63af2046..bb3544d6d1 100644 --- a/en/latest/core/userguide/device/index.html +++ b/en/latest/core/userguide/device/index.html @@ -1,28 +1,35 @@ + + + + + + Device Manager CLI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -350,18 +357,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/index.html b/en/latest/core/userguide/index.html index bf2123252c..d96a494d26 100644 --- a/en/latest/core/userguide/index.html +++ b/en/latest/core/userguide/index.html @@ -1,28 +1,35 @@ + + + + + + CLI Guide — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -538,18 +545,7 @@

    Commands - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_builtin.html b/en/latest/core/userguide/lib/cmd_builtin.html index e8f04d05a8..ff30f7639e 100644 --- a/en/latest/core/userguide/lib/cmd_builtin.html +++ b/en/latest/core/userguide/lib/cmd_builtin.html @@ -1,28 +1,35 @@ + + + + + + pio lib builtin — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -560,18 +567,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_install.html b/en/latest/core/userguide/lib/cmd_install.html index b0d33d3c8e..4bff7ff909 100644 --- a/en/latest/core/userguide/lib/cmd_install.html +++ b/en/latest/core/userguide/lib/cmd_install.html @@ -1,28 +1,35 @@ + + + + + + pio lib install — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -616,18 +623,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_list.html b/en/latest/core/userguide/lib/cmd_list.html index 963e152a92..6bc0629c9f 100644 --- a/en/latest/core/userguide/lib/cmd_list.html +++ b/en/latest/core/userguide/lib/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio lib list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -547,18 +554,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_register.html b/en/latest/core/userguide/lib/cmd_register.html index 00e0a3ebdb..757eab1045 100644 --- a/en/latest/core/userguide/lib/cmd_register.html +++ b/en/latest/core/userguide/lib/cmd_register.html @@ -1,28 +1,35 @@ + + + + + + pio lib register — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -335,18 +342,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_search.html b/en/latest/core/userguide/lib/cmd_search.html index d43164f8b8..43831ee7a8 100644 --- a/en/latest/core/userguide/lib/cmd_search.html +++ b/en/latest/core/userguide/lib/cmd_search.html @@ -1,28 +1,35 @@ + + + + + + pio lib search — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -790,18 +797,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_show.html b/en/latest/core/userguide/lib/cmd_show.html index 0a5abfb231..6d2f8f8800 100644 --- a/en/latest/core/userguide/lib/cmd_show.html +++ b/en/latest/core/userguide/lib/cmd_show.html @@ -1,28 +1,35 @@ + + + + + + pio lib show — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -438,18 +445,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_stats.html b/en/latest/core/userguide/lib/cmd_stats.html index 08d084a733..dcf8cc3785 100644 --- a/en/latest/core/userguide/lib/cmd_stats.html +++ b/en/latest/core/userguide/lib/cmd_stats.html @@ -1,28 +1,35 @@ + + + + + + pio lib stats — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -514,18 +521,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_uninstall.html b/en/latest/core/userguide/lib/cmd_uninstall.html index 21ac772726..4b0fc4a779 100644 --- a/en/latest/core/userguide/lib/cmd_uninstall.html +++ b/en/latest/core/userguide/lib/cmd_uninstall.html @@ -1,28 +1,35 @@ + + + + + + pio lib uninstall — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -431,18 +438,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/cmd_update.html b/en/latest/core/userguide/lib/cmd_update.html index 35d7eb7c80..3c729eb710 100644 --- a/en/latest/core/userguide/lib/cmd_update.html +++ b/en/latest/core/userguide/lib/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio lib update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -461,18 +468,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/lib/index.html b/en/latest/core/userguide/lib/index.html index 146047d682..8c4f81f5d8 100644 --- a/en/latest/core/userguide/lib/index.html +++ b/en/latest/core/userguide/lib/index.html @@ -1,28 +1,35 @@ + + + + + + pio lib — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -435,18 +442,7 @@

    Commands jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/cmd_add.html b/en/latest/core/userguide/org/cmd_add.html index 8662c7fb92..f3206c82e5 100644 --- a/en/latest/core/userguide/org/cmd_add.html +++ b/en/latest/core/userguide/org/cmd_add.html @@ -1,28 +1,35 @@ + + + + + + pio org add — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -367,18 +374,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/cmd_create.html b/en/latest/core/userguide/org/cmd_create.html index 6879739a1b..58b9309178 100644 --- a/en/latest/core/userguide/org/cmd_create.html +++ b/en/latest/core/userguide/org/cmd_create.html @@ -1,28 +1,35 @@ + + + + + + pio org create — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -383,18 +390,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/cmd_destroy.html b/en/latest/core/userguide/org/cmd_destroy.html index 53b5bd40d5..f5a1244101 100644 --- a/en/latest/core/userguide/org/cmd_destroy.html +++ b/en/latest/core/userguide/org/cmd_destroy.html @@ -1,28 +1,35 @@ + + + + + + pio org destroy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -358,18 +365,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/cmd_list.html b/en/latest/core/userguide/org/cmd_list.html index f8c0137b11..aa61d32ba2 100644 --- a/en/latest/core/userguide/org/cmd_list.html +++ b/en/latest/core/userguide/org/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio org list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -377,18 +384,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/cmd_remove.html b/en/latest/core/userguide/org/cmd_remove.html index f403780d12..9da9d79b9e 100644 --- a/en/latest/core/userguide/org/cmd_remove.html +++ b/en/latest/core/userguide/org/cmd_remove.html @@ -1,28 +1,35 @@ + + + + + + pio org remove — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -366,18 +373,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/cmd_update.html b/en/latest/core/userguide/org/cmd_update.html index d280cbd16c..d03537c24e 100644 --- a/en/latest/core/userguide/org/cmd_update.html +++ b/en/latest/core/userguide/org/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio org update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -390,18 +397,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/org/index.html b/en/latest/core/userguide/org/index.html index af436cd2b1..465f3edbc3 100644 --- a/en/latest/core/userguide/org/index.html +++ b/en/latest/core/userguide/org/index.html @@ -1,28 +1,35 @@ + + + + + + pio org — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -377,18 +384,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_exec.html b/en/latest/core/userguide/pkg/cmd_exec.html index f8f43855ef..613d00f368 100644 --- a/en/latest/core/userguide/pkg/cmd_exec.html +++ b/en/latest/core/userguide/pkg/cmd_exec.html @@ -1,28 +1,35 @@ + + + + + + pio pkg exec — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -405,18 +412,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_install.html b/en/latest/core/userguide/pkg/cmd_install.html index a415f22184..0ec9dcaad8 100644 --- a/en/latest/core/userguide/pkg/cmd_install.html +++ b/en/latest/core/userguide/pkg/cmd_install.html @@ -1,28 +1,35 @@ + + + + + + pio pkg install — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -795,18 +802,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_list.html b/en/latest/core/userguide/pkg/cmd_list.html index 1a50343a6d..ffe0168057 100644 --- a/en/latest/core/userguide/pkg/cmd_list.html +++ b/en/latest/core/userguide/pkg/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio pkg list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -447,18 +454,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_outdated.html b/en/latest/core/userguide/pkg/cmd_outdated.html index 990dcf0fdf..d335b2fc08 100644 --- a/en/latest/core/userguide/pkg/cmd_outdated.html +++ b/en/latest/core/userguide/pkg/cmd_outdated.html @@ -1,28 +1,35 @@ + + + + + + pio pkg outdated — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -387,18 +394,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_pack.html b/en/latest/core/userguide/pkg/cmd_pack.html index 0fd6556903..0a05d8a9f2 100644 --- a/en/latest/core/userguide/pkg/cmd_pack.html +++ b/en/latest/core/userguide/pkg/cmd_pack.html @@ -1,28 +1,35 @@ + + + + + + pio pkg pack — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -396,18 +403,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_publish.html b/en/latest/core/userguide/pkg/cmd_publish.html index efdd728645..08ec7130e7 100644 --- a/en/latest/core/userguide/pkg/cmd_publish.html +++ b/en/latest/core/userguide/pkg/cmd_publish.html @@ -1,28 +1,35 @@ + + + + + + pio pkg publish — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -413,18 +420,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_search.html b/en/latest/core/userguide/pkg/cmd_search.html index edf501f515..9c6538fd4c 100644 --- a/en/latest/core/userguide/pkg/cmd_search.html +++ b/en/latest/core/userguide/pkg/cmd_search.html @@ -1,28 +1,35 @@ + + + + + + pio pkg search — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -697,18 +704,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_show.html b/en/latest/core/userguide/pkg/cmd_show.html index ad6cc0772c..73fc80bc84 100644 --- a/en/latest/core/userguide/pkg/cmd_show.html +++ b/en/latest/core/userguide/pkg/cmd_show.html @@ -1,28 +1,35 @@ + + + + + + pio pkg show — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -403,18 +410,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_uninstall.html b/en/latest/core/userguide/pkg/cmd_uninstall.html index 2a0360005e..db2d0b87d7 100644 --- a/en/latest/core/userguide/pkg/cmd_uninstall.html +++ b/en/latest/core/userguide/pkg/cmd_uninstall.html @@ -1,28 +1,35 @@ + + + + + + pio pkg uninstall — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -458,18 +465,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_unpublish.html b/en/latest/core/userguide/pkg/cmd_unpublish.html index 3fb4707aaf..7407f2fb6e 100644 --- a/en/latest/core/userguide/pkg/cmd_unpublish.html +++ b/en/latest/core/userguide/pkg/cmd_unpublish.html @@ -1,28 +1,35 @@ + + + + + + pio pkg unpublish — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -378,18 +385,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/cmd_update.html b/en/latest/core/userguide/pkg/cmd_update.html index 26423a37af..c53a5a4d92 100644 --- a/en/latest/core/userguide/pkg/cmd_update.html +++ b/en/latest/core/userguide/pkg/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio pkg update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -456,18 +463,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/pkg/index.html b/en/latest/core/userguide/pkg/index.html index b9035f03aa..48ab1ae3ca 100644 --- a/en/latest/core/userguide/pkg/index.html +++ b/en/latest/core/userguide/pkg/index.html @@ -1,28 +1,35 @@ + + + + + + Package Management CLI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -421,18 +428,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_frameworks.html b/en/latest/core/userguide/platforms/cmd_frameworks.html index 7c6cdc81b3..d3e5d484b8 100644 --- a/en/latest/core/userguide/platforms/cmd_frameworks.html +++ b/en/latest/core/userguide/platforms/cmd_frameworks.html @@ -1,28 +1,35 @@ + + + + + + pio platform frameworks — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -437,18 +444,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_install.html b/en/latest/core/userguide/platforms/cmd_install.html index cfaced0432..7ee2718f04 100644 --- a/en/latest/core/userguide/platforms/cmd_install.html +++ b/en/latest/core/userguide/platforms/cmd_install.html @@ -1,28 +1,35 @@ + + + + + + pio platform install — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -571,18 +578,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_list.html b/en/latest/core/userguide/platforms/cmd_list.html index 5fd848db66..72f474148e 100644 --- a/en/latest/core/userguide/platforms/cmd_list.html +++ b/en/latest/core/userguide/platforms/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio platform list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -401,18 +408,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_search.html b/en/latest/core/userguide/platforms/cmd_search.html index dc610b098f..42fdafeb06 100644 --- a/en/latest/core/userguide/platforms/cmd_search.html +++ b/en/latest/core/userguide/platforms/cmd_search.html @@ -1,28 +1,35 @@ + + + + + + pio platform search — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -485,18 +492,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_show.html b/en/latest/core/userguide/platforms/cmd_show.html index c208841b1a..305f559eaf 100644 --- a/en/latest/core/userguide/platforms/cmd_show.html +++ b/en/latest/core/userguide/platforms/cmd_show.html @@ -1,28 +1,35 @@ + + + + + + pio platform show — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -414,18 +421,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_uninstall.html b/en/latest/core/userguide/platforms/cmd_uninstall.html index 818fb769eb..02b43d5cb7 100644 --- a/en/latest/core/userguide/platforms/cmd_uninstall.html +++ b/en/latest/core/userguide/platforms/cmd_uninstall.html @@ -1,28 +1,35 @@ + + + + + + pio platform uninstall — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -370,18 +377,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/cmd_update.html b/en/latest/core/userguide/platforms/cmd_update.html index b0f1d83d83..16ec2aae19 100644 --- a/en/latest/core/userguide/platforms/cmd_update.html +++ b/en/latest/core/userguide/platforms/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio platform update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -425,18 +432,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/platforms/index.html b/en/latest/core/userguide/platforms/index.html index 66fc420bff..0be8e29ba5 100644 --- a/en/latest/core/userguide/platforms/index.html +++ b/en/latest/core/userguide/platforms/index.html @@ -1,28 +1,35 @@ + + + + + + pio platform — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -388,18 +395,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/project/cmd_config.html b/en/latest/core/userguide/project/cmd_config.html index 3432a01faf..3524c1d829 100644 --- a/en/latest/core/userguide/project/cmd_config.html +++ b/en/latest/core/userguide/project/cmd_config.html @@ -1,28 +1,35 @@ + + + + + + pio project config — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -429,18 +436,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/project/cmd_init.html b/en/latest/core/userguide/project/cmd_init.html index 6da14ec1ef..f23f34aa8a 100644 --- a/en/latest/core/userguide/project/cmd_init.html +++ b/en/latest/core/userguide/project/cmd_init.html @@ -1,28 +1,35 @@ + + + + + + pio project init — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -502,18 +509,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/project/cmd_metadata.html b/en/latest/core/userguide/project/cmd_metadata.html index 84bc1e0438..ccbd682c89 100644 --- a/en/latest/core/userguide/project/cmd_metadata.html +++ b/en/latest/core/userguide/project/cmd_metadata.html @@ -1,28 +1,35 @@ + + + + + + pio project metadata — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -393,18 +400,7 @@

    Options - + \ No newline at end of file diff --git a/en/latest/core/userguide/project/index.html b/en/latest/core/userguide/project/index.html index 591680d38c..2853962cd1 100644 --- a/en/latest/core/userguide/project/index.html +++ b/en/latest/core/userguide/project/index.html @@ -1,28 +1,35 @@ + + + + + + Project Manager CLI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -353,18 +360,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/remote/cmd_agent.html b/en/latest/core/userguide/remote/cmd_agent.html index d2fab67f31..2c453e8012 100644 --- a/en/latest/core/userguide/remote/cmd_agent.html +++ b/en/latest/core/userguide/remote/cmd_agent.html @@ -1,28 +1,35 @@ + + + + + + PlatformIO Remote Agent — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -410,18 +417,7 @@

    Options - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/remote/cmd_device.html b/en/latest/core/userguide/remote/cmd_device.html index 68a6c75683..8c1d17ebe7 100644 --- a/en/latest/core/userguide/remote/cmd_device.html +++ b/en/latest/core/userguide/remote/cmd_device.html @@ -1,28 +1,35 @@ + + + + + + pio remote device — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -627,18 +634,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/remote/cmd_run.html b/en/latest/core/userguide/remote/cmd_run.html index 04291b4897..a2573c63fb 100644 --- a/en/latest/core/userguide/remote/cmd_run.html +++ b/en/latest/core/userguide/remote/cmd_run.html @@ -1,28 +1,35 @@ + + + + + + pio remote run — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -489,18 +496,7 @@

    Example - + \ No newline at end of file diff --git a/en/latest/core/userguide/remote/cmd_test.html b/en/latest/core/userguide/remote/cmd_test.html index 78520e97be..e17bf9b719 100644 --- a/en/latest/core/userguide/remote/cmd_test.html +++ b/en/latest/core/userguide/remote/cmd_test.html @@ -1,28 +1,35 @@ + + + + + + pio remote test — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -472,18 +479,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/remote/cmd_update.html b/en/latest/core/userguide/remote/cmd_update.html index bc0605ba54..69c11782f6 100644 --- a/en/latest/core/userguide/remote/cmd_update.html +++ b/en/latest/core/userguide/remote/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio remote update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -543,18 +550,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/remote/index.html b/en/latest/core/userguide/remote/index.html index 03ef8be607..edfa69ec67 100644 --- a/en/latest/core/userguide/remote/index.html +++ b/en/latest/core/userguide/remote/index.html @@ -1,28 +1,35 @@ + + + + + + PlatformIO Remote CLI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -355,18 +362,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/system/cmd_info.html b/en/latest/core/userguide/system/cmd_info.html index 9664259548..5d70efb5ea 100644 --- a/en/latest/core/userguide/system/cmd_info.html +++ b/en/latest/core/userguide/system/cmd_info.html @@ -1,28 +1,35 @@ + + + + + + pio system info — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -378,18 +385,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/system/cmd_prune.html b/en/latest/core/userguide/system/cmd_prune.html index d21f98c2bb..1c3c60fb6b 100644 --- a/en/latest/core/userguide/system/cmd_prune.html +++ b/en/latest/core/userguide/system/cmd_prune.html @@ -1,28 +1,35 @@ + + + + + + pio system prune — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -435,18 +442,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/system/completion/cmd_install.html b/en/latest/core/userguide/system/completion/cmd_install.html index dc20149c27..620681db5f 100644 --- a/en/latest/core/userguide/system/completion/cmd_install.html +++ b/en/latest/core/userguide/system/completion/cmd_install.html @@ -1,28 +1,35 @@ + + + + + + pio system completion install — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -378,18 +385,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/system/completion/cmd_uninstall.html b/en/latest/core/userguide/system/completion/cmd_uninstall.html index bfaca66613..b1aa1dc891 100644 --- a/en/latest/core/userguide/system/completion/cmd_uninstall.html +++ b/en/latest/core/userguide/system/completion/cmd_uninstall.html @@ -1,28 +1,35 @@ + + + + + + pio system completion uninstall — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -378,18 +385,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/system/completion/index.html b/en/latest/core/userguide/system/completion/index.html index 54b2061510..5ab4d15700 100644 --- a/en/latest/core/userguide/system/completion/index.html +++ b/en/latest/core/userguide/system/completion/index.html @@ -1,28 +1,35 @@ + + + + + + PlatformIO Shell Completion — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -355,18 +362,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/system/index.html b/en/latest/core/userguide/system/index.html index 5aea0461e0..c71632d64d 100644 --- a/en/latest/core/userguide/system/index.html +++ b/en/latest/core/userguide/system/index.html @@ -1,28 +1,35 @@ + + + + + + pio system — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -355,18 +362,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/cmd_add.html b/en/latest/core/userguide/team/cmd_add.html index bf79941029..6b06b4bca1 100644 --- a/en/latest/core/userguide/team/cmd_add.html +++ b/en/latest/core/userguide/team/cmd_add.html @@ -1,28 +1,35 @@ + + + + + + pio team add — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -367,18 +374,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/cmd_create.html b/en/latest/core/userguide/team/cmd_create.html index e65b9d23d5..df44ab5217 100644 --- a/en/latest/core/userguide/team/cmd_create.html +++ b/en/latest/core/userguide/team/cmd_create.html @@ -1,28 +1,35 @@ + + + + + + pio team create — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -377,18 +384,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/cmd_destroy.html b/en/latest/core/userguide/team/cmd_destroy.html index 30a0cc8f42..7095a75abe 100644 --- a/en/latest/core/userguide/team/cmd_destroy.html +++ b/en/latest/core/userguide/team/cmd_destroy.html @@ -1,28 +1,35 @@ + + + + + + pio team destroy — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -358,18 +365,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/cmd_list.html b/en/latest/core/userguide/team/cmd_list.html index bef0cdb6d9..a6ad161588 100644 --- a/en/latest/core/userguide/team/cmd_list.html +++ b/en/latest/core/userguide/team/cmd_list.html @@ -1,28 +1,35 @@ + + + + + + pio team list — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -373,18 +380,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/cmd_remove.html b/en/latest/core/userguide/team/cmd_remove.html index 873cb2cd2e..e5ce8a6a86 100644 --- a/en/latest/core/userguide/team/cmd_remove.html +++ b/en/latest/core/userguide/team/cmd_remove.html @@ -1,28 +1,35 @@ + + + + + + pio team remove — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -366,18 +373,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/cmd_update.html b/en/latest/core/userguide/team/cmd_update.html index 085a6d1c0f..8e860df9b5 100644 --- a/en/latest/core/userguide/team/cmd_update.html +++ b/en/latest/core/userguide/team/cmd_update.html @@ -1,28 +1,35 @@ + + + + + + pio team update — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -385,18 +392,7 @@

    See Also - - - + \ No newline at end of file diff --git a/en/latest/core/userguide/team/index.html b/en/latest/core/userguide/team/index.html index d71ce479db..bd95f1b568 100644 --- a/en/latest/core/userguide/team/index.html +++ b/en/latest/core/userguide/team/index.html @@ -1,28 +1,35 @@ + + + + + + pio team — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -377,18 +384,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/envvars.html b/en/latest/envvars.html index 5a939fc95c..cc21b88bea 100644 --- a/en/latest/envvars.html +++ b/en/latest/envvars.html @@ -1,28 +1,35 @@ + + + + + + Environment Variables — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -611,18 +618,7 @@

    Settings - - - + \ No newline at end of file diff --git a/en/latest/faq/advanced-serial-monitor.html b/en/latest/faq/advanced-serial-monitor.html index 7539e75ea6..acd44f1235 100644 --- a/en/latest/faq/advanced-serial-monitor.html +++ b/en/latest/faq/advanced-serial-monitor.html @@ -1,28 +1,35 @@ + + + + + + Advanced Serial Monitor with UI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -312,18 +319,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/faq/arduino-vs-platformio.html b/en/latest/faq/arduino-vs-platformio.html index c2b3ef09d4..a09b2ef601 100644 --- a/en/latest/faq/arduino-vs-platformio.html +++ b/en/latest/faq/arduino-vs-platformio.html @@ -1,28 +1,35 @@ + + + + + + Arduino IDE vs PlatformIO IDE — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -320,18 +327,7 @@

    Arduino IDE vs PlatformIO IDE - + \ No newline at end of file diff --git a/en/latest/faq/custom-scons-cli-options.html b/en/latest/faq/custom-scons-cli-options.html index 693ef8def0..176d2aa034 100644 --- a/en/latest/faq/custom-scons-cli-options.html +++ b/en/latest/faq/custom-scons-cli-options.html @@ -1,28 +1,35 @@ + + + + + + Custom SCons command-line options — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -325,18 +332,7 @@

    Custom SCons command-line options - + \ No newline at end of file diff --git a/en/latest/faq/general.html b/en/latest/faq/general.html index 526f1b506c..817eeb3a14 100644 --- a/en/latest/faq/general.html +++ b/en/latest/faq/general.html @@ -1,28 +1,35 @@ + + + + + + General — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -329,18 +336,7 @@

    Multiple PlatformIO Cores in a system - + \ No newline at end of file diff --git a/en/latest/faq/index.html b/en/latest/faq/index.html index 3d2205c544..278603e46f 100644 --- a/en/latest/faq/index.html +++ b/en/latest/faq/index.html @@ -1,28 +1,35 @@ + + + + + + Frequently Asked Questions — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -329,18 +336,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/faq/ino-to-cpp.html b/en/latest/faq/ino-to-cpp.html index 9181d614e1..38729ba2b2 100644 --- a/en/latest/faq/ino-to-cpp.html +++ b/en/latest/faq/ino-to-cpp.html @@ -1,28 +1,35 @@ + + + + + + Convert Arduino file to C++ manually — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -347,18 +354,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/faq/install-python.html b/en/latest/faq/install-python.html index 254ecfe685..1760c5f6e2 100644 --- a/en/latest/faq/install-python.html +++ b/en/latest/faq/install-python.html @@ -1,28 +1,35 @@ + + + + + + Install Python Interpreter — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -325,18 +332,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/faq/program-memory-usage.html b/en/latest/faq/program-memory-usage.html index 5a2386c201..4a489a0d7b 100644 --- a/en/latest/faq/program-memory-usage.html +++ b/en/latest/faq/program-memory-usage.html @@ -1,28 +1,35 @@ + + + + + + Program Memory Usage — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -341,18 +348,7 @@

    Program Memory Usage - - - + \ No newline at end of file diff --git a/en/latest/faq/troubleshooting.html b/en/latest/faq/troubleshooting.html index 66046adf6e..feb533932a 100644 --- a/en/latest/faq/troubleshooting.html +++ b/en/latest/faq/troubleshooting.html @@ -1,28 +1,35 @@ + + + + + + Troubleshooting — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -422,18 +429,7 @@

    Monitoring a serial port breaks upload - + \ No newline at end of file diff --git a/en/latest/frameworks/arduino.html b/en/latest/frameworks/arduino.html index d1357470af..e8fc33fe22 100644 --- a/en/latest/frameworks/arduino.html +++ b/en/latest/frameworks/arduino.html @@ -1,28 +1,35 @@ + + + + + + Arduino — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -17448,18 +17455,7 @@

    ubIQio< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/cmsis.html b/en/latest/frameworks/cmsis.html index f3234132d1..1928c622be 100644 --- a/en/latest/frameworks/cmsis.html +++ b/en/latest/frameworks/cmsis.html @@ -1,28 +1,35 @@ + + + + + + CMSIS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -5085,18 +5092,7 @@

    sakura.io - + \ No newline at end of file diff --git a/en/latest/frameworks/energia.html b/en/latest/frameworks/energia.html index 4c3a063171..832740795d 100644 --- a/en/latest/frameworks/energia.html +++ b/en/latest/frameworks/energia.html @@ -1,28 +1,35 @@ + + + + + + Energia — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -356,18 +363,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/frameworks/esp8266-nonos-sdk.html b/en/latest/frameworks/esp8266-nonos-sdk.html index d4b277e0a9..58e912b655 100644 --- a/en/latest/frameworks/esp8266-nonos-sdk.html +++ b/en/latest/frameworks/esp8266-nonos-sdk.html @@ -1,28 +1,35 @@ + + + + + + ESP8266 Non-OS SDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -1124,18 +1131,7 @@

    XinaBox jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/esp8266-rtos-sdk.html b/en/latest/frameworks/esp8266-rtos-sdk.html index 936ba0cae4..827839b925 100644 --- a/en/latest/frameworks/esp8266-rtos-sdk.html +++ b/en/latest/frameworks/esp8266-rtos-sdk.html @@ -1,28 +1,35 @@ + + + + + + ESP8266 RTOS SDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -1124,18 +1131,7 @@

    XinaBox jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/espidf.html b/en/latest/frameworks/espidf.html index 7fe046fe77..682d22888f 100644 --- a/en/latest/frameworks/espidf.html +++ b/en/latest/frameworks/espidf.html @@ -1,28 +1,35 @@ + + + + + + Espressif IoT Development Framework — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -5489,18 +5496,7 @@

    uPesy - - - + \ No newline at end of file diff --git a/en/latest/frameworks/freedom-e-sdk.html b/en/latest/frameworks/freedom-e-sdk.html index 5a814a3eca..d19179870b 100644 --- a/en/latest/frameworks/freedom-e-sdk.html +++ b/en/latest/frameworks/freedom-e-sdk.html @@ -1,28 +1,35 @@ + + + + + + Freedom E SDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -677,18 +684,7 @@

    Xilinx< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/freertos.html b/en/latest/frameworks/freertos.html index 0a97919d2b..7472e857da 100644 --- a/en/latest/frameworks/freertos.html +++ b/en/latest/frameworks/freertos.html @@ -1,28 +1,35 @@ + + + + + + FreeRTOS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -595,18 +602,7 @@

    Xilinx< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/fsp.html b/en/latest/frameworks/fsp.html index 1f530892cf..ca03463882 100644 --- a/en/latest/frameworks/fsp.html +++ b/en/latest/frameworks/fsp.html @@ -1,28 +1,35 @@ + + + + + + Renesas Flexible Software Package — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -497,18 +504,7 @@

    Arduino jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/index.html b/en/latest/frameworks/index.html index 29b613053d..34a1735b49 100644 --- a/en/latest/frameworks/index.html +++ b/en/latest/frameworks/index.html @@ -1,28 +1,35 @@ + + + + + + Frameworks — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -337,18 +344,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/libopencm3.html b/en/latest/frameworks/libopencm3.html index c1ad2c2929..1275634d88 100644 --- a/en/latest/frameworks/libopencm3.html +++ b/en/latest/frameworks/libopencm3.html @@ -1,28 +1,35 @@ + + + + + + LibOpenCM3 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -4857,18 +4864,7 @@

    u-blox< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/mbed.html b/en/latest/frameworks/mbed.html index 85650aef98..b0d9d62ada 100644 --- a/en/latest/frameworks/mbed.html +++ b/en/latest/frameworks/mbed.html @@ -1,28 +1,35 @@ + + + + + + Mbed — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -2142,18 +2149,7 @@

    rhomb.io jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/pulp-os.html b/en/latest/frameworks/pulp-os.html index d55345fa25..cf42449258 100644 --- a/en/latest/frameworks/pulp-os.html +++ b/en/latest/frameworks/pulp-os.html @@ -1,28 +1,35 @@ + + + + + + PULP OS — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -447,18 +454,7 @@

    GreenWaves Technologies - - - + \ No newline at end of file diff --git a/en/latest/frameworks/pulp-runtime.html b/en/latest/frameworks/pulp-runtime.html index 652104e952..3d73ec2da6 100644 --- a/en/latest/frameworks/pulp-runtime.html +++ b/en/latest/frameworks/pulp-runtime.html @@ -1,28 +1,35 @@ + + + + + + PULP Runtime Environment — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -447,18 +454,7 @@

    Digilent jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/pulp-sdk.html b/en/latest/frameworks/pulp-sdk.html index 8c0afb1434..a449935783 100644 --- a/en/latest/frameworks/pulp-sdk.html +++ b/en/latest/frameworks/pulp-sdk.html @@ -1,28 +1,35 @@ + + + + + + PULP SDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -447,18 +454,7 @@

    Digilent jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/shakti-sdk.html b/en/latest/frameworks/shakti-sdk.html index cc135e41f0..627fdaeca4 100644 --- a/en/latest/frameworks/shakti-sdk.html +++ b/en/latest/frameworks/shakti-sdk.html @@ -1,28 +1,35 @@ + + + + + + Shakti SDK — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -507,18 +514,7 @@

    Xilinx< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/spl.html b/en/latest/frameworks/spl.html index 481652eaed..dc44825c48 100644 --- a/en/latest/frameworks/spl.html +++ b/en/latest/frameworks/spl.html @@ -1,28 +1,35 @@ + + + + + + Standard Peripheral Library — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -874,18 +881,7 @@

    sduino< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/stm32cube.html b/en/latest/frameworks/stm32cube.html index ef5c8921c9..764d8c4f99 100644 --- a/en/latest/frameworks/stm32cube.html +++ b/en/latest/frameworks/stm32cube.html @@ -1,28 +1,35 @@ + + + + + + STM32Cube — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -5561,18 +5568,7 @@

    u-blox< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/wd-riscv-sdk.html b/en/latest/frameworks/wd-riscv-sdk.html index ce68c0ada8..cf5547dbac 100644 --- a/en/latest/frameworks/wd-riscv-sdk.html +++ b/en/latest/frameworks/wd-riscv-sdk.html @@ -1,28 +1,35 @@ + + + + + + WD-Firmware — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -447,18 +454,7 @@

    Digilent jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/frameworks/wiringpi.html b/en/latest/frameworks/wiringpi.html index 322b698333..0361cf4b33 100644 --- a/en/latest/frameworks/wiringpi.html +++ b/en/latest/frameworks/wiringpi.html @@ -1,28 +1,35 @@ + + + + + + WiringPi — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -416,18 +423,7 @@

    Raspberry Pi - + \ No newline at end of file diff --git a/en/latest/frameworks/zephyr.html b/en/latest/frameworks/zephyr.html index 266494cdab..238ed46ba2 100644 --- a/en/latest/frameworks/zephyr.html +++ b/en/latest/frameworks/zephyr.html @@ -1,28 +1,35 @@ + + + + + + Zephyr — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -3416,18 +3423,7 @@

    u-blox< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/genindex.html b/en/latest/genindex.html index 47ae1de9ce..bb20b11135 100644 --- a/en/latest/genindex.html +++ b/en/latest/genindex.html @@ -1,27 +1,34 @@ + + + + + + Index — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -3265,18 +3272,7 @@

    T

    jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/home/index.html b/en/latest/home/index.html index cc3e8e1068..e3e8a80b5f 100644 --- a/en/latest/home/index.html +++ b/en/latest/home/index.html @@ -1,28 +1,35 @@ + + + + + + PlatformIO Home — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -418,18 +425,7 @@

    Board Explorer - - - + \ No newline at end of file diff --git a/en/latest/index.html b/en/latest/index.html index fb4f99e43b..d2212f18bd 100644 --- a/en/latest/index.html +++ b/en/latest/index.html @@ -1,28 +1,35 @@ + + + + + + Your Gateway to Embedded Software Development Excellence — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -385,18 +392,7 @@

    Contents jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/appveyor.html b/en/latest/integration/ci/appveyor.html index bd104e249a..41164b1f5b 100644 --- a/en/latest/integration/ci/appveyor.html +++ b/en/latest/integration/ci/appveyor.html @@ -1,28 +1,35 @@ + + + + + + AppVeyor — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -410,18 +417,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/circleci.html b/en/latest/integration/ci/circleci.html index ea9ac70c9a..be2c3f560e 100644 --- a/en/latest/integration/ci/circleci.html +++ b/en/latest/integration/ci/circleci.html @@ -1,28 +1,35 @@ + + + + + + CircleCI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -515,18 +522,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/drone.html b/en/latest/integration/ci/drone.html index 3078434184..44a5849862 100644 --- a/en/latest/integration/ci/drone.html +++ b/en/latest/integration/ci/drone.html @@ -1,28 +1,35 @@ + + + + + + Drone — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -391,18 +398,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/github-actions.html b/en/latest/integration/ci/github-actions.html index 0f66dcf9d2..cf23ad0083 100644 --- a/en/latest/integration/ci/github-actions.html +++ b/en/latest/integration/ci/github-actions.html @@ -1,28 +1,35 @@ + + + + + + GitHub Actions — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -472,18 +479,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/gitlab.html b/en/latest/integration/ci/gitlab.html index 19d06234f7..e354c2ce82 100644 --- a/en/latest/integration/ci/gitlab.html +++ b/en/latest/integration/ci/gitlab.html @@ -1,28 +1,35 @@ + + + + + + GitLab — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -455,18 +462,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/index.html b/en/latest/integration/ci/index.html index ad6456a15a..cacf632ceb 100644 --- a/en/latest/integration/ci/index.html +++ b/en/latest/integration/ci/index.html @@ -1,28 +1,35 @@ + + + + + + Continuous Integration — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -350,18 +357,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/shippable.html b/en/latest/integration/ci/shippable.html index 38df055bba..1e4778138e 100644 --- a/en/latest/integration/ci/shippable.html +++ b/en/latest/integration/ci/shippable.html @@ -1,28 +1,35 @@ + + + + + + Shippable — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -410,18 +417,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/ci/travis.html b/en/latest/integration/ci/travis.html index 99715edac3..34e9060de3 100644 --- a/en/latest/integration/ci/travis.html +++ b/en/latest/integration/ci/travis.html @@ -1,28 +1,35 @@ + + + + + + Travis CI — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -155,7 +162,8 @@

    Travis CI

    -../../_images/ci-travis-logo.png +../../_images/ci-travis-logo.png +

    Travis CI officially supports PlatformIO for Embedded Builds.

    Travis CI is an open-source hosted, @@ -662,18 +670,7 @@

    Examples - - - + \ No newline at end of file diff --git a/en/latest/integration/compile_commands.html b/en/latest/integration/compile_commands.html index 5a4bd40ead..db0f7488ef 100644 --- a/en/latest/integration/compile_commands.html +++ b/en/latest/integration/compile_commands.html @@ -1,28 +1,35 @@ + + + + + + Compilation database compile_commands.json — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -344,18 +351,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/clion.html b/en/latest/integration/ide/clion.html index 0eee494198..7b9ac29c21 100644 --- a/en/latest/integration/ide/clion.html +++ b/en/latest/integration/ide/clion.html @@ -1,28 +1,35 @@ + + + + + + CLion — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -555,18 +562,7 @@

    PlatformIO Home< jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/cloud9.html b/en/latest/integration/ide/cloud9.html index 3fbeeb768b..3d5f24db2f 100644 --- a/en/latest/integration/ide/cloud9.html +++ b/en/latest/integration/ide/cloud9.html @@ -1,28 +1,35 @@ + + + + + + Cloud9 — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -185,7 +192,8 @@

    Demo

    -../../_images/ide-cloud9-demo.jpg +../../_images/ide-cloud9-demo.jpg +

    Integration

    @@ -515,18 +523,7 @@

    Multi-Project worksp jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/codeanywhere.html b/en/latest/integration/ide/codeanywhere.html index 1377501ebc..b672a60603 100644 --- a/en/latest/integration/ide/codeanywhere.html +++ b/en/latest/integration/ide/codeanywhere.html @@ -1,28 +1,35 @@ + + + + + + Codeanywhere — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -187,7 +194,8 @@

    Demo

    -../../_images/ide-codeanywhere-demo.jpg +../../_images/ide-codeanywhere-demo.jpg +

    Integration

    @@ -546,18 +554,7 @@

    Multi-Project worksp jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/codeblocks.html b/en/latest/integration/ide/codeblocks.html index 6e6ee53e33..c8f57f319a 100644 --- a/en/latest/integration/ide/codeblocks.html +++ b/en/latest/integration/ide/codeblocks.html @@ -1,28 +1,35 @@ + + + + + + CodeBlocks — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -157,7 +164,8 @@ and features are defined by the provided plugins. Currently, Code::Blocks is oriented towards C, C++, and Fortran.

    CodeBlocks IDE can be downloaded from here.

    -../../_images/ide-platformio-codeblocks.png +../../_images/ide-platformio-codeblocks.png +

    Debugging

    @@ -428,18 +437,7 @@

    Articles / Manuals - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/eclipseche.html b/en/latest/integration/ide/eclipseche.html index a5a8fd860a..7255997522 100644 --- a/en/latest/integration/ide/eclipseche.html +++ b/en/latest/integration/ide/eclipseche.html @@ -1,28 +1,35 @@ + + + + + + Eclipse Che — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -423,18 +430,7 @@

    Multi-Project workspa jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/emacs.html b/en/latest/integration/ide/emacs.html index 9e3602e7c6..4049336bc7 100644 --- a/en/latest/integration/ide/emacs.html +++ b/en/latest/integration/ide/emacs.html @@ -1,28 +1,35 @@ + + + + + + Emacs — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -157,7 +164,8 @@ with extensions to support text editing.

    Refer to the Emacs Documentation page for more detailed information.

    -../../_images/ide-platformio-emacs.png +../../_images/ide-platformio-emacs.png +

    PlatformIO for CLion (experimental)

    @@ -182,7 +190,8 @@

    PlatformIO for CLion (experimental)Install PlatformIO for CLion / Get started

    -../../_images/ide-platformio-clion.png +../../_images/ide-platformio-clion.png +

    @@ -345,18 +354,7 @@

    PlatformIO for CLion (experimental) - + \ No newline at end of file diff --git a/en/latest/integration/ide/pioide_features.html b/en/latest/integration/ide/pioide_features.html index ad16d5290e..dbcfb1b92a 100644 --- a/en/latest/integration/ide/pioide_features.html +++ b/en/latest/integration/ide/pioide_features.html @@ -1,28 +1,35 @@ + + + + + + <no title> — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -306,18 +313,7 @@ jQuery(function () { SphinxRtdTheme.Navigation.enable(true); }); - - - - + \ No newline at end of file diff --git a/en/latest/integration/ide/qtcreator.html b/en/latest/integration/ide/qtcreator.html index 4e6b8b0e2c..f89a1b2e80 100644 --- a/en/latest/integration/ide/qtcreator.html +++ b/en/latest/integration/ide/qtcreator.html @@ -1,28 +1,35 @@ + + + + + + Qt Creator — PlatformIO latest documentation - + - - - - - - - - - + + + + + + + @@ -154,7 +161,8 @@

    The Qt Creator is an open source cross-platform integrated development environment. The editor includes such features as syntax highlighting for various languages, project manager, integrated version control systems, rapid code navigation tools and code autocompletion.

    Refer to the Qt-creator Manual page for more detailed information.

    -../../_images/ide-qtcreator-7.png +../../_images/ide-qtcreator-7.png +