commit
9c9ce50b03
13 changed files with 552 additions and 1 deletions
|
|
@ -84,6 +84,7 @@ export const SIDEBAR: Sidebar = {
|
|||
{ text: 'Music metadata', link: 'learn/metadata' },
|
||||
{ text: 'CSound', link: 'learn/csound' },
|
||||
{ text: 'Hydra', link: 'learn/hydra' },
|
||||
{ text: 'Input Devices', link: 'learn/input-devices' },
|
||||
{ text: 'Device Motion', link: 'learn/devicemotion' },
|
||||
],
|
||||
'Pattern Functions': [
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@ layout: ../../layouts/MainLayout.astro
|
|||
|
||||
import { MiniRepl } from '../../docs/MiniRepl';
|
||||
import { JsDoc } from '../../docs/JsDoc';
|
||||
import DeviceMotion from '../../../../packages/motion/docs/devicemotion.mdx';
|
||||
import DeviceMotion from '@strudel/motion/docs/devicemotion.mdx';
|
||||
|
||||
<DeviceMotion />
|
||||
|
|
|
|||
15
website/src/pages/learn/input-devices.mdx
Normal file
15
website/src/pages/learn/input-devices.mdx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
title: Input Devices
|
||||
layout: ../../layouts/MainLayout.astro
|
||||
---
|
||||
|
||||
import { MiniRepl } from '../../docs/MiniRepl';
|
||||
import { JsDoc } from '../../docs/JsDoc';
|
||||
|
||||
import Gamepad from '@strudel/gamepad/docs/gamepad.mdx';
|
||||
|
||||
# Input Devices
|
||||
|
||||
Strudel supports various input devices like Gamepads and MIDI controllers to manipulate patterns in real-time.
|
||||
|
||||
<Gamepad />
|
||||
|
|
@ -81,6 +81,7 @@ export function loadModules() {
|
|||
import('@strudel/soundfonts'),
|
||||
import('@strudel/csound'),
|
||||
import('@strudel/tidal'),
|
||||
import('@strudel/gamepad'),
|
||||
import('@strudel/motion'),
|
||||
import('@strudel/mqtt'),
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue