forked from platypush/platypush
Added elevation parameter to the Adafruit send_location_data method
This commit is contained in:
parent
8846af6a94
commit
e4fce17b7b
1 changed files with 5 additions and 2 deletions
|
@ -145,7 +145,7 @@ class AdafruitIoPlugin(Plugin):
|
||||||
|
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def send_location_data(self, feed, lat, lon, value=None):
|
def send_location_data(self, feed, lat, lon, ele=None, value=None):
|
||||||
"""
|
"""
|
||||||
Send location data to an Adafruit IO feed
|
Send location data to an Adafruit IO feed
|
||||||
|
|
||||||
|
@ -158,6 +158,9 @@ class AdafruitIoPlugin(Plugin):
|
||||||
:param lon: Longitude
|
:param lon: Longitude
|
||||||
:type lon: float
|
:type lon: float
|
||||||
|
|
||||||
|
:param ele: Elevation
|
||||||
|
:type ele: float
|
||||||
|
|
||||||
:param value: (Optional) value to send
|
:param value: (Optional) value to send
|
||||||
:type value: Numeric or string
|
:type value: Numeric or string
|
||||||
|
|
||||||
|
@ -165,7 +168,7 @@ class AdafruitIoPlugin(Plugin):
|
||||||
:type enqueue: bool
|
:type enqueue: bool
|
||||||
"""
|
"""
|
||||||
|
|
||||||
self.aio.send_location_data(feed=feed, value=value, lat=lat, lon=lon)
|
self.aio.send_location_data(feed=feed, value=value, lat=lat, lon=lon, ele=ele)
|
||||||
|
|
||||||
@action
|
@action
|
||||||
def receive(self, feed):
|
def receive(self, feed):
|
||||||
|
|
Loading…
Reference in a new issue