Skip to content

Commit 894f91b

Browse files
committed
chore(deps): docusaurus 3.0
https://docusaurus.io/blog/releases/3.0
1 parent 204cacb commit 894f91b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4021
-2958
lines changed

docs/chips-api/attributes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Defines a new integer attribute with the given name. The `default_value` will be
2020

2121
The function returns a handle to the attribute, which can be accessed using `attr_read()`.
2222

23-
:::caution
23+
:::warning
2424

2525
Note: `attr_init` can only be called from `chip_init()`. Do not call it at a later time.
2626

@@ -30,7 +30,7 @@ Note: `attr_init` can only be called from `chip_init()`. Do not call it at a lat
3030

3131
Defines a new floating point attribute with the given name. See `attr_init()` for more info.
3232

33-
:::caution
33+
:::warning
3434

3535
Note: `attr_init_float` can only be called from `chip_init()`. Do not call it at a later time.
3636

docs/chips-api/framebuffer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Use the framebuffer API to implement displays (LCD, OLED, e-paper, etc.). The di
1111

1212
Returns the framebuffer for the current chip, and the pixel dimensions (width/height) of the frame buffer.
1313

14-
:::caution
14+
:::warning
1515

1616
Note: `framebuffer_init` can only be called from `chip_init()`. Do not call it at a later time.
1717

docs/chips-api/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import ChipsConsoleImage from './chips-console.png';
77

88
# Getting Started with the Wokwi Custom Chips C API
99

10-
:::caution
10+
:::warning
1111

1212
The Chips API is currently in beta. Please share your experiments and provide feedback in the `#custom-chips` channel on the [Discord chat](https://wokwi.com/discord).
1313

docs/chips-api/gpio.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Initializes the given pin, and returns a pin identifier for use with the other p
2929
- `OUTPUT_HIGH` - configures the pin as a digital output, sets the value of the pin to HIGH
3030
- `ANALOG` - configures the pin as an analog pin. See the [Analog API](analog) section for more detail.
3131

32-
:::caution
32+
:::warning
3333

3434
Note: `pin_init()` can only be called from `chip_init()`. Do not call it at a later time. You can use `pin_mode()` to change the mode of a pin at any time.
3535

docs/chips-api/i2c.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Initializes an I2C device. The `config` argument defines the pins, address, and
2424

2525
All the callbacks (`connect`, `read`, `write`, `disconnect`) are optional. They all use the `user_data` pointer as their first argument.
2626

27-
:::caution
27+
:::warning
2828

2929
Note: `i2c_init` can only be called from `chip_init()`. Do not call it at a later time.
3030

docs/chips-api/spi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Initializes an SPI device interface. The `config` argument defines the pins, mod
2222

2323
The API does not support a CS/SS pin: it is up to the user to select/deselect the SPI interface by calling `spi_start()` and `spi_stop()`.
2424

25-
:::caution
25+
:::warning
2626

2727
Note: `spi_init` can only be called from `chip_init()`. Do not call it at a later time.
2828

docs/chips-api/time.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void chip_timer_callback(void *user_data) {
3232
}
3333
```
3434
35-
:::caution
35+
:::warning
3636
3737
Note: `timer_init()` can only be called from `chip_init()`. Do not call it at a later time.
3838

docs/guides/esp32-wifi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ If your ESP32 project is an HTTP server, you can connect to it from your browser
149149

150150
You can forward a different port by running the IoT gateway with the `--forward` option, e.g. `--forward 1234:10.13.37.2:8080`. This will forward all TCP connections to port 1234 on your computer to port 8080 on the simulated ESP32.
151151

152-
:::caution
152+
:::warning
153153
Note: The Private IoT Gateway is not currently supported in Safari due to [a technical limitation](https://bugs.webkit.org/show_bug.cgi?id=171934#c96). Please use a different browser (e.g. Chrome, Firefox, Edge).
154154
:::
155155

@@ -183,7 +183,7 @@ As you can see, the PCAP file contains all sort of packets: 802.11 beacon frames
183183

184184
In most cases, you'll only want to focus on a specific protocol. You can achieve this by pressing Ctrl+/ in wireshark, and typing a protocol name (http, tcp, ip, dns, dhcp, etc.). The will filter the list and display only the relevant packets.
185185

186-
:::caution
186+
:::warning
187187
The Time field in the packet capture uses the simulation clock time. It may advance slower than wall clock time if the simulation is running slower than full speed (100%).
188188
:::
189189

docs/guides/serial-monitor.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void loop() {
2424
}
2525
```
2626

27-
:::caution
27+
:::warning
2828
The serial monitor will only show once you print some output from your program. To change this behavior, [see below](#display).
2929
:::
3030

@@ -73,7 +73,7 @@ Make sure the the pin names in your code match the ones in the diagram file. The
7373
to the `SoftwareSerial` constructor should match the pin connected to `$serialMonitor:TX`, and
7474
the second parameter should match the pin connected to `$serialMonitor:RX`.
7575
76-
:::caution
76+
:::warning
7777
The baud rate must be set to **9600**. This is hard coded in the simulator, and using a different
7878
value will get you garbage in the Serial monitor.
7979
:::

docs/parts/wokwi-dht22.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can change the temperature and humidity values while the simulation is runni
2929
Click on the DHT22 sensor and a small popup window will open. Use the temperature and
3030
humidity sliders to change the values. Click "Hide" to close the popup window.
3131

32-
:::caution
32+
:::warning
3333
If you are trying to read this sensor from the ESP32, use the "DHT sensor library for ESPx" library. Other DHT22 libraries may not work reliably on the ESP32. You can use this [example project](https://wokwi.com/projects/322410731508073042) as a starting point.
3434
:::
3535

docs/parts/wokwi-resistor.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A resistor.
77

88
<wokwi-resistor value="470"></wokwi-resistor>
99

10-
:::caution
10+
:::warning
1111
Wokwi only has a very basic analog circuit simulation. You won't be able to use resistors together with
1212
analog components (e.g. potentiometer or NTC temperature sensor). You can still use the resistors as external
1313
pull-up/pull-down resistors.

docs/vscode/debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ You can download a recent version of avr-gdb from [here](https://blog.zakkemble.
5353

5454
Start the Wokwi simulator by pressing **F1** and then selecting "**Wokwi: Start Simulator and Wait for Debugger**". The simulator will load, but the program will be paused, waiting for the debugger to connect. Then press **F5** to start the debugger.
5555

56-
:::caution
56+
:::warning
5757
You need to start Wokwi before starting the debugger. If you start the debugger first, it will fail to connect to the simulator.
5858
:::

docs/vscode/project-config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The extension of the firmware file depends on the board you are using:
3232

3333
You check test your configuration by pressing **F1** and then selecting "**Wokwi: Start Simulator**". Make sure you compile your program before starting the simulation.
3434

35-
:::caution
35+
:::warning
3636
Avoid using backslashes (`\`) in your paths. Use forward slash (`/`) instead, as it makes it possible to open your project on any platform (Windows, Mac and Linux).
3737
:::
3838

docs/wokwi-ci/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A copy of your firmware binary is uploaded to the Wokwi Cloud for every test run
1313

1414
If you do not want to upload your firmware to the cloud, please contact us to discuss options for on-premise deployment of Wokwi CI.
1515

16-
:::caution
16+
:::warning
1717
Wokwi CI is free while in beta. After the beta, we will charge based on the number of minutes your tests run on Wokwi CI. We plan to offer a free tier with a limited number of minutes per month.
1818
:::
1919

@@ -86,7 +86,7 @@ For a complete example, check out the [Example Projects](#example-projects) sect
8686
8787
You can use the `--scenario` option to load a YAML file that describes the simulation scenario. The scenario file can be used to automate the simulation, by pushing buttons, changing the state of the sensors, and checking the serial output.
8888

89-
:::caution
89+
:::warning
9090
Automation scenarios are currently in alpha. The API is not documented yet, and may change in the future. You can use the [example projects](#example-projects) below as a reference.
9191
:::
9292

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/attributes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Definiert ein Interger Attribut mit dem angegebenen Namen. Der Standardwert (`de
2020

2121
Die Funktion gibt ein Handle auf das Attribut zurück, auf das mit `attr_read()` zugegriffen werden kann.
2222

23-
:::caution
23+
:::warning
2424

2525
Info: `attr_init` kann nur von `chip_init()` aufgerufen werden. Bitte nicht zu einem späteren Zeitpunkt aufrufen.
2626

@@ -30,7 +30,7 @@ Info: `attr_init` kann nur von `chip_init()` aufgerufen werden. Bitte nicht zu e
3030

3131
Definiert einen Float mit dem angegebenen Namen. Siehe `attr_init()` für mehr Informationen.
3232

33-
:::caution
33+
:::warning
3434

3535
Info: `attr_init_float` kann nur von `chip_init()` aufgerufen werden. Bitte nicht zu einem späteren Zeitpunkt aufrufen.
3636

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/framebuffer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Die Framebuffer API wird genutzt, um Displays zu implementieren (z.B. LCD, OLED,
1111

1212
Gibt den Framebuffer für den Chip und die Maße des Displays zurück.
1313

14-
:::caution
14+
:::warning
1515

1616
Info: `framebuffer_init` kann nur von der `chip_init()` Methonde aufgerufen werden. Bitte rufe es nicht zu einem späteren Zeitpunk auf.
1717

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import ChipsConsoleImage from './chips-console.png';
77

88
# Erste Schritte mit der Wokwi Custom Chips C API
99

10-
:::caution
10+
:::warning
1111

1212
Die Chips API ist momentan in der Beta. Bitte teile deine Tests und gib im `#custom-chips` Kanal auf unserem [Discord Server](https://wokwi.com/discord) Feedback.
1313

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/gpio.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Initialisiert den angegebenen Pin und gibt den Pin Identifier, welcher für ande
2929
- `OUTPUT_HIGH` - konfiguriert den Pin als digitalen Ausgang und setzt den Wert auf `HIGH`
3030
- `ANALOG` - konfiguriert den Pin als analogen Pin. Mehr Details gibt es unter "[Analoge API](analog)".
3131

32-
:::caution
32+
:::warning
3333

3434
Info: `pin_init()` kann nur von `chip_init()` aufgerufen werden. Rufe die Methode nicht zu einem späteren Zeitpunkt auf. Du kannst jederzeit `pin_mode()` nutzen, um den Modus zu ändern.
3535

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/i2c.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Initialisiert ein I2C-Gerät. Das Argument `config` definiert die Pins, Adressen
2424

2525
Die Callbacks (`connect`, `read`, `write`, `disconnect`) sind optional. Alle Callbacks nutzen den `user_data` Pointer als erstes Argument.
2626

27-
:::caution
27+
:::warning
2828

2929
Info: `i2c_init` kann nur von `chip_init()` aufgerufen werden. Bitte rufe es nicht später auf..
3030

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/spi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Initialisiert eine SPI-Geräteschnittstelle. Das Argument `config` definiert Pin
2222

2323
Die API unterstützt keine CS/SS Pins: die SPI-Schnittstelle durch das Aufrufen von `spi_start()` und `spi_stop()` zu aktivieren/deaktivieren ist dem Nutzer selbst überlassen.
2424

25-
:::caution
25+
:::warning
2626

2727
Info: `spi_init` kann nur von `chip_init()` aufgerufen werden. Bitte nicht zu einem späteren Zeitpunkt aufrufen.
2828

i18n/de-DE/docusaurus-plugin-content-docs/current/chips-api/time.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void chip_timer_callback(void *user_data) {
3232
}
3333
```
3434
35-
:::caution
35+
:::warning
3636
3737
Info: `timer_init()` kann nur von `chip_init()` aufgerufen werden. Bitte nicht zu einem späteren Zeitpunkt aufrufen.
3838

i18n/de-DE/docusaurus-plugin-content-docs/current/getting-started/supported-hardware.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Unterstützte Hardware
44

55
Wokwi unterstützt eine Vielzahl an Hardwarekomponenten, z.B. Mikrocontroller, Sensoren, Displays und viele weitere Komponenten. Folgende Architekturen werden unterstützt: ARM, AVR, RISC-V und Xtensa.
66

7-
:::caution
7+
:::warning
88

99
Einige Bauteile wurden nicht übersetzt, da es keine gute Übersetzung gibt oder nur Teile der Beschreibung wurden übersetzt.
1010

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/attributes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Define um novo atributo inteiro com o nome fornecido. O `default_value` será us
2020

2121
A função retorna um identificador para o atributo, que pode ser acessado usando `attr_read()`.
2222

23-
:::caution AVISO
23+
:::warning AVISO
2424

2525
Nota: `attr_init` só pode ser chamado através de `chip_init()`. Não chame isso mais tarde.
2626

@@ -30,7 +30,7 @@ Nota: `attr_init` só pode ser chamado através de `chip_init()`. Não chame iss
3030

3131
Define um novo atributo de ponto flutuante com o nome fornecido. Veja `attr_init()` para mais informações.
3232

33-
:::caution AVISO
33+
:::warning AVISO
3434

3535
Nota: `attr_init_float` só pode ser chamado de `chip_init()`. Não chame isso mais tarde.
3636

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/framebuffer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Use a API Framebuffer para implementar displays (LCD, OLED, e-paper, etc.). O ta
1111

1212
Retorna o framebuffer para o chip atual e as dimensões em pixel (largura/altura) do frame buffer.
1313

14-
:::caution AVISO
14+
:::warning AVISO
1515

1616
Nota: `framebuffer_init` só pode ser chamado de `chip_init()`. Não chame isso mais tarde.
1717

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_label: Começando
55

66
# Introdução à API Wokwi Custom Chips C
77

8-
:::caution AVISO
8+
:::warning AVISO
99

1010
A API de chips está atualmente em versão beta. Por favor, compartilhe suas experiências e forneça feedback no canal `#custom-chips` no [chat do Discord](https://wokwi.com/discord).
1111

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/gpio.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Inicializa o pino fornecido e retorna um identificador de pino para uso com os o
2929
- `OUTPUT_HIGH` - configura o pino como uma saída digital, define o valor do pino para ALTO
3030
- `ANALOG` - configura o pino como um pino analógico. Consulte a seção [API analógica](analog) para obter mais detalhes.
3131

32-
:::caution AVISO
32+
:::warning AVISO
3333

3434
Nota: `pin_init()` só pode ser chamado de `chip_init()`. Não ligue mais tarde. Você pode usar `pin_mode()` para alterar o modo de um pino a qualquer momento.
3535

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/i2c.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Inicializa um dispositivo I2C. O argumento `config` define os pinos, endereço e
2424

2525
Todos os callbacks (`connect`, `read`, `write`, `disconnect`) são opcionais. Todos eles usam o ponteiro `user_data` como seu primeiro argumento.
2626

27-
:::caution AVISO
27+
:::warning AVISO
2828

2929
Nota: `i2c_init` só pode ser chamado de `chip_init()`. Não chame isso mais tarde.
3030

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/spi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Inicializa uma interface de dispositivo SPI. O argumento `config` define os pino
2222

2323
A API não suporta um pino CS/SS: cabe ao usuário selecionar/desmarcar a interface SPI chamando `spi_start()` e `spi_stop()`.
2424

25-
:::caution AVISO
25+
:::warning AVISO
2626

2727
Nota: `spi_init` só pode ser chamado de `chip_init()`. Não ligue mais tarde.
2828

i18n/pt-BR/docusaurus-plugin-content-docs/current/chips-api/time.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void chip_timer_callback(void *user_data) {
3232
}
3333
```
3434
35-
:::caution AVISO
35+
:::warning AVISO
3636
3737
Nota: `timer_init()` só pode ser chamado de `chip_init()`. Não chame isso mais tarde.
3838

i18n/pt-BR/docusaurus-plugin-content-docs/current/gdb-debugging.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ Lista de comandos GDB mais comuns para depuração de código AVR.
126126

127127
### Modificando dados
128128

129-
| Comando | Forma curta | Descrição |
130-
| ---------------------- | ------------ | --------------------------------------------------------------------- |
131-
| set i = 0 | s i=0 | Altera o valor da variável `i` para 0 |
132-
| set $pc = 0 | s $pc=0 | Salta para o início do programa |
133-
| set $r12 = 0x55 | s $r12=0x55 | Define r12 como 0x55 |
134-
| set PORTB = 0xff | s PORTB=0xff | Define o (registro de I/O) do PORTB para 0xff |
135-
| set {int}0x800200 = 50 | s … | Define um número inteiro no endereço do espaço de dados 0x200 para 50 |
129+
| Comando | Forma curta | Descrição |
130+
| ----------------------- | ------------ | --------------------------------------------------------------------- |
131+
| set i = 0 | s i=0 | Altera o valor da variável `i` para 0 |
132+
| set $pc = 0 | s $pc=0 | Salta para o início do programa |
133+
| set $r12 = 0x55 | s $r12=0x55 | Define r12 como 0x55 |
134+
| set PORTB = 0xff | s PORTB=0xff | Define o (registro de I/O) do PORTB para 0xff |
135+
| set \{int}0x800200 = 50 | s … | Define um número inteiro no endereço do espaço de dados 0x200 para 50 |
136136

137137
### Interface de usuário de texto (TUI)
138138

i18n/pt-BR/docusaurus-plugin-content-docs/current/guides/esp32-wifi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Se o seu projeto ESP32 for um servidor HTTP, você pode se conectar a ele pelo n
108108

109109
Você pode encaminhar uma porta diferente executando o gateway IoT com a opção `--forward`, por exemplo `--forward 1234:10.13.37.2:8080`. Isso encaminhará todas as conexões TCP da porta 1234 em seu computador para a porta 8080 no ESP32 simulado.
110110

111-
:::caution Aviso
111+
:::warning Aviso
112112
O gateway de IoT privado não tem suporte no momento ao Safari devido a [uma limitação técnica](https://bugs.webkit.org/show_bug.cgi?id=171934#c96). Use um navegador diferente (por exemplo, Chrome, Firefox, Edge).
113113
:::
114114

@@ -138,7 +138,7 @@ Como você pode ver, o arquivo PCAP contém todos os tipos de pacotes: quadros d
138138

139139
Na maioria dos casos, você desejará se concentrar apenas em um protocolo específico. Você pode conseguir isso pressionando Ctrl+/ no wireshark e digitando um nome de protocolo (http, tcp, ip, dns, dhcp, etc.). Isso irá filtrar a lista e exibir apenas os pacotes relevantes.
140140

141-
:::caution::atenção
141+
:::warning::atenção
142142
O campo Time na captura de pacotes usa o tempo do relógio de simulação. Pode avançar mais devagar que o relógio de parede se a simulação estiver rodando mais devagar que a velocidade máxima (100%).
143143
:::
144144

i18n/pt-BR/docusaurus-plugin-content-docs/current/guides/serial-monitor.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void loop() {
2323
}
2424
```
2525

26-
:::caution ATENÇÃO
26+
:::warning ATENÇÃO
2727
O Monitor Serial só será mostrado quando você imprimir alguma saída de seu programa. Para mudar este comportamento, [veja abaixo](#display).
2828
:::
2929

@@ -72,7 +72,7 @@ Certifique-se de que o nome dos pinos em seu código correspondam aos do arquivo
7272
O primeiro parâmetro para o construtor `SoftwareSerial` deve corresponder ao pino conectado ao `$serialMonitor:TX`, e
7373
o segundo parâmetro deve corresponder ao pino conectado ao `$serialMonitor:RX`.
7474
75-
:::caution ATENÇÃO
75+
:::warning ATENÇÃO
7676
A taxa de transmissão deve ser definida como **9600**. Isso é codificado no simulador e ao usar um valor diferente
7777
vai exibir caracteres estranhos no monitor Serial.
7878
:::

i18n/pt-BR/docusaurus-plugin-content-docs/current/parts/wokwi-dht22.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Clique no sensor DHT22 e uma pequena janela pop-up será aberta.
3030
Use os controles deslizantes de temperatura e umidade para alterar os valores.
3131
Clique em "Ocultar" para fechar a janela pop-up.
3232

33-
:::caution::ATENÇÃO
33+
:::warning::ATENÇÃO
3434
Se você estiver tentando ler este sensor do ESP32, use a biblioteca "DHT sensor library for ESPx". Outras bibliotecas DHT22 podem não funcionar de forma confiável no ESP32. Você pode usar este [projeto de exemplo](https://wokwi.com/projects/322410731508073042) como ponto de partida.
3535
:::
3636

i18n/pt-BR/docusaurus-plugin-content-docs/current/parts/wokwi-resistor.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Um resistor.
77

88
<wokwi-resistor value="470"></wokwi-resistor>
99

10-
:::caution ALERTA
10+
:::warning ALERTA
1111
Wokwi tem apenas uma simulação de circuito analógico muito básica. Você não será capaz de usar resistores junto com
1212
componentes analógicos (por exemplo, potenciômetro ou sensor de temperatura NTC). Você ainda pode usar os resistores como
1313
pull-up/pull-down externos.

i18n/pt-BR/docusaurus-plugin-content-docs/current/vscode/debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ Substitua o caminho `program` pelo caminho para o arquivo ELF do seu firmware e
4141

4242
Inicie o simulador Wokwi pressionando **F1** e selecionando a opção "**Wokwi: Start Simulator and Wait for Debugger**". O simulador será carregado, mas o programa ficará em pausa, aguardando a conexão do depurador. Em seguida, pressione **F5** para iniciar o depurador.
4343

44-
:::caution Aviso
44+
:::warning Aviso
4545
Você precisa iniciar o Wokwi antes de iniciar o depurador. Se você iniciar o depurador primeiro, ele não conseguirá se conectar ao simulador.
4646
:::

0 commit comments

Comments
 (0)