31. Januar 2022 um 13:09 Autor #1 Can someone help me with a python script to get a rolling shutter position.I guess the script would need to parse the current position from the result from IP/status
31. Januar 2022 um 16:49 #2 I'm not a python coder but this works (tested with Python3) Code import requests r = requests.get(url='http://192.168.178.204/roller/0') res = r.json() print(res["current_pos"])
31. Januar 2022 um 19:06 Autor #3 Thank you! I should learn json, can you recommend a tutorial for beginners.