Skip to content

Commit a75f279

Browse files
committed
Update cache key
1 parent df665f4 commit a75f279

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/dev/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ result, err := myButton.DoCommand(context.Background(), command)
397397
Using the Viam Registry you can create _{{< glossary_tooltip term_id="resource" text="resources" >}}_ for additional hardware types or models and then deploy them to your machines.
398398
You can use an existing component or service type or create generic resources.
399399

400-
[Create a module →](/operate/modules/support-hardware/hello-world-module/)
400+
[Create a module →](/operate/modules/support-hardware/)
401401

402402
</div>
403403
</div>

docs/operate/modules/advanced/dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ For full examples, see [<file>ackermann.py</file>](https://github.com/mcvella/vi
179179
Most Go modules use `resource.AlwaysRebuild` within the `<module-name><resource-name>` struct, which means that the resource rebuilds every time the module is reconfigured.
180180

181181
The steps above use `resource.AlwaysRebuild`.
182-
If you need to maintain the state of your resource, see [(Optional) Create and edit a `Reconfigure` function](/operate/modules/support-hardware/#implement-the-component-api).
182+
If you need to maintain the state of your resource, see [(Optional) Create and edit a `Reconfigure` function](/operate/modules/support-hardware/#implement-api-methods).
183183

184184
{{% /alert %}}
185185

docs/operate/modules/support-hardware/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: "docs"
77
icon: true
88
images: ["/registry/create-module.svg"]
99
description: "Add support for more physical or virtual hardware to the Viam ecosystem by creating a custom module."
10-
date: "2025-10-31"
10+
date: "2025-10-30"
1111
aliases:
1212
- /registry/create/
1313
- /use-cases/create-module/
@@ -147,7 +147,7 @@ The module takes the functionality of the script and maps it to a standardized A
147147
Review the available [component APIs](/dev/reference/apis/#component-apis) and choose the one whose methods map most closely to the functionality you need.
148148

149149
If you need a method that is not in your chosen API, you can use the flexible `DoCommand` (which is built into all component APIs) to create custom commands.
150-
See [Run control logic](/docs/operate/modules/control-logic/) for more information.
150+
See [Run control logic](/operate/modules/control-logic/) for more information.
151151

152152
**Example module:** To choose the Viam [APIs](/dev/reference/apis/#component-apis) that make sense for your module, think about the functionality you want to implement.
153153
You need a way to return an image and you need a way to return a number.
@@ -1111,7 +1111,7 @@ Each time you make changes to your local module code, you need to update its ins
11111111
{{< tabs >}}
11121112
{{% tab name="Hot reloading (recommended)" %}}
11131113

1114-
Run the [reload command again](#reload) to rebuild and restart your module:
1114+
Run the reload command again to rebuild and restart your module:
11151115

11161116
{{< tabs >}}
11171117
{{% tab name="Same device" %}}

netlify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
[plugins.inputs]
5858

5959
# change this key to a new one any time you need to restart from scratch
60-
cacheKey = ["Oct172025-2"]
60+
cacheKey = ["Oct302025"]
6161
# either "warn" or "error"
6262
failBuildOnError = true
6363

0 commit comments

Comments
 (0)