Added simple python script to test the Garmin (NetworkPassive) Data Source in the absence of a hardware device.

This commit is contained in:
Graham Jones
2019-01-27 09:45:54 +00:00
parent b217259ca5
commit efc8626b03
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/python
import requests
content = {"testData":"test data string"}
request = requests.post("http://192.168.0.161:8080/data", json=content)