From bcf52ee1d94e87d5a2eb5d683046155968e89f2e Mon Sep 17 00:00:00 2001 From: Baku Hashimoto Date: Sat, 15 Jun 2024 02:15:54 +0900 Subject: [PATCH] Fix the sample code (reported by @iskwmsy) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 691a80d..4d2b0e6 100644 --- a/README.md +++ b/README.md @@ -59,14 +59,14 @@ async function test() { // It will display a prompt to select a USB camera const camera = await manager.requestCamera('usb') - await cam.open() + await camera.open() - cam.name + camera.name // -> 'Lumix S5' - await cam.set('shutterSpeed', '1/1000') + await camera.set('shutterSpeed', '1/1000') - const exposureModeDesc = await cam.getDesc('exposureMode') + const exposureModeDesc = await camera.getDesc('exposureMode') console.log(exposureModeDesc) /* -> { value: 'M', @@ -77,14 +77,14 @@ async function test() { } } */ - const autoFocusResult = await cam.runAutoFocus() + const autoFocusResult = await camera.runAutoFocus() // -> {status: 'ok'} if (!autoFocusResult.status !== 'ok') { console.warn('AF failed') } - const takePhotoResult = await cam.takePhoto({download: true}) + const takePhotoResult = await camera.takePhoto({download: true}) if (takePhotoResult.status === 'ok') { const url = URL.createURLObject(takePhotoResult.value[0]) @@ -92,7 +92,7 @@ async function test() { } // Get storage informations - const storages = await cam.getStorages() + const storages = await camera.getStorages() for (const storage of storages) { console.log('Storage ID= ' + storage.id) @@ -100,7 +100,7 @@ async function test() { console.log('free space in images=' + storage.freeSpaceInImages) } - await cam.close() + await camera.close() } ```