From 1d1031bbb1c87bae149491e8e1533268422698f2 Mon Sep 17 00:00:00 2001 From: lia <167905060+lia-viam@users.noreply.github.com> Date: Fri, 10 Jan 2025 12:13:35 -0500 Subject: [PATCH] Remove reference to old module-example-cpp This should be replaced with a new example (see RSDK-9719) but for now we don't want a link pointing people to stuff that hasn't been updated in two years --- src/viam/examples/modules/simple/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/viam/examples/modules/simple/README.md b/src/viam/examples/modules/simple/README.md index 67a2f96bf..c6f592b2c 100644 --- a/src/viam/examples/modules/simple/README.md +++ b/src/viam/examples/modules/simple/README.md @@ -8,7 +8,7 @@ Modular resources allow you to define custom components and services and add the For more information, see the [documentation](https://docs.viam.com/registry/). For a more complex example, take a look at the [complex module example](https://github.com/viamrobotics/viam-cpp-sdk/tree/main/src/viam/examples/modules/complex), which contains multiple new APIs and custom resource models. -For a fully fleshed-out example of a C++ module that uses Github CI to upload to the Viam Registry, take a look at [module-example-cpp](https://github.com/viamrobotics/module-example-cpp). For a list of example modules in different Viam SDKs, take a look [here](https://github.com/viamrobotics/upload-module/#example-repos). +For a list of example modules in different Viam SDKs, take a look [here](https://github.com/viamrobotics/upload-module/#example-repos). ## Project structure The `main.cpp` file contains the definition of a new generic model and code to register it. It also has the optional validator function and implements reconfigure. The validator function is defined upon resource registration, and the reconfigure method is implemented on the resource class.