HM01B0_Firmware/README.md

22 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2023-02-04 10:58:14 -05:00
# Raspberry Pi Pico + Arducam hm01b0 UVC Firmware
2023-02-04 10:55:49 -05:00
2023-02-04 10:58:14 -05:00
A very simple firmware for the arducam hm01b0 & raspberry pi pico that uses usb uvc protocol.
2023-09-16 01:30:23 -04:00
It honestly barely works, but the [tinyusb](https://github.com/hathach/tinyusb/tree/master) implementation of uvc is still a work in progress so theoretically this will get better as tinyusb's uvc develops.
2023-02-04 10:58:14 -05:00
2023-09-16 01:30:23 -04:00
One consistant way to get this to work is using [OBS Studio's](https://obsproject.com/) virtual camera, a lot of other webcam programs do not play nice with it.
Another issue is that beacuse the image exported is 150x150px, some Voip programs will not be able to detect your output so you will need to scale the output to at least 1024x1024px
2023-02-04 10:58:14 -05:00
This has only been tested on linux, although it should work anywhere that the tinyusb uvc library works.
2023-09-16 01:30:23 -04:00
Also, during testing I had this weird issue where pipewire would randomly eat up all of my ram, so I decided to keep the [shell script](./pipewire_reset.sh) in this repo for reference in case you run into the same issue.
### building
```sh
mkdir build && cd build && cmake .. && make
```
2023-02-04 10:58:14 -05:00
2023-09-16 01:30:23 -04:00
The output file is called `arducam_firmware_uvc.uf2`