#how to send value to python integration from sensor data?
1 messages · Page 1 of 1 (latest)
it appears to use this multiplier
``
multiplier = 1.0
type_gid = 1
if channel_123:
multiplier = channel_123.channel_multiplier
type_gid = channel_123.channel_type_gid
device_info.channels.append(
VueDeviceChannel(
gid=channel.device_gid,
name=channel.name,
channelNum=channel.channel_num,
channelMultiplier=multiplier,
channelTypeGid=type_gid,
``
is it possible to create a multiplier and feed it into this script?