Skip to content

Commit 604b70e

Browse files
committed
Deployed b16ae70 to dev with MkDocs 1.3.0 and mike 1.1.2
1 parent b00a771 commit 604b70e

File tree

4 files changed

+83
-83
lines changed

4 files changed

+83
-83
lines changed

dev/CONTRIBUTING/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,8 +2019,8 @@ <h3 id="about-easyjson-golang-library">About <code>easyjson</code> golang librar
20192019
changes in the generated code.</p>
20202020
<h3 id="additional-settings">Additional settings<a class="headerlink" href="#additional-settings" title="Permanent link">&para;</a></h3>
20212021
<p>If you need to push a commit that's only shipping documentation changes or example files, thus a complete no-op for the
2022-
test suite, please start the commit message with the string <strong>[skip ci]</strong> to skip the build and give that slot to
2023-
someone else who does need it.</p>
2022+
test suite, please start the commit message with the string <strong>[skip ci]</strong> to skip the build and give that slot to someone
2023+
else who does need it.</p>
20242024
<p>If your PR doesn't need to be included in the changelog, please start the commit message and PR title with the string
20252025
<strong>[skip changelog]</strong></p>
20262026

dev/integration-options/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1456,8 +1456,8 @@ <h1 id="the-three-pillars-of-the-arduino-cli">The three pillars of the Arduino C
14561456
compile, verify and upload sketches to Arduino boards and that’s capable of managing all the software and tools needed
14571457
in the process. But don’t get fooled by its name: Arduino CLI can do much more than the average console application, as
14581458
shown by <a href="https://github.com/arduino/arduino-ide">Arduino IDE 2.x</a> and <a href="https://cloud.arduino.cc/home">Arduino Cloud</a>, which rely on it for similar purposes but each one in a
1459-
completely different way from the other. In this article we introduce the three pillars of the Arduino CLI, explaining
1460-
how we designed the software so that it can be effectively leveraged under different scenarios.</p>
1459+
completely different way from the other. In this article we introduce the three pillars of the Arduino CLI, explaining how
1460+
we designed the software so that it can be effectively leveraged under different scenarios.</p>
14611461
<h2 id="the-first-pillar-command-line-interface">The first pillar: command line interface<a class="headerlink" href="#the-first-pillar-command-line-interface" title="Permanent link">&para;</a></h2>
14621462
<h3 id="console-applications-for-humans">Console applications for humans<a class="headerlink" href="#console-applications-for-humans" title="Permanent link">&para;</a></h3>
14631463
<p>As you might expect, the first way to use the Arduino CLI is from a terminal and by a human, and user experience plays a
@@ -1564,15 +1564,14 @@ <h3 id="console-applications-for-robots">Console applications for robots<a class
15641564
}
15651565
</code></pre></div>
15661566
<p>Even if not related to software design, one last feature that’s worth mentioning is the availability of a one-line
1567-
<a href="../installation/#use-the-install-script">installation script</a> that can be used to make the latest version of the Arduino CLI available on most systems with an
1568-
HTTP client like curl or wget and a shell like bash.</p>
1567+
<a href="../installation/#use-the-install-script">installation script</a> that can be used to make the latest version of the Arduino CLI available on most systems with an HTTP
1568+
client like curl or wget and a shell like bash.</p>
15691569
<p>For more information on Arduino CLI's command line interface, see the <a href="../commands/arduino-cli/">command reference</a>.</p>
15701570
<h2 id="the-second-pillar-grpc-interface">The second pillar: gRPC interface<a class="headerlink" href="#the-second-pillar-grpc-interface" title="Permanent link">&para;</a></h2>
15711571
<p><a href="https://grpc.io/">gRPC</a> is a high performance <a href="https://en.wikipedia.org/wiki/Remote_procedure_call">RPC</a> framework that can efficiently connect client and server applications. The Arduino
1572-
CLI can act as a gRPC server (we call it <a href="../commands/arduino-cli_daemon/">daemon mode</a>), exposing a set of procedures that implement the very same set
1573-
of features of the command line interface and waiting for clients to connect and use them. To give an idea, the
1574-
following is some <a href="https://go.dev/">Golang</a> code capable of retrieving the version number of a remote running Arduino CLI server
1575-
instance:</p>
1572+
CLI can act as a gRPC server (we call it <a href="../commands/arduino-cli_daemon/">daemon mode</a>), exposing a set of procedures that implement the very same set of
1573+
features of the command line interface and waiting for clients to connect and use them. To give an idea, the following is
1574+
some <a href="https://go.dev/">Golang</a> code capable of retrieving the version number of a remote running Arduino CLI server instance:</p>
15761575
<div class="highlight"><pre><span></span><code><span class="c1">// This file is part of arduino-cli.</span>
15771576
<span class="c1">//</span>
15781577
<span class="c1">// Copyright 2024 ARDUINO SA (http://www.arduino.cc/)</span>
@@ -1634,8 +1633,8 @@ <h2 id="the-third-pillar-embedding">The third pillar: embedding<a class="headerl
16341633
offered by the Arduino CLI, so that when we provide a fix or a new feature, they are automatically available to both the
16351634
command line and gRPC interfaces. The source modules implementing this API are implemented through the <code>commands</code>
16361635
package, and it can be imported in other Golang programs to embed a full-fledged Arduino CLI. For example, this is how
1637-
some backend services powering <a href="https://cloud.arduino.cc/home">Arduino Cloud</a> can compile sketches and manage libraries. Just to give you a taste of
1638-
what it means to embed the Arduino CLI, here is how to search for a core using the API:</p>
1636+
some backend services powering <a href="https://cloud.arduino.cc/home">Arduino Cloud</a> can compile sketches and manage libraries. Just to give you a taste of what
1637+
it means to embed the Arduino CLI, here is how to search for a core using the API:</p>
16391638
<div class="highlight"><pre><span></span><code><span class="c1">// This file is part of arduino-cli.</span>
16401639
<span class="c1">//</span>
16411640
<span class="c1">// Copyright 2024 ARDUINO SA (http://www.arduino.cc/)</span>
@@ -1715,7 +1714,8 @@ <h2 id="conclusions">Conclusions<a class="headerlink" href="#conclusions" title=
17151714
<p>You can start playing with the Arduino CLI right away. The code is open source and <a href="https://github.com/arduino/arduino-cli">the repo</a>
17161715
contains <a href="https://github.com/arduino/arduino-cli/blob/master/rpc/internal/client_example">example code showing how to implement a gRPC client</a>. If you’re curious about how we
17171716
designed the low level API, have a look at the <a href="https://github.com/arduino/arduino-cli/tree/master/commands">commands package</a> and don’t hesitate to leave feedback on the <a href="https://github.com/arduino/arduino-cli/issues">issue
1718-
tracker</a> if you’ve got a use case that doesn’t fit one of the three pillars.</p>
1717+
tracker</a>
1718+
if you’ve got a use case that doesn’t fit one of the three pillars.</p>
17191719

17201720

17211721

0 commit comments

Comments
 (0)