format
format
## Expected Behavior Scan should return devices with Extended Advertising ## Current Behavior Scan shows devices with standard advertising, including scan response. Devices that have extended advertising enabled do not...
Using: picamera2 version 0.3.12 libcamera build v0.1.0+52-a858d20b Trying to flip the image with the following code: ``` picam2 = Picamera2(camera) transform = libcamera.Transform(hflip=True, vflip=True) still_config = picam2.create_still_configuration(transform=transform) picam2.configure(still_config) print(picam2.camera_configuration()) ```...
**Describe the bug** When using ```start_and_record_video()``` the ```quality``` argument is ignored when the function calls ```start_encoder()```. The function is called in picamera2.py line 1904: ``` self.start_encoder(encoder, output, quality) ``` But...