Skip to content

Commit

Permalink
Merge pull request #61 from monkeymademe/beta
Browse files Browse the repository at this point in the history
Merge Beta to main as relese v1.0.0
  • Loading branch information
monkeymademe authored Jul 14, 2024
2 parents cab50a8 + 668017d commit c6d9574
Show file tree
Hide file tree
Showing 13 changed files with 1,509 additions and 843 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
gallery/
.venv/*
static/camera_config/
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Picamera2 WebUI

## HOT OFF THE PRESS!

v0.1.0-beta has been setup as prerelease Please check it out and make any reports of issues. Jist is Pi5 Multicam support and better saving of config - https://github.com/monkeymademe/picamera2-WebUI/releases/tag/v0.1.0-beta

## Overview

Picamera2 WebUI is a lightweight web interface for the Raspberry Pi camera module, built on the Picamera2 Python library and using Flask. This project provides a user interface to configure camera settings, capture photos, and manage images in a basic gallery.
Expand Down Expand Up @@ -114,4 +110,4 @@ Raspberry Pi Compatibilty:
- .gitignore was missing

## Copyright and license
Code and documentation copyright 2024 the Picamera2 WebUI Lite Authors. Code released under the MIT License. Docs released under Creative Commons.
Code and documentation copyright 2024 the Picamera2 WebUI Lite Authors. Code released under the MIT License. Docs released under Creative Commons.
944 changes: 590 additions & 354 deletions app.py

Large diffs are not rendered by default.

60 changes: 0 additions & 60 deletions camera-config.json

This file was deleted.

18 changes: 18 additions & 0 deletions camera-last-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cameras": [
{
"Num": 0,
"Model": "imx219",
"Is_Pi_Cam": true,
"Has_Config": false,
"Config_Location": "default_imx219.json"
},
{
"Num": 1,
"Model": "imx708",
"Is_Pi_Cam": true,
"Has_Config": true,
"Config_Location": "Testing.json"
}
]
}
39 changes: 33 additions & 6 deletions camera-module-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"f_stop": "F2.9",
"max_exposure_time": "0.97",
"lens_mount": "N/A",
"got_noir": "Yes"
"got_noir": "Yes",
"is_pi_cam": true
},
{
"module_name": "Camera Module v2",
Expand All @@ -38,7 +39,8 @@
"f_stop": "F2.0",
"max_exposure_time": "11.76",
"lens_mount": "N/A",
"got_noir": "Yes"
"got_noir": "Yes",
"is_pi_cam": true
},
{
"module_name": "Camera Module v3",
Expand All @@ -58,7 +60,8 @@
"f_stop": "F2.2",
"max_exposure_time": "112",
"lens_mount": "N/A",
"got_noir": "Yes"
"got_noir": "Yes",
"is_pi_cam": true
},
{
"module_name": "Camera Module v3 Wide Angle",
Expand All @@ -78,7 +81,8 @@
"f_stop": "F2.2",
"max_exposure_time": "112",
"lens_mount": "N/A",
"got_noir": "Yes"
"got_noir": "Yes",
"is_pi_cam": true
},
{
"module_name": "HQ Camera",
Expand All @@ -98,7 +102,8 @@
"f_stop": "Depends on lens",
"max_exposure_time": "670.74",
"lens_mount": "C/CS- or M12-mount",
"got_noir": "No"
"got_noir": "No",
"is_pi_cam": true
},
{
"module_name": "GS Camera",
Expand All @@ -118,7 +123,29 @@
"f_stop": "Depends on lens",
"max_exposure_time": "15.5",
"lens_mount": "C/CS",
"got_noir": "No"
"got_noir": "No",
"is_pi_cam": true
},
{
"module_name": "Unknown Camera",
"sensor_model": "Unknown",
"manufacturer": "",
"megapixels": "-",
"sensor_resolution": "-",
"video_modes": "-",
"sensor_image_area": "-",
"pixel_size": "-",
"optical_size": "-",
"focus": "-",
"dof": "-",
"focal_length": "-",
"horizontal_fov": "-",
"vertical_fov": "-",
"f_stop": "-",
"max_exposure_time": "-",
"lens_mount": "-",
"got_noir": "-",
"is_pi_cam": false
}
]
}
4 changes: 4 additions & 0 deletions static/gallery/snapshot/default_preview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c6d9574

Please sign in to comment.