-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: Deleted ansible files * refactor: Added Code of conduct file * refactor: Updated Contributing * refactor: Added bash scripts to setup rpi * Updated README related to bash setup * refactor : Updated & renamed RPI installation file * typo * docs : updated README * Updated README * Added credentials.json to gitignore * feat: Removed useless install * docs : Added exemple config file for cameras * feat: Added script to setup cameras * docs: Added tutorial steps to setupcameras * chore: Added requirement.txt * typo * Error : Deleted unsed file * missing -r * missing blank line --------- Co-authored-by: MateoLostanlen <[email protected]>
- Loading branch information
1 parent
f254830
commit 54312bf
Showing
5 changed files
with
460 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
- Download [Reolink app](https://reolink.com/software-and-manual/) | ||
- Start you reolink client, you are supposed to see your cameras (that usually take a few minutes to connect after plugging them in) | ||
- Then for each camera : | ||
- Click on “Uninitialized device” | ||
- You will be asked to define a user & pwd : report information you have chosen in .env previously | ||
- To find the ip adresse of the camera | ||
- Access settings clicking the wheel near cameras name | ||
- Click then on "Network", then "network information" | ||
- You will be able to read the ip address of the camera. Report it in `cameras_config.json` | ||
- You are done with the Reolink app | ||
|
||
- Complete `cameras_config.json` | ||
For each cameras, complete values associed to its ip address. | ||
``` | ||
{ | ||
"type": "static", --> either "ptz" if it is a ptz camera, or "static" | ||
"LocalLink": { | ||
"type": "Static", --> let this value as default | ||
"static": { | ||
"ip": "169.254.40.1", --> advice to start with 169.254.40. and complete with 1 to N (N the number of cameras) | ||
"mask": "255.255.0.0", --> let this value as default | ||
"gateway": "169.254.1.1" --> let this value as default | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"192.168.1.39": { | ||
"type": "static", | ||
"LocalLink": { | ||
"type": "Static", | ||
"static": { | ||
"ip": "169.254.40.1", | ||
"mask": "255.255.0.0", | ||
"gateway": "169.254.1.1" | ||
} | ||
} | ||
}, | ||
"192.168.1.137": { | ||
"type": "static", | ||
"LocalLink": { | ||
"type": "Static", | ||
"static": { | ||
"ip": "169.254.40.2", | ||
"mask": "255.255.0.0", | ||
"gateway": "169.254.1.1" | ||
} | ||
} | ||
}, | ||
"192.168.1.167": { | ||
"type": "ptz", | ||
"LocalLink": { | ||
"type": "Static", | ||
"static": { | ||
"ip": "169.254.40.2", | ||
"mask": "255.255.0.0", | ||
"gateway": "169.254.1.1" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
requests | ||
urllib3 | ||
python-dotenv |
Oops, something went wrong.