Added elevation parameter to the Adafruit send_location_data method

This commit is contained in:
Fabio Manganiello 2018-07-25 12:31:50 +00:00
parent 8846af6a94
commit e4fce17b7b
1 changed files with 5 additions and 2 deletions

View File

@ -145,7 +145,7 @@ class AdafruitIoPlugin(Plugin):
@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
@ -158,6 +158,9 @@ class AdafruitIoPlugin(Plugin):
:param lon: Longitude
:type lon: float
:param ele: Elevation
:type ele: float
:param value: (Optional) value to send
:type value: Numeric or string
@ -165,7 +168,7 @@ class AdafruitIoPlugin(Plugin):
: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
def receive(self, feed):