You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/arduino-cloud/04.cloud-editor/embedding-create-iframes/embedding-create-iframes.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ description: 'Learn about different methods when embedding your sketches in a we
4
4
author: 'Karl Söderby'
5
5
---
6
6
7
-
The Cloud Editor is a great tool for creating and uploading programs while also collecting all of your sketches in one place. Another great feature is embedding them as iframes, such as articles, blogposts or journals.
7
+
The Web Editor is a great tool for creating and uploading programs while also collecting all of your sketches in one place. Another great feature is embedding them as iframes, such as articles, blogposts or journals.
8
8
9
-
To embed an iframe is very easy, and we just need to copy and paste a link from our sketch in the Cloud Editor. But we can also do a series of modifications to that iframe, and in this tutorial we will take a look at how to do that.
9
+
To embed an iframe is very easy, and we just need to copy and paste a link from our sketch in the Web Editor. But we can also do a series of modifications to that iframe, and in this tutorial we will take a look at how to do that.
10
10
11
11
## Let's start
12
12
13
-
First of all, we need to navigate to the [Cloud Editor](https://create.arduino.cc/editor). If we do not have an account, we can register one with just a few simple steps.
13
+
First of all, we need to navigate to the [Web Editor](https://create.arduino.cc/editor). If we do not have an account, we can register one with just a few simple steps.
14
14
15
15
Then, we need to have a code. In this tutorial, we are just going to use the good old **blink** example. When we have our sketch ready, click on the **share** button next to the port selection tool. This will open up a new window, that will have two fields: **link** and **iframe**. Copy the iframe field.
16
16
@@ -104,9 +104,9 @@ And then using the class `arduino-sketch-iframe` in your HTML element.
104
104
105
105
## Summary
106
106
107
-
There are several cool ways of working with iframes from the Cloud Editor, and it is a really easy process that requires very little coding.
107
+
There are several cool ways of working with iframes from the Web Editor, and it is a really easy process that requires very little coding.
108
108
109
-
The Cloud Editor helps you keep track on all of your sketches, and with the iframes, including your projects on other pages has never been easier.
109
+
The Web Editor helps you keep track on all of your sketches, and with the iframes, including your projects on other pages has never been easier.
Copy file name to clipboardExpand all lines: content/arduino-cloud/04.cloud-editor/import-your-sketchbook-and-libraries-to-the-web-editor/import-your-sketchbook-and-libraries-to-the-web-editor.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,25 @@
1
1
---
2
-
title: 'Importing files to the Cloud Editor'
3
-
description: 'Learn how to import your local sketchbook and custom libraries to the Cloud Editor.'
2
+
title: 'Importing files to the Web Editor'
3
+
description: 'Learn how to import your local sketchbook and custom libraries to the Web Editor.'
4
4
---
5
5
6
-
## Import Your Sketchbook and Libraries to the Cloud Editor
6
+
## Import Your Sketchbook and Libraries to the Web Editor
7
7
8
-
Are you sticking to the desktop Arduino IDE because all your work is saved locally? That’s no longer a problem! Our brand new import tool enables you to upload your entire sketchbook with just a few clicks on the [Arduino Cloud Editor](https://create.arduino.cc/editor). It is particularly handy because it lets you **move all your sketches and libraries to the Cloud** in a single flow.
8
+
Are you sticking to the desktop Arduino IDE because all your work is saved locally? That’s no longer a problem! Our brand new import tool enables you to upload your entire sketchbook with just a few clicks on the [Arduino Web Editor](https://create.arduino.cc/editor). It is particularly handy because it lets you **move all your sketches and libraries to the Cloud** in a single flow.
9
9
10
10
Once your sketchbook is online it will be available on any device and backed up.
What can you import to the [Cloud Editor](https://create.arduino.cc/editor)?
14
+
What can you import to the [Web Editor](https://create.arduino.cc/editor)?
15
15
16
16
* Single sketches in `.ino`, `.pde` and `.zip` format.
17
17
18
18
* Libraries in `.zip` format.
19
19
20
20
* Zipped folders containing sketches and libraries. Make sure your libraries are in a folder called `‘libraries’`. Be sure not to mix sketches and libraries in the same folder.
21
21
22
-
But let’s import your whole sketchbook in a few clicks, so you will be all set up to start using the Arduino Cloud Editor.
22
+
But let’s import your whole sketchbook in a few clicks, so you will be all set up to start using the Arduino Web Editor.
23
23
24
24
25
25
### 1. Find your sketchbook
@@ -36,7 +36,7 @@ Make a `.zip` pack of your sketchbook, you should obtain a file called *Arduino.
36
36
37
37
### 3. Import your sketchbook to the Cloud
38
38
39
-
Go to [create.arduino.cc/editor](https://create.arduino.cc/editor). For some general information on how to get started on the Cloud Editor see [this tutorial](https://create.arduino.cc/projecthub/Arduino_Genuino/getting-started-with-arduino-web-editor-4b3e4a?ref=platform&ref_id=424_trending___&offset=0). When you are logged in and ready, hit the import button on the sketchbook panel. A popup with some instructions on how to import files into the Cloud Editor will be displayed. Press `“Import”` to continue.
39
+
Go to [create.arduino.cc/editor](https://create.arduino.cc/editor). For some general information on how to get started on the Web Editor see [this tutorial](https://create.arduino.cc/projecthub/Arduino_Genuino/getting-started-with-arduino-web-editor-4b3e4a?ref=platform&ref_id=424_trending___&offset=0). When you are logged in and ready, hit the import button on the sketchbook panel. A popup with some instructions on how to import files into the Web Editor will be displayed. Press `“Import”` to continue.
Please note that **all the libraries that you have added via the Library Manager on the desktop IDE will be already available on the Cloud Editor without having to do anything**. If you want to see their related examples or select a specific version, look for them on the online Library Manager.
81
+
Please note that **all the libraries that you have added via the Library Manager on the desktop IDE will be already available on the Web Editor without having to do anything**. If you want to see their related examples or select a specific version, look for them on the online Library Manager.
82
82
83
83
More info on the online Library Manager [on this tutorial](https://create.arduino.cc/projecthub/Arduino_Genuino/getting-started-with-arduino-web-editor-4b3e4a?ref=platform&ref_id=424_trending___&offset=0#toc-libraries-and-the-arduino-web-editor).
Copy file name to clipboardExpand all lines: content/arduino-cloud/04.cloud-editor/share-your-sketches/share-your-sketches.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,23 @@
1
1
---
2
-
title: 'Share Your Sketches on the Arduino Cloud Editor'
2
+
title: 'Share Your Sketches on the Arduino Web Editor'
3
3
description: 'Learn about different methods you can use to share your Arduino sketches with others.'
4
4
---
5
5
6
-
## Share Your Sketches on the Arduino Cloud Editor
6
+
## Share Your Sketches on the Arduino Web Editor
7
7
8
-
The [Arduino Cloud Editor](https://create.arduino.cc/editor) is the online IDE developed by the Arduino team, this web app is part of the [Arduino Cloud platform](https://cloud.arduino.cc/home/). If you are new to it you can learn all about it on this [Getting Started tutorial](/arduino-cloud/getting-started/getting-started-web-editor).
8
+
The [Arduino Web Editor](https://create.arduino.cc/editor) is the online IDE developed by the Arduino team, this web app is part of the [Arduino Cloud platform](https://cloud.arduino.cc/home/). If you are new to it you can learn all about it on this [Getting Started tutorial](/arduino-cloud/getting-started/getting-started-web-editor).
9
9
10
-
The Arduino sketch is the unit that can include everything you need to bring an idea to life. With the **Share feature** of the Cloud Editor you can simply give someone access to your sketches just by sending them a URL, or by embedding the sketch into a webpage or in a Project Hub tutorial.
10
+
The Arduino sketch is the unit that can include everything you need to bring an idea to life. With the **Share feature** of the Web Editor you can simply give someone access to your sketches just by sending them a URL, or by embedding the sketch into a webpage or in a Project Hub tutorial.
11
11
12
12
When someone [shares a sketch with you](https://create.arduino.cc/editor/Arduino_Genuino/a5cf7fad-0802-49b6-81ce-2a5bf41bed5d/preview), you’ll have access both to the code, the layout for the electronics, and the full tutorial (when available). This will allow you to have all the necessary information to build on top of the original project, making it your own. Keep on reading and discover how to do it!
13
13
14
14
## How to Share Your Sketch
15
15
16
16
* If you don’t have one yet, create your brand new Arduino account [here](https://id.arduino.cc/auth/signup).
17
17
18
-
* Log in to Arduino Cloud Editor [here](https://create.arduino.cc/editor/).
18
+
* Log in on Arduino the Web Editor [here](https://create.arduino.cc/editor/).
19
19
20
-
* Once you are successfully logged in the Cloud Editor, hit the ‘New Sketch’ button and code on
20
+
* Once you are successfully logged in the Web Editor, hit the ‘New Sketch’ button and code on
21
21
22
22
* When done with writing your sketch, click the **‘Share’** button on the toolbar in the editor area. Press **'Copy Link'** and you can now share your Arduino code with the rest of the world!
23
23
@@ -34,22 +34,22 @@ Embed your sketch and share it on Project Hub is super easy! Simply create a new
Once you are done with the Story and the previous fields go to the Software tab. In the ‘Code’ section, click on **‘Link to the Arduino Cloud Editor’** or **‘Link Existing Repository’**.
37
+
Once you are done with the Story and the previous fields go to the Software tab. In the ‘Code’ section, click on **‘Link to the Arduino Web Editor’** or **‘Link Existing Repository’**.
Give your sketch a title, add some comments and finally copy here the sketch public URL you got previously on the Cloud Editor. That’s it! Your sketch is now available here and it will always be up-to-date with your latest edits. It will look like this on your tutorial page:
42
+
Give your sketch a title, add some comments and finally copy here the sketch public URL you got previously on the Web Editor. That’s it! Your sketch is now available here and it will always be up-to-date with your latest edits. It will look like this on your tutorial page:
In the [Arduino Cloud Editor](https://create.arduino.cc/editor) hit the **‘Share’** button, a popup window will be displayed. Click **‘Copy link’** to copy your sketch’s public URL on your clipboard. When you paste this URL in a new tab of your browser you will see a preview of your sketch. You won't even need to be logged in with an Arduino account, so anybody can access it.
50
+
In the [Arduino Web Editor](https://create.arduino.cc/editor) hit the **‘Share’** button, a popup window will be displayed. Click **‘Copy link’** to copy your sketch’s public URL on your clipboard. When you paste this URL in a new tab of your browser you will see a preview of your sketch. You won't even need to be logged in with an Arduino account, so anybody can access it.
51
51
52
-
The people you shared you sketch with can now download it or add it to their sketchbook (after having signed up to the Arduino Cloud Editor of course). If you have embedded [your sketch](https://create.arduino.cc/editor/Arduino_Genuino/a5cf7fad-0802-49b6-81ce-2a5bf41bed5d/preview) in a Project Hub tutorial you will see the ‘Open Tutorial’ button displayed to this page as well.
52
+
The people you shared you sketch with can now download it or add it to their sketchbook (after having signed up to the Arduino Web Editor of course). If you have embedded [your sketch](https://create.arduino.cc/editor/Arduino_Genuino/a5cf7fad-0802-49b6-81ce-2a5bf41bed5d/preview) in a Project Hub tutorial you will see the ‘Open Tutorial’ button displayed to this page as well.
53
53
54
54
When you share a sketch with all these supporting contents (layout, schematics, tutorial...) with a friend, a colleague or in your classroom, they will have everything needed to build up from your idea and make it their own!
55
55
@@ -63,7 +63,7 @@ In the same Share popup window you can also copy your project’s related iFrame
63
63
64
64
## Always Up-To-Date!
65
65
66
-
Now your code is ready to be shared across a variety of platforms! Do you know what’s cool about this feature? Now that your sketch is on the Cloud (literally!) once edited on the Cloud Editor, it will be also updated across all the places where you have embedded it!
66
+
Now your code is ready to be shared across a variety of platforms! Do you know what’s cool about this feature? Now that your sketch is on the Cloud (literally!) once edited on the Web Editor, it will be also updated across all the places where you have embedded it!
Copy file name to clipboardExpand all lines: content/hardware/02.hero/boards/uno-r4-wifi/datasheet/datasheet.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -357,11 +357,11 @@ For powering e.g. servo motors, always use an external power supply.
357
357
358
358
If you want to program your UNO R4 WiFi while offline you need to install the Arduino® Desktop IDE **[1]**. To connect the UNO R4 WiFi to your computer, you will need a Type-C® USB cable, which can also provide power to the board, as indicated by the LED (DL1).
359
359
360
-
### Getting Started - Arduino Cloud Editor
360
+
### Getting Started - Arduino Web Editor
361
361
362
-
All Arduino boards, including this one, work out-of-the-box on the Arduino® Cloud Editor **[2]**, by just installing a simple plugin.
362
+
All Arduino boards, including this one, work out-of-the-box on the Arduino® Web Editor **[2]**, by just installing a simple plugin.
363
363
364
-
The Arduino Cloud Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards. Follow **[3]** to start coding on the browser and upload your sketches onto your board.
364
+
The Arduino Web Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards. Follow **[3]** to start coding on the browser and upload your sketches onto your board.
Copy file name to clipboardExpand all lines: content/hardware/03.nano/boards/nano-matter/datasheets/datasheet.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,7 @@ A detailed figure below illustrates the power options available on the Nano Matt
170
170
171
171
If you want to program your Nano Matter offline, install the Arduino Desktop IDE **[1]**. To connect the Nano Matter to your computer, you will need a USB-C® cable.
172
172
173
-
### Getting Started - Arduino Cloud Editor
173
+
### Getting Started - Arduino Web Editor
174
174
175
175
All Arduino devices work out of the box on the Arduino CLoud Editor **[2]** by installing a simple plugin. The Arduino Cloud Editor is hosted online. Therefore, it will always be up-to-date with all the latest features and support for all boards and devices. Follow **[3]** to start coding on the browser and upload your sketches onto your device.
Copy file name to clipboardExpand all lines: content/hardware/04.pro/boards/portenta-c33/datasheets/datasheet.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -477,11 +477,11 @@ Figure 4 shows the power options available on the Portenta C33 and illustrates t
477
477
478
478
If you want to program your Portenta C33 while offline you need to install the Arduino® Desktop IDE **[1]**. To connect the Portenta C33 to your computer, you will need a USB-C® cable.
479
479
480
-
### Getting Started - Arduino Cloud Editor
480
+
### Getting Started - Arduino Web Editor
481
481
482
-
All Arduino® devices work out-of-the-box on the Arduino® Cloud Editor **[2]** by just installing a simple plugin.
482
+
All Arduino® devices work out-of-the-box on the Arduino® Web Editor **[2]** by just installing a simple plugin.
483
483
484
-
The Arduino® Cloud Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards and devices. Follow **[3]** to start coding on the browser and upload your sketches onto your device.
484
+
The Arduino® Web Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards and devices. Follow **[3]** to start coding on the browser and upload your sketches onto your device.
Copy file name to clipboardExpand all lines: content/hardware/04.pro/boards/portenta-x8/datasheet/datasheet.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -414,11 +414,11 @@ Power management is mainly performed by the BD71847AMWV IC (U1).
414
414
415
415
If you want to program your Arduino® Portenta X8 while offline you need to install the Arduino® Desktop IDE **[1]** To connect the Arduino® Edge control to your computer, you’ll need a USB Type-C cable. This also provides power to the board, as indicated by the LED.
416
416
417
-
### Getting Started - Arduino Cloud Editor
417
+
### Getting Started - Arduino Web Editor
418
418
419
-
All Arduino® boards, including this one, work out-of-the-box on the Arduino® Cloud Editor **[2]**, by just installing a simple plugin.
419
+
All Arduino® boards, including this one, work out-of-the-box on the Arduino® Web Editor **[2]**, by just installing a simple plugin.
420
420
421
-
The Arduino® Cloud Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards. Follow **[3]** to start coding on the browser and upload your sketches onto your board.
421
+
The Arduino® Web Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards. Follow **[3]** to start coding on the browser and upload your sketches onto your board.
0 commit comments