first commit

This commit is contained in:
2025-03-28 08:02:48 -07:00
commit 6dd30fb8e1
6 changed files with 101 additions and 0 deletions

12
testapi.py Normal file
View File

@@ -0,0 +1,12 @@
import requests
import json
url = r"https://carlapi.bteam.construction/orange/battery_info"
response = requests.get(url)
data = response.json()
print(data)
url = r"https://carlapi.bteam.construction/orange/mppt_info"
response = requests.get(url)
data = response.json()
print(data)