Crates.io | gopro-controller |
lib.rs | gopro-controller |
version | 0.10.5 |
source | src |
created_at | 2023-11-11 04:02:17.413678 |
updated_at | 2023-11-23 03:09:49.165503 |
description | Open source Rust Library for interacting with GoPro Cameras over BLE and WiFi |
homepage | |
repository | https://github.com/roomtin/gopro-controller |
max_upload_size | |
id | 1031848 |
size | 70,059 |
Open source Rust Library for interacting with GoPro Cameras over BLE and WiFi
GoPros are neat little devices but the only good way of interacting with them is through their mobile app which isn't extensible. This crate hopes to provide a starting point for programatically controling the cameras wirelessly, and eventually downloading media from them, with DIY friendly computers such as Raspberry Pis and other SBCs, microcontrollers etc. There are, I think, a number of use cases for controling GoPros with sensors and other devices which are not supported by the official app.
I am open to collaboration on this crate. PRs/Issues welcome.
Such nifty devices aren't inexpensive and so verifing that features that are expected to work on other models do in fact work could be a challenge. If you'd like to test any of the library features on a non Hero 11 Black model and make an issue with the results, this would be quite helpful. (Currently only the Commands are expected to work on non Hero 11 Black models.)
Note however that at the time of writing the open gopro spec supports only the following models: Hero 9 Black, Hero 10 Black, Hero 11 Black, Hero 11 Black Mini, Hero 12 Black
I don't own any other models to test with so for now all I can verify for is the Hero 11 Black. The command structure looks the same for all cameras so it should work with any camera that supports the OpenGoPro spec, however the settings vary between cameras so I can't gurantee that any particular setting will work with a different model.
Connect *(See Pairing Notes)
Commands:
Settings:
Query Camera Status And Settings:
Interpret Camera Statuses
Conect to camera's WiFi AP
Download media from camera
Control over WiFi
Stream Live preview over WiFi
#no_std support for embedded devices like esp32
More Camera Models (Particularly the Hero Black 12 since it's what's new)
Protobuf support
The BLE also seems kinda flakey on a cold start. Getting pairing to work (or even reconnecting after the GoPro has fully gone to sleep after 10 hours of inactivity) can require powering the camera off and on a few times or removing and reinserting the battery.
At the moment the library cannot pair the camera for the first time. You must pair the camera with your system by putting the camera in pairing mode (Preferences -> Wireless Connections -> Connect Device -> GoPro Quik App) and connecting in your system's bluetooth settings. Once the camera is paired, you can connect to it from this library without pairing mode.
The camera will continue to send advertising packets for 10 hours after it is turned off. During this time, reconnecting to it will cause it to wake up and resume idling in the preset it was left in.
This library is currently only tested on Linux, though it is not intended to be plaform specific.
use gopro_controller::{connect, init, scan, GoProCommand};
use std::time::Duration;
use tokio::time;
let mut central = init(None).await.unwrap();
let mut devices = scan(&mut central).await.unwrap();
devices.retain(|d| d.contains("GoPro"));
assert!(devices.len() > 0, "No GoPro devices found");
let gopro = connect(devices.first().unwrap().clone(), &mut central)
.await
.unwrap();
println!("Connected to GoPro");
time::sleep(Duration::from_secs(4)).await;
println!("Starting Shutter");
gopro
.send_command(GoProCommand::ShutterStart)
.await
.unwrap();
//Record for 3 Seconds
time::sleep(Duration::from_secs(3)).await;
println!("Stopping Shutter");
gopro.send_command(GoProCommand::ShutterStop).await.unwrap();
time::sleep(Duration::from_secs(2)).await;
println!("Powering Off");
gopro.disconnect_and_poweroff().await.unwrap();