Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
Fix outdated URLS.

Signed-off-by: Winford <winford@object.stream>
  • Loading branch information
UncleGrumpy committed Oct 30, 2023
1 parent e26088f commit e490cbd
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion demos/morse_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Your ESP can be reached with a web browser on port 8080 by its IP address or DHC

"http://192.168.0.32:8080" or "http://atomvm-240ac458d278:8080"

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

## Supported Platforms

Expand Down
2 changes: 1 addition & 1 deletion elixir/Blinky/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ To run this example, depending on how bright you want your led, connect a 220 oh
> Pico-W Note. To use the onboard LED on a `picow` edit lib/Blinky.ex and comment out the current `@pin` definition (change to: `# @pin 2`), and uncomment the definition for the picow onboard LED `@pin` definition: `@pin {:wl, 0}`.
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Elixir AtomVM example programs, see the Elixir example program [README](../README.md).
2 changes: 1 addition & 1 deletion elixir/HelloWorld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `HelloWorld` AtomVM application.

The `HelloWorld` AtomVM application prints "Hello World" to the console and then terminates.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Elixir AtomVM example programs, see the Elixir example program [README](../README.md).
2 changes: 1 addition & 1 deletion elixir/LEDC_Example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ The `LEDC_Example` AtomVM application illustrates use of the AtomVM `LEDC` inter
LEDs are wired to GPIO pins 4, 5, 18, and 19 and should use a resistor (minimum 100 Ohm up to 1K, 220 Ohm is a good choice). Change the number
for the GPIO pins in the example if necessary. See the Blinky example for wiring if you are unsure.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/arepl_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Welcome to the `arepl_example` AtomVM application.

The `arepl_example` AtomVM application demonstrates the use of the `arepl` LISP interpreter.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

## Build and Run Instructions

Expand Down
2 changes: 1 addition & 1 deletion erlang/blinky/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ To run this example, depending on how bright you want your led, connect a 220 oh
> Pico W Note. To use the onboard LED on a `picow` edit src/blinky.erl and comment out the current `PIN` definition (change to: `% -define(PIN, 2).`), and uncomment the definition for the `picow` onboard LED definition: `-define(PIN, {wl, 0}).`
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/deep_sleep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `deep_sleep` AtomVM application.

The `deep_sleep` AtomVM application will put the ESP32 device into low-power deep sleep for 10 seconds, wake up, and report the reset reason. In most cases this will be `esp_rst_deepsleep`, but the initial reset reason will be `esp_rst_poweron`, or if you reset the device manually during sleep.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/esp_nvs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `esp_nvs` AtomVM application.

The `esp_nvs` AtomVM application uses the ESP non-volatile storage to record the number of times the device has restarted. If the NVS storage has not been set for this application, it will be intialized with a count of 0. The device will then sleep for 10 seconds, and restart. After each restart, the number of restarts is incremented and stored in non-volatile storage.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/gpio_interrupt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ This application will wait in a loop for interrupt signals when GPIO pin 2 is ri
Waiting for interrupt ... Interrupt on pin 2
Waiting for interrupt ...

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/hello_world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `hello_world` AtomVM application.

The `hello_world` AtomVM application prints "Hello World" to the console and then terminates.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/i2c_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `i2c_example` AtomVM application.

The `i2c_example` AtomVM application demonstrates use of the `i2c` interface using the popular SHT3x temperature sensor.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/ledc_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `ledc_example` AtomVM application.

The `ledc_example` AtomVM application illustrates use of the AtomVM `ledc` interface.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/read_priv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ For this test, note the presence of the `favicon-32x32.png` in the `priv` direct

<<-119,80,78,71,13,10,26,10,0,0,0,...>>

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/spi_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `spi_example` AtomVM application.

The `spi_example` AtomVM application demonstrates use of the `spi` interface with the popular Smetech SX127x LoRa modem.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/system_info/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For example, on the ESP32 platform, this program will output the following infor
PlatformInfo: #{esp32_chip_info => {esp32,50,2,1},esp32_free_heap_size => 245816,esp32_largest_free_block => 116104,esp32_minimum_free_size => 242136,esp_idf_version => "v3.3.4-dirty"}
ProcessInfo: [{<0.1.0>,[{heap_size,457},{stack_size,12},{message_queue_len,0},{memory,512}]}]

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

## Supported Platforms

Expand Down
2 changes: 1 addition & 1 deletion erlang/tcp_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If the TCP server is running on a separate host from the client application, you

You can use the `tcp_server` example program to listen for TCP packets from your running application. Alternatively, you can use a program such as the [netcat](https://en.wikipedia.org/wiki/Netcat) utility to receive TCP packets from the command line.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

Expand Down
2 changes: 1 addition & 1 deletion erlang/tcp_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For example:

You can use the `tcp_client` example program to send TCP/IP packets to your running application. Alternatively, you can use a program such as the [netcat](https://en.wikipedia.org/wiki/Netcat) utility to send TCP packets from the command line.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

Expand Down
2 changes: 1 addition & 1 deletion erlang/uart_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Welcome to the `uart_example` AtomVM application.

The `uart_example` AtomVM application demonstrates use of the `uart` interface.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).
2 changes: 1 addition & 1 deletion erlang/udp_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If the UDP server is running on a separate host from the client application, you

You can use the `udp_server` example program to listen for UDP packets from your running application. Alternatively, you can use a program such as the [netcat](https://en.wikipedia.org/wiki/Netcat) utility to receive UDP packets from the command line.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

Expand Down
2 changes: 1 addition & 1 deletion erlang/udp_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For example:

You can use the `udp_client` example program to send UDP packets to your running application. Alternatively, you can use a program such as the [netcat](https://en.wikipedia.org/wiki/Netcat) utility to send UDP packets from the command line.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

Expand Down
2 changes: 1 addition & 1 deletion erlang/wifi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Welcome to the `wifi` AtomVM application.

The `wifi` AtomVM application demonstrates how to configure an ESP32 device for both Station (STA) and Access Point (AP) modes, allowing an ESP32 device to join an existing WiFi network or to serve as a WiFi access point for other devices.

For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://doc.atomvm.net/programmers-guide.html).
For more information about programming on the AtomVM platform, see the [AtomVM Programmers Guide](https://www.atomvm.net/doc/master/programmers-guide.html).

For general information about building and executing Erlang AtomVM example programs, see the Erlang example program [README](../README.md).

Expand Down

0 comments on commit e490cbd

Please sign in to comment.