Skip to content

Commit 8cacb47

Browse files
Add Set NTP (#84)
* Add set NTP * chore: convert bool to int --------- Co-authored-by: Alano Terblanche <[email protected]>
1 parent 71f206a commit 8cacb47

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

examples/network_config.py

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ def read_config(props_path: str) -> dict:
3030
# Connect to camera
3131
cam = Camera(ip, un, pw)
3232

33+
# Set NTP
34+
cam.set_ntp(enable=True, interval=1440, port=123, server="time-b.nist.gov")
35+
3336
# Get current network settings
3437
current_settings = cam.get_network_general()
3538
print("Current settings:", current_settings)

reolinkapi/mixins/network.py

+21
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,27 @@ def set_wifi(self, ssid: str, password: str) -> Dict:
7272
}}}]
7373
return self._execute_command('SetWifi', body)
7474

75+
def set_ntp(self, enable: bool = True, interval: int = 1440, port: int = 123, server: str = "pool.ntp.org") -> Dict:
76+
"""
77+
Set NTP settings.
78+
79+
:param enable: bool
80+
:param interval: int
81+
:param port: int
82+
:param server: str
83+
:return: Dict
84+
"""
85+
body = [{"cmd": "SetNtp", "action": 0, "param": {
86+
"Ntp": {
87+
"enable": int(enable),
88+
"interval": interval,
89+
"port": port,
90+
"server": server
91+
}}}]
92+
response = self._execute_command('SetNtp', body)
93+
print("Successfully Set NTP Settings")
94+
return response
95+
7596
def get_net_ports(self) -> Dict:
7697
"""
7798
Get network ports

0 commit comments

Comments
 (0)