Skip to content

Commit 96b0275

Browse files
committed
remove overview section
1 parent ccb1a5e commit 96b0275

File tree

4 files changed

+0
-91
lines changed

4 files changed

+0
-91
lines changed

content/learn/01.starting-guide/00.getting-started-arduino/getting-started-arduino.md

-53
Original file line numberDiff line numberDiff line change
@@ -11,59 +11,6 @@ But what are the cornerstones of Arduino? What is a "board", how do I write code
1111

1212
***In this guide, you will gain an overview of the Arduino Ecosystem, and a set of links leading to more detailed articles.***
1313

14-
15-
## Overview
16-
17-
This guide is divided into four main sections: **hardware**, **software tools**, **Arduino API**, and **Quick Reference**. You can navigate to each of these sections directly through the links below:
18-
19-
### Arduino Hardware
20-
21-
In this section, we will dedicate some time to learn about some fundamentals in electronics, and about the basic operation of an Arduino board.
22-
23-
- [Anatomy of an Arduino Board](#anatomy-of-an-arduino-board)
24-
- [Basic Operation](#basic-operation)
25-
- [Circuit Basics](#circuit-basics)
26-
- [Electronic Signals](#electronic-signals)
27-
- [Analog Signal](#analog-signal)
28-
- [Digital Signal](#digital-signal)
29-
- [Sensors & Actuators](#sensors--actuators)
30-
- [Serial Communication Protocols](#serial-communication-protocols)
31-
- [Memory](#memory)
32-
- [Embedded Sensors](#embedded-sensors)
33-
- [Internet of Things (IoT)](#internet-of-things-iot)
34-
35-
### Arduino API
36-
37-
In this section you will learn what the Arduino API is, and how to create code that can run on your Arduino board.
38-
39-
- [Main Parts](#main-parts)
40-
- [Program Structure](#program-structure)
41-
- [The "Sketch"](#the-sketch)
42-
- [Example Sketch](#example-sketch)
43-
- [Libraries](#libraries)
44-
- [Core Specific API](#core-specific-api)
45-
46-
### Arduino Software Tools
47-
48-
In this section you will learn how to set up your development environment as well as learning about what options there are.
49-
50-
- [A Typical Workflow](#a-typical-workflow)
51-
- [Arduino IDE 1.8.x](#arduino-ide-18x)
52-
- [Arduino IDE 2](#arduino-ide-2)
53-
- [Arduino Cloud](#arduino-iot-cloud)
54-
- [Web Editor](#web-editor)
55-
- [Library Manager](#library-manager)
56-
- [Arduino CLI](#arduino-cli)
57-
58-
### Quick Reference
59-
60-
The quick reference is an extract from the full Arduino API, containing popular functions, structures and methods.
61-
62-
- [General](#general)
63-
- [Serial Communication](#serial-communication)
64-
- [GPIO / Pin Management](#gpio--pin-management)
65-
- [Structure](#structure)
66-
6714
## Arduino Hardware
6815

6916
Over the years, Arduino has released hundreds of hardware designs in many shapes and forms.

content/learn/05.communication/01.wire/wire.md

-9
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@ difficulty: 'intermediate'
88
## Introduction
99
A good way of adding complexity of features to your projects without adding complexity of wiring, is to make use of the Inter-integrated circuit (I2C) protocol. The I2C protocol is supported on all Arduino boards. It allows you to connect several peripheral devices, such as sensors, displays, motor drivers, and so on, with only a few wires. Giving you lots of flexibility and speeding up your prototyping, without an abundancy of wires. Keep reading to learn about how it works, how it is implemented into different standards, as well as how to use the [Wire Library](#wire-library) to build your own I2C devices.
1010

11-
## Overview
12-
This section provides an overview of the topics covered in the article.
13-
14-
- [What Is I2C?](#what-is-i2c)
15-
- [Arduino I2C Pins](#arduino-i2c-pins)
16-
- [I2C Wiring](#i2c-wiring)
17-
- [Wire Library](#wire-library)
18-
- [Examples](#examples)
19-
2011
## What Is I2C?
2112
The I2C protocol involves using two lines to send and receive data: a serial clock pin **(SCL)** that the Arduino Controller board pulses at a regular interval, and a serial data pin **(SDA)** over which data is sent between the two devices.
2213

content/learn/05.communication/08.bluetooth/bluetooth.md

-13
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,6 @@ Below is a list of all supported Bluetooth® boards:
5151
- [Opta WiFi](https://store.arduino.cc/collections/opta-family/products/opta-wifi)
5252
- [GIGA R1 WiFi](https://store.arduino.cc/products/giga-r1-wifi)
5353

54-
## Overview
55-
56-
The following section provides an overview of the article. If you want to skip to one particular section simply click the respective link.
57-
58-
- [Frequency](#frequency-bands-and-range) - What frequency does Bluetooth® LE operate on?
59-
- [Range](#range) - How far does Bluetooth® LE's signal reach?
60-
- [Central / Peripheral Devices](#central--peripheral-devices) - How do you set up your device?
61-
- [Advertising / Connection Mode](#advertising--connection-mode) - What different modes are there?
62-
- [Services and Characteristics](#services-and-characteristics) - How do you advertise information?
63-
- [Bluetooth® Classic](#bluetooth-classic) - How does Bluetooth® LE compare to Bluetooth® Classic?
64-
- [ArduinoBLE Library](#arduinoble-library) - Get quick overview of the ArduinoBLE library
65-
- [Examples](#examples) - Try different examples using the ArduinoBLE library
66-
6754
***To follow along this article you need a compatible board and the [ArduinoBLE library](https://www.arduino.cc/reference/en/libraries/arduinoble/)***
6855

6956
### Harald Blåtand (Bluetooth)

content/learn/05.communication/09.uart/uart.md

-16
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,6 @@ Communication via UART is enabled by the [Serial](https://www.arduino.cc/referen
1313

1414
***If you want to jump straight to the examples click [here](#examples) or go to the end of this article.***
1515

16-
## Overview
17-
18-
- [Overview](#overview)
19-
- [Serial Class](#serial-class)
20-
- [Arduino UART Pins](#arduino-uart-pins)
21-
- [Technical Specifications](#technical-specifications)
22-
- [How UART Works](#how-uart-works)
23-
- [Timing and Synchronization](#timing-and-synchronization)
24-
- [UART Messages](#uart-messages)
25-
- [Serial USB Examples](#serial-usb-examples)
26-
- [Basic Print Example](#basic-print-example)
27-
- [Read](#read)
28-
- [RX/TX Pin Examples](#rxtx-pin-examples)
29-
- [Transmit / Receive Messages](#transmit--receive-messages)
30-
- [Control Built-in LED](#control-built-in-led)
31-
3216
## Serial Class
3317

3418
With the [Serial](https://www.arduino.cc/reference/en/language/functions/communication/serial/) class, you can send / receive data to and from your computer over USB, or to a device connected via the Arduino's RX/TX pins.

0 commit comments

Comments
 (0)