Compare commits

...

3 Commits

Author SHA1 Message Date
Alan Everett
a5be3d062c Set raw exposure before setting auto exposure (#2429)
On a Luma P1, autoexposure on first boot was getting overridden with the manual exposure setting. This was traced back to #1814, where the order of setting auto exposure and raw exposure was flipped. This flips it back.
2026-04-10 04:04:49 +00:00
Chris Gerth
3379a1a132 better merch (#2427) 2026-04-07 21:46:07 -05:00
Sam Freund
5f59e9ab22 bump rubik image (#2424) 2026-04-05 18:56:33 -07:00
3 changed files with 5 additions and 3 deletions

View File

@@ -10,6 +10,7 @@ concurrency:
cancel-in-progress: true
env:
# WHEN BUMPING, UPDATE RUBIK IMAGE TO POINT TO VAR INSTEAD OF BEING HARDCODED
IMAGE_VERSION: v2026.1.3
jobs:
@@ -560,7 +561,8 @@ jobs:
artifact-name: LinuxArm64
image_suffix: rubikpi3
plat_override: LINUX_QCS6490
image_url: https://github.com/PhotonVision/photon-image-modifier/releases/download/$IMAGE_VERSION/photonvision_rubikpi3.tar.xz
# CHANGE BACK TO $IMAGE_VERSION AFTER BUMPING
image_url: https://github.com/PhotonVision/photon-image-modifier/releases/download/v2026.1.4/photonvision_rubikpi3.tar.xz
minimum_free_mb: 1024
root_location: 'offset=569376768'
shrink_image: 'no'

View File

@@ -465,13 +465,13 @@ public class VisionModule {
pipelineSettings.cameraExposureRaw = 10; // reasonable default
}
settables.setExposureRaw(pipelineSettings.cameraExposureRaw);
try {
settables.setAutoExposure(pipelineSettings.cameraAutoExposure);
} catch (VideoException e) {
logger.error("Unable to set camera auto exposure!");
logger.error(e.toString());
}
settables.setExposureRaw(pipelineSettings.cameraExposureRaw);
if (cameraQuirks.hasQuirk(CameraQuirk.Gain)) {
// If the gain is disabled for some reason, re-enable it
if (pipelineSettings.cameraGain == -1) pipelineSettings.cameraGain = 75;

View File

@@ -19,7 +19,7 @@ const navLinks = [
icon: "fab fa-github",
},
{
href: "https://www.redbubble.com/people/PhotonVision/shop?asc=u",
href: "https://photonvision.printful.me/",
label: "Merch",
icon: "fa-solid fa-shirt",
},