Synchronizing Sketches between IDE 2 and Arduino Cloud

Learn how to enable your Remote Sketchbook, and how to pull, edit and push Sketches to the Arduino Cloud.

The new Remote Sketchbook integration, released in July 2021 is a ground-breaking feature that allows you to synchronise your Arduino Cloud Sketchbook to your local computer. This is a great milestone for people who work on multiple computers or want to store their Sketches securely in the Cloud.

In this tutorial, we will describe the benefits of this new feature, go through the steps necessary to set it up, how to use it, what limitations there are, and what scenarios this feature is most useful in.

Benefits

  • Code anywhere: Write your Arduino sketches on one computer and access them on another, with a single click! Do not worry about synchronisation or USB drives: the Arduino IDE 2 provides the Remote Sketches feature which allows you to store your sketches in the Arduino secure Cloud and retrieve them easily on any other workstation.

  • Code from your browser: If you want to work on a computer that doesn’t have the Arduino IDE installed, just open the Arduino Web Editor: you’ll get an online IDE with all your sketches just there, plus all the libraries.

  • Backup your code: Your sketches are too important to risk losing them! And life is too short to make copies manually. With Remote Sketches you only need one click and they will be saved in the Arduino secure Cloud.

  • No connection? Work offline, sync later: You don’t need to be always online to work on your remotely stored sketches: you work on a local copy, then as soon as you get back online you click on “Push” and your changes will be uploaded.

  • Share and publish your code: If you want to show your code to someone else, or provide a link that is always up-to-date, just turn the sharing settings from “Private” to “Public” and you’ll get a public link. Do you want to embed the sketch in an external website with nice syntax coloring? Just use our JavaScript widget.

Security & Privacy

Security is our priority. The Arduino Cloud infrastructure is based on multiple security layers:

  • Your sketches are stored in encrypted datastore (AES 256 bit).
  • Data transfer between IDE and Arduino is protected by a SSL/TLS layer, and authenticated using secure tokens.
  • The Arduino infrastructure is tested regularly to identify vulnerabilities and bugs.
  • Two-factor authentication is available to protect your account in case you leak your credentials.
  • Your sketches are configured as “Private” by default: you decide what you want to share with other people.

Pricing

This feature is provided free of charge! You can use it without any restrictions. The limitations of your Arduino Cloud plan apply.

Overview

In a nutshell, the steps required to make this integration are the following:

  • Create an Arduino Sketch in the Arduino Cloud.
  • Authenticate your local editor with your Arduino account.
  • Pull a Sketch you want to edit.
  • When you have finished editing, push it back to the Cloud.

Requirements

Understanding the Remote Sketchbook Concept

The Arduino development experience is centered around the use of Sketches. The concept of a Sketchbook is known to anyone who has used Arduino, and it is basically a storage space for all of your projects.

Up until now, there have been two ways of storing Sketches:

A) You have an offline editor, and then you have a local Sketchbook, which can for example be located in your C:\User\Documents folder.

The classic local Sketchbook.
The classic local Sketchbook.

B) You are using the Arduino Cloud platform, where Sketches are stored in the Cloud and not on your computer. When Sketches are edited they get automatically saved in the Cloud, which is not only a great way of keeping track of your Sketches, it is also a more secure option.

The online Sketchbook.
The online Sketchbook.

But, with the latest integration of Arduino Cloud in the Arduino IDE 2, we are now able to synchronize our Sketches between the online and offline applications. This is made possible through a quick and easy authentication process that can be completed within a minute!

The new IDE 2 and Arduino Cloud integration.
The new IDE 2 and Arduino Cloud integration.

But without further ado, let's take a look at how to start using this incredible feature.

Create an Arduino Account

In order for this integration to work, we will first need to create an Arduino account.

If you already have an Arduino account, you will only need to login.

Once we have created an account, we need to navigate to the Cloud Editor.

Create a Sketch in the Arduino Cloud

The next step is to create a Sketch. To do so, we need to click the "New Sketch" button at the top left corner. Let's name it something unique, in this case, it was

cloud_sync_sketch
.

If you already have sketches in you Cloud Sketchbook, you can skip this step.

Creating a Sketch.
Creating a Sketch.

Now, let's write a quick program. It is not important what you create, but that we keep track on the changes we make. Feel free to use the example below:

1/* This Sketch was created in the Online Editor */
2
3int LED = 2;
4
5void setup() {
6 pinMode(LED, OUTPUT);
7}
8
9void loop() {
10 digitalWrite(LED, HIGH);
11 delay(1000);
12 digitalWrite(LED, LOW);
13 delay(1000);
14}

Enabling the Remote Sketchbook

After we have created a Sketch in the Arduino Cloud, we can move on to authenticating the Cloud and the IDE 2. To continue, you need to have installed the Arduino IDE 2.

You can download the IDE 2 from the software page. If you need help installing it, you can visit this installation guide.

1. Open the Arduino IDE 2, and click on the folder at the top left corner. This is your Sketchbook.

Open the Sketchbook.
Open the Sketchbook.

2. You will now see all of your local Sketches. At the top of the list, click on the "Remote Sketchbook" symbol (the one that looks like a globe).

Click on the "Remote Sketchbook" symbol.
Click on the "Remote Sketchbook" symbol.

3. Click on the "Sign In" button to proceed.

Click on the Sign in button.
Click on the Sign in button.

4. This will ask you to authorize your Arduino account with your desktop app. Click on "Accept".

Authorization window.
Authorization window.

Once you click on it, you should get a message in the browser that looks like the following image:

Successful authorization.
Successful authorization.

Congratulations, you have now synced your Arduino account with your local Arduino IDE 2, and your Sketches should now be available under the Remote Sketchbook tab.

Pulling, Editing and Pushing

Now, let's test out the feature, by locating the Sketch we created in the Arduino Cloud. Remember that we named it

cloud_sync_sketch
? It should now appear in the list of Sketches. Notice also that your Sketches are all greyed out. The way it works is that before we can start working on Sketches, we need to pull them. This is done by hovering a Sketch, and clicking the little cloud icon that's located next to it.

Pulling a Sketch.
Pulling a Sketch.

When we have pulled a Sketch, we can edit it by double clicking on the Sketch. It is easy to see when it has finished pulling it, because it will not be greyed out anymore. This will open a new window, and we can start editing it.

Double click to open Sketch.
Double click to open Sketch.

Now, let's make some edits to the Sketch, to test if the syncing works. In our example, we changed the value of the

delay()
from
1000
to
500
, and added a comment next to it.

1/*
2This Sketch was created in the Online Editor
3*/
4
5int LED = 2;
6
7void setup() {
8 pinMode(LED, OUTPUT);
9}
10
11void loop() {
12 digitalWrite(LED, HIGH);
13 delay(500); //changed the delay to 500
14 digitalWrite(LED, LOW);
15 delay(500); //changed the delay to 500
16}

When we are finished editing, we need to push it back to the Arduino Cloud. This is done by clicking the cloud with an arrow pointing up icon.

Click on the Cloud icon.
Click on the Cloud icon.

This will open up a modal window, asking for confirmation. Click on "Push".

Push the changes.
Push the changes.

You have now pushed your changes to the Cloud. You can easily check if it has been successful by refreshing the online Sketchbook (at Arduino Cloud). The changes should now be visible.

Changes visible in the Cloud.
Changes visible in the Cloud.

New Cloud Sketches

With the IDE 2.1 and newer, you can also create new Cloud sketches, directly from the offline IDE. When you are in the Cloud sketchbook, at the bottom of the window there's a button to create a fresh sketch.

Create a New Cloud Sketch
Create a New Cloud Sketch

Disabling the Remote Sketchbook

If you do not want to use the Remote Sketchbook feature, you can simply disable it in the editor. Navigate to File > Advanced > Show/Hide Remote Sketchbook to disable it. If you want to enable it again, simply click the same option!

Disabling the Remote Sketchbook feature.
Disabling the Remote Sketchbook feature.

Wrapping Up

The integration of the Remote Sketchbook in the IDE 2 is an important milestone. It gives us great control of our Sketchbooks, and makes it really easy to move across computers and editors.

Next Steps

You can find more tutorials in the Arduino IDE 2 documentation page.

FAQ

Can I work offline and sync afterwards?

Yes, you can work on your local copy. As soon as you get back online you click on “Push” and your changes will be uploaded. Please note that the Sketch has to be pulled from the remote prior to going offline.

What happens if I change a sketch on multiple workstations simultaneously?

The last device to push the changes will overwrite the other devices' changes in this scenario.

Suggest changes

The content on docs.arduino.cc is facilitated through a public GitHub repository. If you see anything wrong, you can edit this page here.

License

The Arduino documentation is licensed under the Creative Commons Attribution-Share Alike 4.0 license.