2023-10-22 01:11:31 +02:00
|
|
|
import os
|
2023-10-20 02:39:23 +02:00
|
|
|
import RNS
|
|
|
|
import time
|
2023-10-20 12:58:55 +02:00
|
|
|
import struct
|
2023-10-20 15:09:48 +02:00
|
|
|
import threading
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
from RNS.vendor import umsgpack as umsgpack
|
2023-10-25 18:51:39 +02:00
|
|
|
from .geo import orthodromic_distance, euclidian_distance
|
|
|
|
from .geo import azalt, angle_to_horizon, radio_horizon, shared_radio_horizon
|
2023-10-20 02:39:23 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
class Telemeter():
|
|
|
|
@staticmethod
|
|
|
|
def from_packed(packed):
|
|
|
|
try:
|
|
|
|
p = umsgpack.unpackb(packed)
|
|
|
|
t = Telemeter(from_packed=True)
|
|
|
|
for sid in p:
|
|
|
|
if sid in t.sids:
|
|
|
|
name = None
|
|
|
|
s = t.sids[sid]()
|
|
|
|
for n in t.available:
|
2023-10-22 13:16:43 +02:00
|
|
|
if t.sids[t.available[n]] == type(s):
|
2023-10-20 12:58:55 +02:00
|
|
|
name = n
|
|
|
|
|
|
|
|
if name != None:
|
|
|
|
s.data = s.unpack(p[sid])
|
|
|
|
s.active = True
|
|
|
|
t.sensors[name] = s
|
|
|
|
|
|
|
|
return t
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
RNS.log("An error occurred while unpacking telemetry. The contained exception was: "+str(e), RNS.LOG_ERROR)
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, from_packed=False):
|
2023-10-21 22:28:33 +02:00
|
|
|
self.sids = {
|
|
|
|
Sensor.SID_TIME: Time,
|
2023-10-25 23:19:24 +02:00
|
|
|
Sensor.SID_RECEIVED: Received,
|
|
|
|
Sensor.SID_INFORMATION: Information,
|
2023-10-21 22:28:33 +02:00
|
|
|
Sensor.SID_BATTERY: Battery,
|
2023-10-22 13:16:43 +02:00
|
|
|
Sensor.SID_PRESSURE: Pressure,
|
2023-10-21 22:28:33 +02:00
|
|
|
Sensor.SID_LOCATION: Location,
|
2023-10-22 13:16:43 +02:00
|
|
|
Sensor.SID_PHYSICAL_LINK: PhysicalLink,
|
|
|
|
Sensor.SID_TEMPERATURE: Temperature,
|
|
|
|
Sensor.SID_HUMIDITY: Humidity,
|
|
|
|
Sensor.SID_MAGNETIC_FIELD: MagneticField,
|
|
|
|
Sensor.SID_AMBIENT_LIGHT: AmbientLight,
|
|
|
|
Sensor.SID_GRAVITY: Gravity,
|
|
|
|
Sensor.SID_ANGULAR_VELOCITY: AngularVelocity,
|
|
|
|
Sensor.SID_ACCELERATION: Acceleration,
|
|
|
|
Sensor.SID_PROXIMITY: Proximity,
|
2023-10-21 22:28:33 +02:00
|
|
|
}
|
|
|
|
self.available = {
|
2023-10-22 13:16:43 +02:00
|
|
|
"time": Sensor.SID_TIME,
|
2023-10-25 23:19:24 +02:00
|
|
|
"information": Sensor.SID_INFORMATION,
|
|
|
|
"received": Sensor.SID_RECEIVED,
|
2023-10-22 13:16:43 +02:00
|
|
|
"battery": Sensor.SID_BATTERY,
|
|
|
|
"pressure": Sensor.SID_PRESSURE,
|
|
|
|
"location": Sensor.SID_LOCATION,
|
|
|
|
"physical_link": Sensor.SID_PHYSICAL_LINK,
|
|
|
|
"temperature": Sensor.SID_TEMPERATURE,
|
|
|
|
"humidity": Sensor.SID_HUMIDITY,
|
|
|
|
"magnetic_field": Sensor.SID_MAGNETIC_FIELD,
|
|
|
|
"ambient_light": Sensor.SID_AMBIENT_LIGHT,
|
|
|
|
"gravity": Sensor.SID_GRAVITY,
|
|
|
|
"angular_velocity": Sensor.SID_ANGULAR_VELOCITY,
|
|
|
|
"acceleration": Sensor.SID_ACCELERATION,
|
|
|
|
"proximity": Sensor.SID_PROXIMITY,
|
2023-10-21 22:28:33 +02:00
|
|
|
}
|
2023-10-20 12:58:55 +02:00
|
|
|
self.from_packed = from_packed
|
|
|
|
self.sensors = {}
|
2023-10-20 15:09:48 +02:00
|
|
|
if not self.from_packed:
|
|
|
|
self.enable("time")
|
2023-10-20 12:58:55 +02:00
|
|
|
|
2023-10-21 22:28:33 +02:00
|
|
|
def synthesize(self, sensor):
|
|
|
|
if sensor in self.available:
|
|
|
|
if not sensor in self.sensors:
|
2023-10-24 01:12:32 +02:00
|
|
|
self.sensors[sensor] = self.sids[self.available[sensor]]()
|
2023-10-21 22:28:33 +02:00
|
|
|
self.sensors[sensor].active = True
|
2023-10-24 01:12:32 +02:00
|
|
|
self.sensors[sensor].synthesized = True
|
2023-10-21 22:28:33 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
def enable(self, sensor):
|
|
|
|
if not self.from_packed:
|
|
|
|
if sensor in self.available:
|
|
|
|
if not sensor in self.sensors:
|
2023-10-22 13:16:43 +02:00
|
|
|
self.sensors[sensor] = self.sids[self.available[sensor]]()
|
2023-10-20 12:58:55 +02:00
|
|
|
if not self.sensors[sensor].active:
|
|
|
|
self.sensors[sensor].start()
|
|
|
|
|
|
|
|
def disable(self, sensor):
|
|
|
|
if not self.from_packed:
|
|
|
|
if sensor in self.available:
|
|
|
|
if sensor in self.sensors:
|
|
|
|
if self.sensors[sensor].active:
|
|
|
|
self.sensors[sensor].stop()
|
2023-10-24 01:12:32 +02:00
|
|
|
removed = self.sensors.pop(sensor)
|
|
|
|
del removed
|
2023-10-20 12:58:55 +02:00
|
|
|
|
2023-10-20 15:09:48 +02:00
|
|
|
def stop_all(self):
|
|
|
|
if not self.from_packed:
|
|
|
|
for sensor in self.sensors:
|
2023-10-25 02:56:59 +02:00
|
|
|
if not sensor == "time":
|
|
|
|
self.sensors[sensor].stop()
|
2023-10-20 15:09:48 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
def read(self, sensor):
|
|
|
|
if not self.from_packed:
|
|
|
|
if sensor in self.available:
|
|
|
|
if sensor in self.sensors:
|
|
|
|
return self.sensors[sensor].data
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
if sensor in self.available:
|
|
|
|
if sensor in self.sensors:
|
|
|
|
return self.sensors[sensor]._data
|
|
|
|
|
|
|
|
def read_all(self):
|
|
|
|
readings = {}
|
|
|
|
for sensor in self.sensors:
|
|
|
|
if self.sensors[sensor].active:
|
|
|
|
if not self.from_packed:
|
|
|
|
readings[sensor] = self.sensors[sensor].data
|
|
|
|
else:
|
|
|
|
readings[sensor] = self.sensors[sensor]._data
|
|
|
|
|
|
|
|
return readings
|
|
|
|
|
|
|
|
def packed(self):
|
|
|
|
packed = {}
|
2023-10-20 15:09:48 +02:00
|
|
|
packed[Sensor.SID_TIME] = int(time.time())
|
2023-10-20 12:58:55 +02:00
|
|
|
for sensor in self.sensors:
|
|
|
|
if self.sensors[sensor].active:
|
|
|
|
packed[self.sensors[sensor].sid] = self.sensors[sensor].pack()
|
|
|
|
return umsgpack.packb(packed)
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
rendered = []
|
|
|
|
for sensor in self.sensors:
|
|
|
|
s = self.sensors[sensor]
|
|
|
|
if s.active:
|
|
|
|
r = s.render(relative_to)
|
|
|
|
if r: rendered.append(r)
|
|
|
|
|
|
|
|
return rendered
|
|
|
|
|
2023-10-20 02:39:23 +02:00
|
|
|
class Sensor():
|
2023-10-22 13:16:43 +02:00
|
|
|
SID_NONE = 0x00
|
|
|
|
SID_TIME = 0x01
|
|
|
|
SID_LOCATION = 0x02
|
|
|
|
SID_PRESSURE = 0x03
|
|
|
|
SID_BATTERY = 0x04
|
|
|
|
SID_PHYSICAL_LINK = 0x05
|
|
|
|
SID_ACCELERATION = 0x06
|
|
|
|
SID_TEMPERATURE = 0x07
|
|
|
|
SID_HUMIDITY = 0x08
|
|
|
|
SID_MAGNETIC_FIELD = 0x09
|
|
|
|
SID_AMBIENT_LIGHT = 0x0A
|
|
|
|
SID_GRAVITY = 0x0B
|
|
|
|
SID_ANGULAR_VELOCITY = 0x0C
|
|
|
|
SID_PROXIMITY = 0x0E
|
2023-10-25 23:19:24 +02:00
|
|
|
SID_INFORMATION = 0x0F
|
|
|
|
SID_RECEIVED = 0x10
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
def __init__(self, sid = None, stale_time = None):
|
|
|
|
self._sid = sid or Sensor.SID_NONE
|
|
|
|
self._stale_time = stale_time
|
|
|
|
self._data = None
|
|
|
|
self.active = False
|
2023-10-24 01:12:32 +02:00
|
|
|
self.synthesized = False
|
2023-10-20 02:39:23 +02:00
|
|
|
self.last_update = 0
|
|
|
|
self.last_read = 0
|
|
|
|
|
|
|
|
@property
|
|
|
|
def sid(self):
|
|
|
|
return self._sid
|
|
|
|
|
|
|
|
@property
|
|
|
|
def data(self):
|
|
|
|
if self._data == None or (self._stale_time != None and time.time() > self.last_update+self._stale_time):
|
|
|
|
try:
|
|
|
|
self.update_data()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
self.last_read = time.time()
|
|
|
|
return self._data
|
|
|
|
|
|
|
|
@data.setter
|
|
|
|
def data(self, value):
|
|
|
|
self.last_update = time.time()
|
|
|
|
self._data = value
|
|
|
|
|
2023-10-26 11:53:42 +02:00
|
|
|
@property
|
|
|
|
def stale_time(self):
|
|
|
|
return self._stale_time
|
|
|
|
|
|
|
|
@stale_time.setter
|
|
|
|
def stale_time(self, value):
|
|
|
|
self._stale_time = value
|
|
|
|
|
2023-10-20 02:39:23 +02:00
|
|
|
def update_data(self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def start(self):
|
2023-10-24 01:12:32 +02:00
|
|
|
if not self.synthesized:
|
|
|
|
self.setup_sensor()
|
2023-10-20 02:39:23 +02:00
|
|
|
self.active = True
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
self.teardown_sensor()
|
|
|
|
self.active = False
|
|
|
|
|
|
|
|
def packb(self):
|
|
|
|
return umsgpack.packb(self.pack())
|
|
|
|
|
|
|
|
def unpackb(self, packed):
|
|
|
|
return umsgpack.unpackb(self.unpack(packed))
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
return self.data
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
return packed
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
return None
|
|
|
|
|
2023-10-20 15:09:48 +02:00
|
|
|
class Time(Sensor):
|
|
|
|
SID = Sensor.SID_TIME
|
|
|
|
STALE_TIME = 0.1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
self.data = {"utc":int(time.time())}
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return d["utc"]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"utc": packed}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
rendered = {
|
|
|
|
"icon": "clock-time-ten-outline",
|
|
|
|
"name": "Timestamp",
|
|
|
|
"values": { "UTC": self.data["utc"] },
|
|
|
|
}
|
|
|
|
|
|
|
|
return rendered
|
|
|
|
|
2023-10-25 23:19:24 +02:00
|
|
|
class Information(Sensor):
|
|
|
|
SID = Sensor.SID_INFORMATION
|
|
|
|
STALE_TIME = 5
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
self.contents = ""
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
self.data = {"contents":str(self.contents)}
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return self.data["contents"]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"contents": str(packed)}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def render(self, relative_to=None):
|
|
|
|
rendered = {
|
|
|
|
"icon": "information-variant",
|
|
|
|
"name": "Information",
|
|
|
|
"values": { "contents": self.data["contents"] },
|
|
|
|
}
|
|
|
|
|
|
|
|
return rendered
|
|
|
|
|
|
|
|
class Received(Sensor):
|
|
|
|
SID = Sensor.SID_RECEIVED
|
|
|
|
STALE_TIME = 5
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
self.by = None
|
|
|
|
self.via = None
|
|
|
|
self.geodesic_distance = None
|
|
|
|
self.euclidian_distance = None
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def set_distance(self, c1, c2):
|
|
|
|
self.euclidian_distance = euclidian_distance(c1, c2)
|
|
|
|
self.geodesic_distance = orthodromic_distance(c1, c2)
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
self.data = {
|
|
|
|
"by":self.by,
|
|
|
|
"via":self.via,
|
|
|
|
"distance": {
|
|
|
|
"geodesic": self.geodesic_distance,
|
|
|
|
"euclidian": self.euclidian_distance,
|
|
|
|
}}
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return [
|
|
|
|
self.data["by"],
|
|
|
|
self.data["via"],
|
|
|
|
self.geodesic_distance,
|
|
|
|
self.euclidian_distance,
|
|
|
|
]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {
|
|
|
|
"by":packed[0],
|
|
|
|
"via":packed[1],
|
|
|
|
"distance": {
|
|
|
|
"geodesic": packed[2],
|
|
|
|
"euclidian": packed[3],
|
|
|
|
}}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def render(self, relative_to=None):
|
|
|
|
rendered = {
|
|
|
|
"icon": "arrow-down-bold-hexagon-outline",
|
|
|
|
"name": "Received",
|
|
|
|
"values": self.data,
|
|
|
|
}
|
|
|
|
|
|
|
|
return rendered
|
|
|
|
|
2023-10-20 02:39:23 +02:00
|
|
|
class Battery(Sensor):
|
|
|
|
SID = Sensor.SID_BATTERY
|
|
|
|
STALE_TIME = 10
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
2023-10-22 01:11:31 +02:00
|
|
|
if RNS.vendor.platformutils.is_android():
|
2023-10-20 02:39:23 +02:00
|
|
|
from plyer import battery
|
|
|
|
self.battery = battery
|
2023-10-22 01:11:31 +02:00
|
|
|
|
|
|
|
elif RNS.vendor.platformutils.is_linux():
|
|
|
|
node_exists = False
|
|
|
|
bn = 0
|
|
|
|
node_name = None
|
|
|
|
for bi in range(0,10):
|
|
|
|
path = os.path.join('/sys', 'class', 'power_supply', 'BAT'+str(bi))
|
|
|
|
if os.path.isdir(path):
|
|
|
|
node_name = "BAT"+str(bi)
|
|
|
|
break
|
|
|
|
|
|
|
|
self.battery_node_name = node_name
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android() or RNS.vendor.platformutils.is_linux():
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android() or RNS.vendor.platformutils.is_linux():
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
2023-10-22 01:11:31 +02:00
|
|
|
if RNS.vendor.platformutils.is_android():
|
2023-10-20 02:39:23 +02:00
|
|
|
self.battery.get_state()
|
|
|
|
b = self.battery.status
|
|
|
|
self.data = {"charge_percent": b["percentage"], "charging": b["isCharging"]}
|
2023-10-22 01:11:31 +02:00
|
|
|
|
|
|
|
elif RNS.vendor.platformutils.is_linux():
|
|
|
|
if self.battery_node_name:
|
|
|
|
status = {"isCharging": None, "percentage": None}
|
|
|
|
kernel_bat_path = os.path.join('/sys', 'class', 'power_supply', self.battery_node_name)
|
|
|
|
uevent = os.path.join(kernel_bat_path, 'uevent')
|
|
|
|
with open(uevent, "rb") as fle:
|
|
|
|
lines = [
|
|
|
|
line.decode('utf-8').strip()
|
|
|
|
for line in fle.readlines()
|
|
|
|
]
|
|
|
|
output = {
|
|
|
|
line.split('=')[0]: line.split('=')[1]
|
|
|
|
for line in lines
|
|
|
|
}
|
|
|
|
|
|
|
|
is_charging = output['POWER_SUPPLY_STATUS'] == 'Charging'
|
|
|
|
charge_percent = float(output['POWER_SUPPLY_CAPACITY'])
|
2023-10-24 01:12:32 +02:00
|
|
|
self.data = {"charge_percent": round(charge_percent, 1), "charging": is_charging}
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
2023-10-24 01:12:32 +02:00
|
|
|
return [round(d["charge_percent"],1), d["charging"]]
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
2023-10-24 01:12:32 +02:00
|
|
|
return {"charge_percent": round(packed[0], 1), "charging": packed[1]}
|
2023-10-20 02:39:23 +02:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
d = self.data
|
|
|
|
p = d["charge_percent"]
|
|
|
|
if d["charging"]:
|
|
|
|
charge_string = "charging"
|
|
|
|
else:
|
|
|
|
charge_string = "discharging"
|
|
|
|
|
|
|
|
rendered = {
|
|
|
|
"icon": "battery-outline",
|
|
|
|
"name": "Battery",
|
|
|
|
"values": {"percent": p, "_meta": charge_string},
|
|
|
|
}
|
|
|
|
|
|
|
|
if d["charging"]:
|
|
|
|
if p >= 10: rendered["icon"] = "battery-charging-10"
|
|
|
|
if p >= 20: rendered["icon"] = "battery-charging-20"
|
|
|
|
if p >= 30: rendered["icon"] = "battery-charging-30"
|
|
|
|
if p >= 40: rendered["icon"] = "battery-charging-40"
|
|
|
|
if p >= 50: rendered["icon"] = "battery-charging-50"
|
|
|
|
if p >= 60: rendered["icon"] = "battery-charging-60"
|
|
|
|
if p >= 70: rendered["icon"] = "battery-charging-70"
|
|
|
|
if p >= 80: rendered["icon"] = "battery-charging-80"
|
|
|
|
if p >= 90: rendered["icon"] = "battery-charging-90"
|
|
|
|
if p >= 100: rendered["icon"]= "battery-charging-100"
|
|
|
|
else:
|
|
|
|
if p >= 10: rendered["icon"] = "battery-10"
|
|
|
|
if p >= 20: rendered["icon"] = "battery-20"
|
|
|
|
if p >= 30: rendered["icon"] = "battery-30"
|
|
|
|
if p >= 40: rendered["icon"] = "battery-40"
|
|
|
|
if p >= 50: rendered["icon"] = "battery-50"
|
|
|
|
if p >= 60: rendered["icon"] = "battery-60"
|
|
|
|
if p >= 70: rendered["icon"] = "battery-70"
|
|
|
|
if p >= 80: rendered["icon"] = "battery-80"
|
|
|
|
if p >= 90: rendered["icon"] = "battery-90"
|
2023-10-26 11:53:42 +02:00
|
|
|
if p >= 97: rendered["icon"] = "battery"
|
2023-10-24 01:12:32 +02:00
|
|
|
|
|
|
|
return rendered
|
|
|
|
|
2023-10-22 13:16:43 +02:00
|
|
|
class Pressure(Sensor):
|
|
|
|
SID = Sensor.SID_PRESSURE
|
2023-10-20 02:39:23 +02:00
|
|
|
STALE_TIME = 5
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import barometer
|
2023-10-22 13:16:43 +02:00
|
|
|
self.android_sensor = barometer
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
2023-10-22 13:16:43 +02:00
|
|
|
self.android_sensor.enable()
|
2023-10-20 02:39:23 +02:00
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
2023-10-22 13:16:43 +02:00
|
|
|
self.android_sensor.disable()
|
2023-10-20 02:39:23 +02:00
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
2023-10-22 23:14:09 +02:00
|
|
|
self.data = {"mbar": round(self.android_sensor.pressure, 2)}
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return d["mbar"]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"mbar": packed}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
2023-10-25 01:49:00 +02:00
|
|
|
|
|
|
|
delta = None
|
|
|
|
if relative_to and "pressure" in relative_to.sensors:
|
|
|
|
rs = relative_to.sensors["pressure"]
|
|
|
|
if "mbar" in rs.data and rs.data["mbar"] != None:
|
|
|
|
if self.data["mbar"] != None:
|
|
|
|
delta = round(rs.data["mbar"] - self.data["mbar"], 1)
|
2023-10-24 01:12:32 +02:00
|
|
|
|
2023-10-25 01:49:00 +02:00
|
|
|
# TODO: Remove
|
|
|
|
# RNS.log("OVERRIDING DELTA", RNS.LOG_WARNING)
|
|
|
|
# delta = round(740.1 - self.data["mbar"], 1)
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
rendered = {
|
|
|
|
"icon": "weather-cloudy",
|
|
|
|
"name": "Ambient Pressure",
|
|
|
|
"values": { "mbar": self.data["mbar"] },
|
|
|
|
}
|
2023-10-25 01:49:00 +02:00
|
|
|
if delta != None:
|
|
|
|
rendered["deltas"] = {"mbar": delta}
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
return rendered
|
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
class Location(Sensor):
|
|
|
|
SID = Sensor.SID_LOCATION
|
|
|
|
|
2023-10-20 17:27:15 +02:00
|
|
|
STALE_TIME = 15
|
|
|
|
MIN_DISTANCE = 4
|
2023-10-20 12:58:55 +02:00
|
|
|
ACCURACY_TARGET = 250
|
|
|
|
|
2023-10-20 02:39:23 +02:00
|
|
|
def __init__(self):
|
2023-10-20 12:58:55 +02:00
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
2023-10-20 02:39:23 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
self._raw = None
|
2023-10-26 11:53:42 +02:00
|
|
|
self._last_update = None
|
2023-10-20 12:58:55 +02:00
|
|
|
self._min_distance = Location.MIN_DISTANCE
|
|
|
|
self._accuracy_target = Location.ACCURACY_TARGET
|
2023-10-20 02:39:23 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
self.latitude = None
|
|
|
|
self.longtitude = None
|
|
|
|
self.altitude = None
|
|
|
|
self.speed = None
|
|
|
|
self.bearing = None
|
|
|
|
self.accuracy = None
|
2023-10-20 02:39:23 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import gps
|
|
|
|
self.gps = gps
|
|
|
|
|
|
|
|
def set_min_distance(self, distance):
|
|
|
|
try:
|
|
|
|
d = float(distance)
|
|
|
|
if d >= 0:
|
|
|
|
self._min_distance = d
|
|
|
|
self.teardown_sensor()
|
|
|
|
self.setup_sensor()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def set_accuracy_target(self, target):
|
|
|
|
try:
|
|
|
|
t = float(target)
|
|
|
|
if t >= 0:
|
|
|
|
self._accuracy_target = t
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from android.permissions import request_permissions, check_permission
|
|
|
|
|
2023-10-20 15:09:48 +02:00
|
|
|
if check_permission("android.permission.ACCESS_COARSE_LOCATION") and check_permission("android.permission.ACCESS_FINE_LOCATION"):
|
|
|
|
self.gps.configure(on_location=self.android_location_callback)
|
|
|
|
self.gps.start(minTime=self._stale_time, minDistance=self._min_distance)
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
self.update_data()
|
2023-10-20 15:09:48 +02:00
|
|
|
|
2023-10-20 12:58:55 +02:00
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.gps.stop()
|
2023-10-24 01:12:32 +02:00
|
|
|
|
|
|
|
self.latitude = None
|
|
|
|
self.longtitude = None
|
|
|
|
self.altitude = None
|
|
|
|
self.speed = None
|
|
|
|
self.bearing = None
|
|
|
|
self.accuracy = None
|
|
|
|
self.data = None
|
2023-10-20 12:58:55 +02:00
|
|
|
|
|
|
|
def android_location_callback(self, **kwargs):
|
|
|
|
self._raw = kwargs
|
|
|
|
self._last_update = time.time()
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
2023-10-24 01:12:32 +02:00
|
|
|
if self.synthesized:
|
|
|
|
if self.latitude != None and self.longtitude != None:
|
2023-10-26 11:53:42 +02:00
|
|
|
|
|
|
|
now = time.time()
|
|
|
|
if self._last_update == None:
|
|
|
|
self._last_update = now
|
|
|
|
elif now > self._last_update + self._stale_time:
|
|
|
|
self._last_update = now
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
if self.altitude == None: self.altitude = 0.0
|
|
|
|
if self.accuracy == None: self.accuracy = 0.01
|
|
|
|
if self.speed == None: self.speed = 0.0
|
|
|
|
if self.bearing == None: self.bearing = 0.0
|
|
|
|
self.data = {
|
|
|
|
"latitude": round(self.latitude, 6),
|
|
|
|
"longtitude": round(self.longtitude, 6),
|
|
|
|
"altitude": round(self.altitude, 2),
|
|
|
|
"speed": round(self.speed, 2),
|
|
|
|
"bearing": round(self.bearing, 2),
|
|
|
|
"accuracy": round(self.accuracy, 2),
|
2023-10-26 11:53:42 +02:00
|
|
|
"last_update": int(self._last_update),
|
2023-10-24 01:12:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
elif RNS.vendor.platformutils.is_android():
|
2023-10-20 12:58:55 +02:00
|
|
|
if "lat" in self._raw:
|
|
|
|
self.latitude = self._raw["lat"]
|
|
|
|
if "lon" in self._raw:
|
|
|
|
self.longtitude = self._raw["lon"]
|
|
|
|
if "altitude" in self._raw:
|
|
|
|
self.altitude = self._raw["altitude"]
|
|
|
|
if "speed" in self._raw:
|
|
|
|
self.speed = self._raw["speed"]
|
|
|
|
if self.speed < 0:
|
|
|
|
self.speed = 0
|
|
|
|
if "bearing" in self._raw:
|
|
|
|
self.bearing = self._raw["bearing"]
|
|
|
|
if "accuracy" in self._raw:
|
|
|
|
self.accuracy = self._raw["accuracy"]
|
|
|
|
if self.accuracy < 0:
|
|
|
|
self.accuracy = 0
|
|
|
|
|
|
|
|
if self.accuracy != None and self.accuracy <= self._accuracy_target:
|
|
|
|
self.data = {
|
|
|
|
"latitude": round(self.latitude, 6),
|
|
|
|
"longtitude": round(self.longtitude, 6),
|
|
|
|
"altitude": round(self.altitude, 2),
|
|
|
|
"speed": round(self.speed, 2),
|
|
|
|
"bearing": round(self.bearing, 2),
|
|
|
|
"accuracy": round(self.accuracy, 2),
|
|
|
|
"last_update": int(self._last_update),
|
|
|
|
}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
2023-10-20 02:39:23 +02:00
|
|
|
|
|
|
|
def pack(self):
|
2023-10-20 12:58:55 +02:00
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
return [
|
|
|
|
struct.pack("!i", int(round(d["latitude"], 6)*1e6)),
|
|
|
|
struct.pack("!i", int(round(d["longtitude"], 6)*1e6)),
|
|
|
|
struct.pack("!I", int(round(d["altitude"], 2)*1e2)),
|
|
|
|
struct.pack("!I", int(round(d["speed"], 2)*1e2)),
|
|
|
|
struct.pack("!I", int(round(d["bearing"], 2)*1e2)),
|
|
|
|
struct.pack("!H", int(round(d["accuracy"], 2)*1e2)),
|
|
|
|
d["last_update"],
|
|
|
|
]
|
|
|
|
except Exception as e:
|
|
|
|
RNS.log("An error occurred while packing location sensor data. The contained exception was: "+str(e), RNS.LOG_ERROR)
|
|
|
|
return None
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {
|
|
|
|
"latitude": struct.unpack("!i", packed[0])[0]/1e6,
|
|
|
|
"longtitude": struct.unpack("!i", packed[1])[0]/1e6,
|
|
|
|
"altitude": struct.unpack("!I", packed[2])[0]/1e2,
|
|
|
|
"speed": struct.unpack("!I", packed[3])[0]/1e2,
|
|
|
|
"bearing": struct.unpack("!I", packed[4])[0]/1e2,
|
|
|
|
"accuracy": struct.unpack("!H", packed[5])[0]/1e2,
|
|
|
|
"last_update": packed[6],
|
|
|
|
}
|
2023-10-21 22:28:33 +02:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
2023-10-25 18:51:39 +02:00
|
|
|
|
|
|
|
obj_ath = None
|
|
|
|
obj_rh = None
|
|
|
|
if self.data["altitude"] != None and self.data["latitude"] != None and self.data["longtitude"] != None:
|
|
|
|
coords = (self.data["latitude"], self.data["longtitude"], self.data["altitude"])
|
|
|
|
obj_ath = angle_to_horizon(coords)
|
|
|
|
obj_rh = radio_horizon(self.data["altitude"])
|
2023-10-24 01:12:32 +02:00
|
|
|
|
|
|
|
rendered = {
|
|
|
|
"icon": "map-marker",
|
|
|
|
"name": "Location",
|
|
|
|
"values": {
|
|
|
|
"latitude": self.data["latitude"],
|
|
|
|
"longtitude": self.data["longtitude"],
|
|
|
|
"altitude": self.data["altitude"],
|
|
|
|
"speed": self.data["speed"],
|
2023-10-25 01:49:00 +02:00
|
|
|
"heading": self.data["bearing"],
|
2023-10-24 01:12:32 +02:00
|
|
|
"accuracy": self.data["accuracy"],
|
|
|
|
"updated": self.data["last_update"],
|
2023-10-25 18:51:39 +02:00
|
|
|
"angle_to_horizon": obj_ath,
|
|
|
|
"radio_horizon": obj_rh,
|
2023-10-24 01:12:32 +02:00
|
|
|
},
|
|
|
|
}
|
2023-10-25 01:49:00 +02:00
|
|
|
|
|
|
|
if relative_to != None and "location" in relative_to.sensors:
|
|
|
|
slat = self.data["latitude"]; slon = self.data["longtitude"]
|
|
|
|
salt = self.data["altitude"];
|
|
|
|
if salt == None: salt = 0
|
|
|
|
if slat != None and slon != None:
|
|
|
|
s = relative_to.sensors["location"]
|
|
|
|
d = s.data
|
|
|
|
if "latitude" in d and "longtitude" in d and "altitude" in d:
|
|
|
|
lat = d["latitude"]; lon = d["longtitude"]; alt = d["altitude"]
|
|
|
|
if lat != None and lon != None:
|
|
|
|
if alt == None: alt = 0
|
|
|
|
cs = (slat, slon, salt); cr = (lat, lon, alt)
|
|
|
|
ed = euclidian_distance(cs, cr)
|
|
|
|
od = orthodromic_distance(cs, cr)
|
2023-10-26 21:45:17 +02:00
|
|
|
aa = azalt(cr, cs)
|
2023-10-25 02:56:59 +02:00
|
|
|
ath = angle_to_horizon(cr)
|
2023-10-25 18:51:39 +02:00
|
|
|
atd = aa[1]-ath
|
2023-10-25 02:56:59 +02:00
|
|
|
above_horizon = None
|
|
|
|
if aa[1] != None:
|
|
|
|
if aa[1] > ath:
|
|
|
|
above_horizon = True
|
|
|
|
else:
|
|
|
|
above_horizon = False
|
2023-10-25 18:51:39 +02:00
|
|
|
|
|
|
|
srh = shared_radio_horizon(cs, cr)
|
2023-10-27 01:03:59 +02:00
|
|
|
if self.data["altitude"] != None and d["altitude"] != None:
|
|
|
|
dalt = salt-alt
|
|
|
|
else:
|
|
|
|
dalt = None
|
2023-10-25 18:51:39 +02:00
|
|
|
|
2023-10-27 01:03:59 +02:00
|
|
|
rendered["distance"] = {"euclidian": ed, "orthodromic": od, "vertical": dalt}
|
2023-10-25 18:51:39 +02:00
|
|
|
rendered["azalt"] = {
|
|
|
|
"azimuth": aa[0], "altitude": aa[1], "above_horizon": above_horizon,
|
|
|
|
"altitude_delta": atd, "local_angle_to_horizon": ath}
|
|
|
|
rendered["radio_horizon"] = {
|
|
|
|
"object_range": srh["horizon1"], "related_range": srh["horizon2"],
|
|
|
|
"combined_range": srh["shared"], "within_range": srh["within"],
|
|
|
|
"geodesic_distance": srh["geodesic_distance"],
|
|
|
|
"antenna_distance": srh["antenna_distance"]}
|
2023-10-25 01:49:00 +02:00
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
return rendered
|
|
|
|
|
2023-10-21 22:28:33 +02:00
|
|
|
class PhysicalLink(Sensor):
|
|
|
|
SID = Sensor.SID_PHYSICAL_LINK
|
|
|
|
STALE_TIME = 5
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.rssi = None
|
|
|
|
self.snr = None
|
|
|
|
self.q = None
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
self.data = {"rssi": self.rssi, "snr": self.snr, "q": self.q}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return [d["rssi"], d["snr"], d["q"]]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"rssi": packed[0], "snr": packed[1], "q": packed[2]}
|
2023-10-22 13:16:43 +02:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
q = self.data["q"]
|
|
|
|
rendered = {
|
|
|
|
"icon": "network-strength-outline",
|
|
|
|
"name": "Physical Link",
|
|
|
|
"values": { "rssi": self.data["rssi"], "snr": self.data["snr"], "q": q },
|
|
|
|
}
|
|
|
|
if q != None:
|
|
|
|
if q > 20: rendered["icon"] = "network-strength-1"
|
|
|
|
if q > 40: rendered["icon"] = "network-strength-2"
|
|
|
|
if q > 75: rendered["icon"] = "network-strength-3"
|
|
|
|
if q > 90: rendered["icon"] = "network-strength-4"
|
|
|
|
return rendered
|
|
|
|
|
2023-10-22 13:16:43 +02:00
|
|
|
class Temperature(Sensor):
|
|
|
|
SID = Sensor.SID_TEMPERATURE
|
|
|
|
STALE_TIME = 5
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import temperature
|
|
|
|
self.android_sensor = temperature
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.data = {"c": round(self.android_sensor.temperature, 2)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
2023-10-24 01:12:32 +02:00
|
|
|
return d["c"]
|
2023-10-22 13:16:43 +02:00
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
2023-10-24 01:12:32 +02:00
|
|
|
return {"c": packed}
|
2023-10-22 13:16:43 +02:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
rendered = {
|
|
|
|
"icon": "thermometer",
|
|
|
|
"name": "Temperature",
|
|
|
|
"values": { "c": self.data["c"] },
|
|
|
|
}
|
|
|
|
return rendered
|
|
|
|
|
2023-10-22 13:16:43 +02:00
|
|
|
class Humidity(Sensor):
|
|
|
|
SID = Sensor.SID_HUMIDITY
|
|
|
|
STALE_TIME = 5
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import humidity
|
|
|
|
self.android_sensor = humidity
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.data = {"percent_relative": round(self.android_sensor.tell, 2)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return d["percent_relative"]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"percent_relative": packed}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
rendered = {
|
|
|
|
"icon": "water-percent",
|
|
|
|
"name": "Relative Humidity",
|
|
|
|
"values": { "percent": self.data["percent_relative"] },
|
|
|
|
}
|
|
|
|
return rendered
|
|
|
|
|
2023-10-22 13:16:43 +02:00
|
|
|
class MagneticField(Sensor):
|
|
|
|
SID = Sensor.SID_MAGNETIC_FIELD
|
|
|
|
STALE_TIME = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import compass
|
|
|
|
self.android_sensor = compass
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
vectors = self.android_sensor.field
|
|
|
|
self.data = {"x": round(vectors[0], 6), "y": round(vectors[1], 6), "z": round(vectors[2], 6)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return [d["x"], d["y"], d["z"]]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"x": packed[0], "y": packed[1], "z": packed[2]}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
class AmbientLight(Sensor):
|
|
|
|
SID = Sensor.SID_AMBIENT_LIGHT
|
|
|
|
STALE_TIME = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import light
|
|
|
|
self.android_sensor = light
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.data = {"lux": round(self.android_sensor.illumination, 2)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return d["lux"]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"lux": packed}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
def render(self, relative_to=None):
|
|
|
|
if self.data == None:
|
|
|
|
return None
|
2023-10-25 01:49:00 +02:00
|
|
|
|
|
|
|
delta = None
|
|
|
|
if relative_to and "ambient_light" in relative_to.sensors:
|
|
|
|
rs = relative_to.sensors["ambient_light"]
|
|
|
|
if "lux" in rs.data and rs.data["lux"] != None:
|
|
|
|
if self.data["lux"] != None:
|
|
|
|
delta = round(rs.data["lux"] - self.data["lux"], 2)
|
|
|
|
|
|
|
|
# TODO: Remove
|
|
|
|
# RNS.log("OVERRIDING DELTA", RNS.LOG_WARNING)
|
|
|
|
# delta = round(2500 - self.data["lux"], 2)
|
2023-10-24 01:12:32 +02:00
|
|
|
|
|
|
|
rendered = {
|
|
|
|
"icon": "white-balance-sunny",
|
|
|
|
"name": "Ambient Light",
|
|
|
|
"values": { "lux": self.data["lux"] },
|
|
|
|
}
|
2023-10-25 01:49:00 +02:00
|
|
|
if delta != None:
|
|
|
|
rendered["deltas"] = {"lux": delta}
|
|
|
|
|
2023-10-24 01:12:32 +02:00
|
|
|
return rendered
|
|
|
|
|
2023-10-22 13:16:43 +02:00
|
|
|
class Gravity(Sensor):
|
|
|
|
SID = Sensor.SID_GRAVITY
|
|
|
|
STALE_TIME = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import gravity
|
|
|
|
self.android_sensor = gravity
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
vectors = self.android_sensor.gravity
|
|
|
|
self.data = {"x": round(vectors[0], 6), "y": round(vectors[1], 6), "z": round(vectors[2], 6)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return [d["x"], d["y"], d["z"]]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"x": packed[0], "y": packed[1], "z": packed[2]}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
class AngularVelocity(Sensor):
|
|
|
|
SID = Sensor.SID_ANGULAR_VELOCITY
|
|
|
|
STALE_TIME = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import gyroscope
|
|
|
|
self.android_sensor = gyroscope
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
vectors = self.android_sensor.rotation
|
|
|
|
self.data = {"x": round(vectors[0], 6), "y": round(vectors[1], 6), "z": round(vectors[2], 6)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return [d["x"], d["y"], d["z"]]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"x": packed[0], "y": packed[1], "z": packed[2]}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
class Acceleration(Sensor):
|
|
|
|
SID = Sensor.SID_ACCELERATION
|
|
|
|
STALE_TIME = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import accelerometer
|
|
|
|
self.android_sensor = accelerometer
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
vectors = self.android_sensor.acceleration
|
|
|
|
self.data = {"x": round(vectors[0], 6), "y": round(vectors[1], 6), "z": round(vectors[2], 6)}
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return [d["x"], d["y"], d["z"]]
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return {"x": packed[0], "y": packed[1], "z": packed[2]}
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
class Proximity(Sensor):
|
|
|
|
SID = Sensor.SID_PROXIMITY
|
|
|
|
STALE_TIME = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(type(self).SID, type(self).STALE_TIME)
|
|
|
|
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
from plyer import proximity
|
|
|
|
self.android_sensor = proximity
|
|
|
|
|
|
|
|
def setup_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.enable()
|
|
|
|
self.update_data()
|
|
|
|
|
|
|
|
def teardown_sensor(self):
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.android_sensor.disable()
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def update_data(self):
|
|
|
|
try:
|
|
|
|
if RNS.vendor.platformutils.is_android():
|
|
|
|
self.data = self.android_sensor.proximity
|
|
|
|
|
|
|
|
except:
|
|
|
|
self.data = None
|
|
|
|
|
|
|
|
def pack(self):
|
|
|
|
d = self.data
|
|
|
|
if d == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return d
|
|
|
|
|
|
|
|
def unpack(self, packed):
|
|
|
|
try:
|
|
|
|
if packed == None:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return packed
|
2023-10-20 12:58:55 +02:00
|
|
|
except:
|
|
|
|
return None
|