convert all .md to .mdx

This commit is contained in:
Joel Wetzell
2026-03-28 14:59:10 -05:00
parent 694c0e505a
commit a8fc730eed
61 changed files with 0 additions and 0 deletions
@@ -0,0 +1,36 @@
---
title: Create FreeD
sidebar:
label: Create
order: 1
---
This processor will create a new FreeD message with the specified parameters.
- **type**: `free.d.create`
- **params**:
- **id**: the ID to set for the FreeD message
- **pan**: the pan value to set for the FreeD message
- **tilt**: the tilt value to set for the FreeD message
- **roll**: the roll value to set for the FreeD message
- **posX**: the X position value to set for the FreeD message
- **posY**: the Y position value to set for the FreeD message
- **posZ**: the Z position value to set for the FreeD message
- **zoom**: the zoom value to set for the FreeD message
- **focus**: the focus value to set for the FreeD message
### Example
```yaml
- type: free.d.create
params:
id: "1"
pan: "45"
tilt: "30"
roll: "0"
posX: "10"
posY: "5"
posZ: "15"
zoom: "2"
focus: "1"
```