app_protocol

package module
v0.0.0-...-9a8a1ce Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 6, 2023 License: BSD-3-Clause Imports: 4 Imported by: 7

README

#+TITLE:	README for fk-app-protocol
#+AUTHOR:	Jacob Lewallen
#+EMAIL:	jacob@conservify.org

* 1. Overview

This is the Google Protocol Buffers specification for the communications between
a FieldKit device and the FieldKit mobile application.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	QueryFlags_name = map[int32]string{
		0: "QUERY_FLAGS_NONE",
		1: "QUERY_FLAGS_LOGS",
	}
	QueryFlags_value = map[string]int32{
		"QUERY_FLAGS_NONE": 0,
		"QUERY_FLAGS_LOGS": 1,
	}
)

Enum value maps for QueryFlags.

View Source
var (
	QueryType_name = map[int32]string{
		0:  "QUERY_NONE",
		1:  "QUERY_CAPABILITIES",
		2:  "QUERY_CONFIGURE_SENSOR",
		7:  "QUERY_LIVE_DATA_POLL",
		8:  "QUERY_SCHEDULES",
		9:  "QUERY_CONFIGURE_SCHEDULES",
		10: "QUERY_FILES_SD",
		11: "QUERY_DOWNLOAD_FILE",
		12: "QUERY_ERASE_FILE",
		13: "QUERY_RESET",
		14: "QUERY_NETWORK_SETTINGS",
		15: "QUERY_CONFIGURE_NETWORK_SETTINGS",
		16: "QUERY_SCAN_MODULES",
		17: "QUERY_CONFIGURE_IDENTITY",
		18: "QUERY_STATUS",
		19: "QUERY_MODULE",
		20: "QUERY_METADATA",
		21: "QUERY_FORMAT",
		22: "QUERY_GET_READINGS",
		23: "QUERY_TAKE_READINGS",
		24: "QUERY_RECORDING_CONTROL",
		25: "QUERY_CONFIGURE",
		26: "QUERY_SCAN_NETWORKS",
		27: "QUERY_FILES_SPI",
		28: "QUERY_FILES_QSPI",
	}
	QueryType_value = map[string]int32{
		"QUERY_NONE":                       0,
		"QUERY_CAPABILITIES":               1,
		"QUERY_CONFIGURE_SENSOR":           2,
		"QUERY_LIVE_DATA_POLL":             7,
		"QUERY_SCHEDULES":                  8,
		"QUERY_CONFIGURE_SCHEDULES":        9,
		"QUERY_FILES_SD":                   10,
		"QUERY_DOWNLOAD_FILE":              11,
		"QUERY_ERASE_FILE":                 12,
		"QUERY_RESET":                      13,
		"QUERY_NETWORK_SETTINGS":           14,
		"QUERY_CONFIGURE_NETWORK_SETTINGS": 15,
		"QUERY_SCAN_MODULES":               16,
		"QUERY_CONFIGURE_IDENTITY":         17,
		"QUERY_STATUS":                     18,
		"QUERY_MODULE":                     19,
		"QUERY_METADATA":                   20,
		"QUERY_FORMAT":                     21,
		"QUERY_GET_READINGS":               22,
		"QUERY_TAKE_READINGS":              23,
		"QUERY_RECORDING_CONTROL":          24,
		"QUERY_CONFIGURE":                  25,
		"QUERY_SCAN_NETWORKS":              26,
		"QUERY_FILES_SPI":                  27,
		"QUERY_FILES_QSPI":                 28,
	}
)

Enum value maps for QueryType.

View Source
var (
	ReplyType_name = map[int32]string{
		0:  "REPLY_NONE",
		1:  "REPLY_SUCCESS",
		2:  "REPLY_BUSY",
		3:  "REPLY_ERROR",
		4:  "REPLY_CAPABILITIES",
		8:  "REPLY_LIVE_DATA_POLL",
		9:  "REPLY_SCHEDULES",
		10: "REPLY_FILES",
		11: "REPLY_DOWNLOAD_FILE",
		12: "REPLY_RESET",
		13: "REPLY_NETWORK_SETTINGS",
		14: "REPLY_IDENTITY",
		15: "REPLY_STATUS",
		16: "REPLY_MODULE",
		17: "REPLY_METADATA",
		18: "REPLY_READINGS",
		19: "REPLY_NETWORKS",
	}
	ReplyType_value = map[string]int32{
		"REPLY_NONE":             0,
		"REPLY_SUCCESS":          1,
		"REPLY_BUSY":             2,
		"REPLY_ERROR":            3,
		"REPLY_CAPABILITIES":     4,
		"REPLY_LIVE_DATA_POLL":   8,
		"REPLY_SCHEDULES":        9,
		"REPLY_FILES":            10,
		"REPLY_DOWNLOAD_FILE":    11,
		"REPLY_RESET":            12,
		"REPLY_NETWORK_SETTINGS": 13,
		"REPLY_IDENTITY":         14,
		"REPLY_STATUS":           15,
		"REPLY_MODULE":           16,
		"REPLY_METADATA":         17,
		"REPLY_READINGS":         18,
		"REPLY_NETWORKS":         19,
	}
)

Enum value maps for ReplyType.

View Source
var (
	DownloadFlags_name = map[int32]string{
		0: "DOWNLOAD_FLAG_NONE",
		1: "DOWNLOAD_FLAG_METADATA_PREPEND",
		2: "DOWNLOAD_FLAG_METADATA_ONLY",
	}
	DownloadFlags_value = map[string]int32{
		"DOWNLOAD_FLAG_NONE":             0,
		"DOWNLOAD_FLAG_METADATA_PREPEND": 1,
		"DOWNLOAD_FLAG_METADATA_ONLY":    2,
	}
)

Enum value maps for DownloadFlags.

View Source
var (
	ModuleFlags_name = map[int32]string{
		0: "MODULE_FLAG_NONE",
		1: "MODULE_FLAG_INTERNAL",
	}
	ModuleFlags_value = map[string]int32{
		"MODULE_FLAG_NONE":     0,
		"MODULE_FLAG_INTERNAL": 1,
	}
)

Enum value maps for ModuleFlags.

View Source
var (
	SensorFlags_name = map[int32]string{
		0: "SENSOR_FLAG_NONE",
	}
	SensorFlags_value = map[string]int32{
		"SENSOR_FLAG_NONE": 0,
	}
)

Enum value maps for SensorFlags.

View Source
var (
	ModuleQueryType_name = map[int32]string{
		0: "MODULE_QUERY_NONE",
		1: "MODULE_QUERY_STATUS",
		2: "MODULE_QUERY_CONFIGURE",
		3: "MODULE_QUERY_RESET",
	}
	ModuleQueryType_value = map[string]int32{
		"MODULE_QUERY_NONE":      0,
		"MODULE_QUERY_STATUS":    1,
		"MODULE_QUERY_CONFIGURE": 2,
		"MODULE_QUERY_RESET":     3,
	}
)

Enum value maps for ModuleQueryType.

View Source
var (
	ModuleReplyType_name = map[int32]string{
		0: "MODULE_REPLY_NONE",
		1: "MODULE_REPLY_SUCCESS",
		2: "MODULE_REPLY_BUSY",
		3: "MODULE_REPLY_ERROR",
	}
	ModuleReplyType_value = map[string]int32{
		"MODULE_REPLY_NONE":    0,
		"MODULE_REPLY_SUCCESS": 1,
		"MODULE_REPLY_BUSY":    2,
		"MODULE_REPLY_ERROR":   3,
	}
)

Enum value maps for ModuleReplyType.

View Source
var (
	UdpStatus_name = map[int32]string{
		0: "UDP_STATUS_ONLINE",
		1: "UDP_STATUS_BYE",
	}
	UdpStatus_value = map[string]int32{
		"UDP_STATUS_ONLINE": 0,
		"UDP_STATUS_BYE":    1,
	}
)

Enum value maps for UdpStatus.

View Source
var File_fk_app_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BatteryStatus

type BatteryStatus struct {
	Voltage    uint32 `protobuf:"varint,1,opt,name=voltage,proto3" json:"voltage,omitempty"`
	Percentage uint32 `protobuf:"varint,2,opt,name=percentage,proto3" json:"percentage,omitempty"`
	// contains filtered or unexported fields
}

func (*BatteryStatus) Descriptor deprecated

func (*BatteryStatus) Descriptor() ([]byte, []int)

Deprecated: Use BatteryStatus.ProtoReflect.Descriptor instead.

func (*BatteryStatus) GetPercentage

func (x *BatteryStatus) GetPercentage() uint32

func (*BatteryStatus) GetVoltage

func (x *BatteryStatus) GetVoltage() uint32

func (*BatteryStatus) ProtoMessage

func (*BatteryStatus) ProtoMessage()

func (*BatteryStatus) ProtoReflect

func (x *BatteryStatus) ProtoReflect() protoreflect.Message

func (*BatteryStatus) Reset

func (x *BatteryStatus) Reset()

func (*BatteryStatus) String

func (x *BatteryStatus) String() string

type Capabilities

type Capabilities struct {
	Version  uint32                `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	DeviceId []byte                `protobuf:"bytes,2,opt,name=deviceId,proto3" json:"deviceId,omitempty"`
	Name     string                `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Modules  []*ModuleCapabilities `protobuf:"bytes,4,rep,name=modules,proto3" json:"modules,omitempty"`
	Sensors  []*SensorCapabilities `protobuf:"bytes,5,rep,name=sensors,proto3" json:"sensors,omitempty"`
	// contains filtered or unexported fields
}

func (*Capabilities) Descriptor deprecated

func (*Capabilities) Descriptor() ([]byte, []int)

Deprecated: Use Capabilities.ProtoReflect.Descriptor instead.

func (*Capabilities) GetDeviceId

func (x *Capabilities) GetDeviceId() []byte

func (*Capabilities) GetModules

func (x *Capabilities) GetModules() []*ModuleCapabilities

func (*Capabilities) GetName

func (x *Capabilities) GetName() string

func (*Capabilities) GetSensors

func (x *Capabilities) GetSensors() []*SensorCapabilities

func (*Capabilities) GetVersion

func (x *Capabilities) GetVersion() uint32

func (*Capabilities) ProtoMessage

func (*Capabilities) ProtoMessage()

func (*Capabilities) ProtoReflect

func (x *Capabilities) ProtoReflect() protoreflect.Message

func (*Capabilities) Reset

func (x *Capabilities) Reset()

func (*Capabilities) String

func (x *Capabilities) String() string

type ConfigureSensorQuery

type ConfigureSensorQuery struct {
	Id        uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Frequency uint32 `protobuf:"varint,2,opt,name=frequency,proto3" json:"frequency,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigureSensorQuery) Descriptor deprecated

func (*ConfigureSensorQuery) Descriptor() ([]byte, []int)

Deprecated: Use ConfigureSensorQuery.ProtoReflect.Descriptor instead.

func (*ConfigureSensorQuery) GetFrequency

func (x *ConfigureSensorQuery) GetFrequency() uint32

func (*ConfigureSensorQuery) GetId

func (x *ConfigureSensorQuery) GetId() uint32

func (*ConfigureSensorQuery) ProtoMessage

func (*ConfigureSensorQuery) ProtoMessage()

func (*ConfigureSensorQuery) ProtoReflect

func (x *ConfigureSensorQuery) ProtoReflect() protoreflect.Message

func (*ConfigureSensorQuery) Reset

func (x *ConfigureSensorQuery) Reset()

func (*ConfigureSensorQuery) String

func (x *ConfigureSensorQuery) String() string

type DataStream

type DataStream struct {
	Id      uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Time    uint64 `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	Size    uint64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
	Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
	Block   uint64 `protobuf:"varint,5,opt,name=block,proto3" json:"block,omitempty"`
	Hash    []byte `protobuf:"bytes,6,opt,name=hash,proto3" json:"hash,omitempty"`
	Name    string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Path    string `protobuf:"bytes,8,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*DataStream) Descriptor deprecated

func (*DataStream) Descriptor() ([]byte, []int)

Deprecated: Use DataStream.ProtoReflect.Descriptor instead.

func (*DataStream) GetBlock

func (x *DataStream) GetBlock() uint64

func (*DataStream) GetHash

func (x *DataStream) GetHash() []byte

func (*DataStream) GetId

func (x *DataStream) GetId() uint32

func (*DataStream) GetName

func (x *DataStream) GetName() string

func (*DataStream) GetPath

func (x *DataStream) GetPath() string

func (*DataStream) GetSize

func (x *DataStream) GetSize() uint64

func (*DataStream) GetTime

func (x *DataStream) GetTime() uint64

func (*DataStream) GetVersion

func (x *DataStream) GetVersion() uint32

func (*DataStream) ProtoMessage

func (*DataStream) ProtoMessage()

func (*DataStream) ProtoReflect

func (x *DataStream) ProtoReflect() protoreflect.Message

func (*DataStream) Reset

func (x *DataStream) Reset()

func (*DataStream) String

func (x *DataStream) String() string

type DeviceStatus

type DeviceStatus struct {
	Uptime            uint32  `protobuf:"varint,1,opt,name=uptime,proto3" json:"uptime,omitempty"`
	BatteryPercentage float32 `protobuf:"fixed32,2,opt,name=batteryPercentage,proto3" json:"batteryPercentage,omitempty"`
	BatteryVoltage    float32 `protobuf:"fixed32,3,opt,name=batteryVoltage,proto3" json:"batteryVoltage,omitempty"`
	GpsHasFix         uint32  `protobuf:"varint,4,opt,name=gpsHasFix,proto3" json:"gpsHasFix,omitempty"`
	GpsSatellites     uint32  `protobuf:"varint,5,opt,name=gpsSatellites,proto3" json:"gpsSatellites,omitempty"`
	// contains filtered or unexported fields
}

func (*DeviceStatus) Descriptor deprecated

func (*DeviceStatus) Descriptor() ([]byte, []int)

Deprecated: Use DeviceStatus.ProtoReflect.Descriptor instead.

func (*DeviceStatus) GetBatteryPercentage

func (x *DeviceStatus) GetBatteryPercentage() float32

func (*DeviceStatus) GetBatteryVoltage

func (x *DeviceStatus) GetBatteryVoltage() float32

func (*DeviceStatus) GetGpsHasFix

func (x *DeviceStatus) GetGpsHasFix() uint32

func (*DeviceStatus) GetGpsSatellites

func (x *DeviceStatus) GetGpsSatellites() uint32

func (*DeviceStatus) GetUptime

func (x *DeviceStatus) GetUptime() uint32

func (*DeviceStatus) ProtoMessage

func (*DeviceStatus) ProtoMessage()

func (*DeviceStatus) ProtoReflect

func (x *DeviceStatus) ProtoReflect() protoreflect.Message

func (*DeviceStatus) Reset

func (x *DeviceStatus) Reset()

func (*DeviceStatus) String

func (x *DeviceStatus) String() string

type DirectoryEntry

type DirectoryEntry struct {
	Name      string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Path      string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	Size      uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
	Directory bool   `protobuf:"varint,4,opt,name=directory,proto3" json:"directory,omitempty"`
	// contains filtered or unexported fields
}

func (*DirectoryEntry) Descriptor deprecated

func (*DirectoryEntry) Descriptor() ([]byte, []int)

Deprecated: Use DirectoryEntry.ProtoReflect.Descriptor instead.

func (*DirectoryEntry) GetDirectory

func (x *DirectoryEntry) GetDirectory() bool

func (*DirectoryEntry) GetName

func (x *DirectoryEntry) GetName() string

func (*DirectoryEntry) GetPath

func (x *DirectoryEntry) GetPath() string

func (*DirectoryEntry) GetSize

func (x *DirectoryEntry) GetSize() uint32

func (*DirectoryEntry) ProtoMessage

func (*DirectoryEntry) ProtoMessage()

func (*DirectoryEntry) ProtoReflect

func (x *DirectoryEntry) ProtoReflect() protoreflect.Message

func (*DirectoryEntry) Reset

func (x *DirectoryEntry) Reset()

func (*DirectoryEntry) String

func (x *DirectoryEntry) String() string

type DirectoryListing

type DirectoryListing struct {
	Path         string            `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	TotalEntries uint32            `protobuf:"varint,3,opt,name=totalEntries,proto3" json:"totalEntries,omitempty"`
	Entries      []*DirectoryEntry `protobuf:"bytes,2,rep,name=entries,proto3" json:"entries,omitempty"`
	// contains filtered or unexported fields
}

func (*DirectoryListing) Descriptor deprecated

func (*DirectoryListing) Descriptor() ([]byte, []int)

Deprecated: Use DirectoryListing.ProtoReflect.Descriptor instead.

func (*DirectoryListing) GetEntries

func (x *DirectoryListing) GetEntries() []*DirectoryEntry

func (*DirectoryListing) GetPath

func (x *DirectoryListing) GetPath() string

func (*DirectoryListing) GetTotalEntries

func (x *DirectoryListing) GetTotalEntries() uint32

func (*DirectoryListing) ProtoMessage

func (*DirectoryListing) ProtoMessage()

func (*DirectoryListing) ProtoReflect

func (x *DirectoryListing) ProtoReflect() protoreflect.Message

func (*DirectoryListing) Reset

func (x *DirectoryListing) Reset()

func (*DirectoryListing) String

func (x *DirectoryListing) String() string

type DownloadFile

type DownloadFile struct {
	Id     uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Offset uint32 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Length uint32 `protobuf:"varint,3,opt,name=length,proto3" json:"length,omitempty"`
	Flags  uint32 `protobuf:"varint,4,opt,name=flags,proto3" json:"flags,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadFile) Descriptor deprecated

func (*DownloadFile) Descriptor() ([]byte, []int)

Deprecated: Use DownloadFile.ProtoReflect.Descriptor instead.

func (*DownloadFile) GetFlags

func (x *DownloadFile) GetFlags() uint32

func (*DownloadFile) GetId

func (x *DownloadFile) GetId() uint32

func (*DownloadFile) GetLength

func (x *DownloadFile) GetLength() uint32

func (*DownloadFile) GetOffset

func (x *DownloadFile) GetOffset() uint32

func (*DownloadFile) ProtoMessage

func (*DownloadFile) ProtoMessage()

func (*DownloadFile) ProtoReflect

func (x *DownloadFile) ProtoReflect() protoreflect.Message

func (*DownloadFile) Reset

func (x *DownloadFile) Reset()

func (*DownloadFile) String

func (x *DownloadFile) String() string

type DownloadFlags

type DownloadFlags int32
const (
	DownloadFlags_DOWNLOAD_FLAG_NONE             DownloadFlags = 0
	DownloadFlags_DOWNLOAD_FLAG_METADATA_PREPEND DownloadFlags = 1
	DownloadFlags_DOWNLOAD_FLAG_METADATA_ONLY    DownloadFlags = 2
)

func (DownloadFlags) Descriptor

func (DownloadFlags) Enum

func (x DownloadFlags) Enum() *DownloadFlags

func (DownloadFlags) EnumDescriptor deprecated

func (DownloadFlags) EnumDescriptor() ([]byte, []int)

Deprecated: Use DownloadFlags.Descriptor instead.

func (DownloadFlags) Number

func (DownloadFlags) String

func (x DownloadFlags) String() string

func (DownloadFlags) Type

type DownloadQuery

type DownloadQuery struct {
	Stream uint32   `protobuf:"varint,1,opt,name=stream,proto3" json:"stream,omitempty"`
	Ranges []*Range `protobuf:"bytes,3,rep,name=ranges,proto3" json:"ranges,omitempty"`
	Blocks []uint32 `protobuf:"varint,4,rep,packed,name=blocks,proto3" json:"blocks,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadQuery) Descriptor deprecated

func (*DownloadQuery) Descriptor() ([]byte, []int)

Deprecated: Use DownloadQuery.ProtoReflect.Descriptor instead.

func (*DownloadQuery) GetBlocks

func (x *DownloadQuery) GetBlocks() []uint32

func (*DownloadQuery) GetRanges

func (x *DownloadQuery) GetRanges() []*Range

func (*DownloadQuery) GetStream

func (x *DownloadQuery) GetStream() uint32

func (*DownloadQuery) ProtoMessage

func (*DownloadQuery) ProtoMessage()

func (*DownloadQuery) ProtoReflect

func (x *DownloadQuery) ProtoReflect() protoreflect.Message

func (*DownloadQuery) Reset

func (x *DownloadQuery) Reset()

func (*DownloadQuery) String

func (x *DownloadQuery) String() string

type EraseFile

type EraseFile struct {
	Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*EraseFile) Descriptor deprecated

func (*EraseFile) Descriptor() ([]byte, []int)

Deprecated: Use EraseFile.ProtoReflect.Descriptor instead.

func (*EraseFile) GetId

func (x *EraseFile) GetId() uint32

func (*EraseFile) ProtoMessage

func (*EraseFile) ProtoMessage()

func (*EraseFile) ProtoReflect

func (x *EraseFile) ProtoReflect() protoreflect.Message

func (*EraseFile) Reset

func (x *EraseFile) Reset()

func (*EraseFile) String

func (x *EraseFile) String() string

type Error

type Error struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	Delay   uint32 `protobuf:"varint,2,opt,name=delay,proto3" json:"delay,omitempty"`
	// contains filtered or unexported fields
}

func (*Error) Descriptor deprecated

func (*Error) Descriptor() ([]byte, []int)

Deprecated: Use Error.ProtoReflect.Descriptor instead.

func (*Error) GetDelay

func (x *Error) GetDelay() uint32

func (*Error) GetMessage

func (x *Error) GetMessage() string

func (*Error) ProtoMessage

func (*Error) ProtoMessage()

func (*Error) ProtoReflect

func (x *Error) ProtoReflect() protoreflect.Message

func (*Error) Reset

func (x *Error) Reset()

func (*Error) String

func (x *Error) String() string

type Fault

type Fault struct {
	Time        uint32 `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
	Code        uint32 `protobuf:"varint,2,opt,name=code,proto3" json:"code,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Debug       []byte `protobuf:"bytes,4,opt,name=debug,proto3" json:"debug,omitempty"`
	// contains filtered or unexported fields
}

func (*Fault) Descriptor deprecated

func (*Fault) Descriptor() ([]byte, []int)

Deprecated: Use Fault.ProtoReflect.Descriptor instead.

func (*Fault) GetCode

func (x *Fault) GetCode() uint32

func (*Fault) GetDebug

func (x *Fault) GetDebug() []byte

func (*Fault) GetDescription

func (x *Fault) GetDescription() string

func (*Fault) GetTime

func (x *Fault) GetTime() uint32

func (*Fault) ProtoMessage

func (*Fault) ProtoMessage()

func (*Fault) ProtoReflect

func (x *Fault) ProtoReflect() protoreflect.Message

func (*Fault) Reset

func (x *Fault) Reset()

func (*Fault) String

func (x *Fault) String() string

type File

type File struct {
	Id      uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Time    uint64 `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	Size    uint64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
	Version uint32 `protobuf:"varint,4,opt,name=version,proto3" json:"version,omitempty"`
	Name    string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Maximum uint64 `protobuf:"varint,6,opt,name=maximum,proto3" json:"maximum,omitempty"`
	// contains filtered or unexported fields
}

func (*File) Descriptor deprecated

func (*File) Descriptor() ([]byte, []int)

Deprecated: Use File.ProtoReflect.Descriptor instead.

func (*File) GetId

func (x *File) GetId() uint32

func (*File) GetMaximum

func (x *File) GetMaximum() uint64

func (*File) GetName

func (x *File) GetName() string

func (*File) GetSize

func (x *File) GetSize() uint64

func (*File) GetTime

func (x *File) GetTime() uint64

func (*File) GetVersion

func (x *File) GetVersion() uint32

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) ProtoReflect

func (x *File) ProtoReflect() protoreflect.Message

func (*File) Reset

func (x *File) Reset()

func (*File) String

func (x *File) String() string

type FileData

type FileData struct {
	Offset  uint32 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
	Data    []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Size    uint32 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
	Hash    uint32 `protobuf:"varint,4,opt,name=hash,proto3" json:"hash,omitempty"`
	Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty"`
	Id      uint32 `protobuf:"varint,6,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*FileData) Descriptor deprecated

func (*FileData) Descriptor() ([]byte, []int)

Deprecated: Use FileData.ProtoReflect.Descriptor instead.

func (*FileData) GetData

func (x *FileData) GetData() []byte

func (*FileData) GetHash

func (x *FileData) GetHash() uint32

func (*FileData) GetId

func (x *FileData) GetId() uint32

func (*FileData) GetOffset

func (x *FileData) GetOffset() uint32

func (*FileData) GetSize

func (x *FileData) GetSize() uint32

func (*FileData) GetVersion

func (x *FileData) GetVersion() uint32

func (*FileData) ProtoMessage

func (*FileData) ProtoMessage()

func (*FileData) ProtoReflect

func (x *FileData) ProtoReflect() protoreflect.Message

func (*FileData) Reset

func (x *FileData) Reset()

func (*FileData) String

func (x *FileData) String() string

type Files

type Files struct {
	Files []*File `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
	// contains filtered or unexported fields
}

func (*Files) Descriptor deprecated

func (*Files) Descriptor() ([]byte, []int)

Deprecated: Use Files.ProtoReflect.Descriptor instead.

func (*Files) GetFiles

func (x *Files) GetFiles() []*File

func (*Files) ProtoMessage

func (*Files) ProtoMessage()

func (*Files) ProtoReflect

func (x *Files) ProtoReflect() protoreflect.Message

func (*Files) Reset

func (x *Files) Reset()

func (*Files) String

func (x *Files) String() string

type Firmware

type Firmware struct {
	Version        string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	Build          string `protobuf:"bytes,2,opt,name=build,proto3" json:"build,omitempty"`
	Number         string `protobuf:"bytes,3,opt,name=number,proto3" json:"number,omitempty"`
	Timestamp      uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Hash           string `protobuf:"bytes,5,opt,name=hash,proto3" json:"hash,omitempty"`
	LogicalAddress uint64 `protobuf:"varint,6,opt,name=logical_address,json=logicalAddress,proto3" json:"logical_address,omitempty"`
	Name           string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Firmware) Descriptor deprecated

func (*Firmware) Descriptor() ([]byte, []int)

Deprecated: Use Firmware.ProtoReflect.Descriptor instead.

func (*Firmware) GetBuild

func (x *Firmware) GetBuild() string

func (*Firmware) GetHash

func (x *Firmware) GetHash() string

func (*Firmware) GetLogicalAddress

func (x *Firmware) GetLogicalAddress() uint64

func (*Firmware) GetName

func (x *Firmware) GetName() string

func (*Firmware) GetNumber

func (x *Firmware) GetNumber() string

func (*Firmware) GetTimestamp

func (x *Firmware) GetTimestamp() uint64

func (*Firmware) GetVersion

func (x *Firmware) GetVersion() string

func (*Firmware) ProtoMessage

func (*Firmware) ProtoMessage()

func (*Firmware) ProtoReflect

func (x *Firmware) ProtoReflect() protoreflect.Message

func (*Firmware) Reset

func (x *Firmware) Reset()

func (*Firmware) String

func (x *Firmware) String() string

type GpsStatus

type GpsStatus struct {
	Enabled    uint32  `protobuf:"varint,7,opt,name=enabled,proto3" json:"enabled,omitempty"`
	Fix        uint32  `protobuf:"varint,1,opt,name=fix,proto3" json:"fix,omitempty"`
	Time       uint64  `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	Satellites uint32  `protobuf:"varint,3,opt,name=satellites,proto3" json:"satellites,omitempty"`
	Longitude  float32 `protobuf:"fixed32,4,opt,name=longitude,proto3" json:"longitude,omitempty"`
	Latitude   float32 `protobuf:"fixed32,5,opt,name=latitude,proto3" json:"latitude,omitempty"`
	Altitude   float32 `protobuf:"fixed32,6,opt,name=altitude,proto3" json:"altitude,omitempty"`
	// contains filtered or unexported fields
}

func (*GpsStatus) Descriptor deprecated

func (*GpsStatus) Descriptor() ([]byte, []int)

Deprecated: Use GpsStatus.ProtoReflect.Descriptor instead.

func (*GpsStatus) GetAltitude

func (x *GpsStatus) GetAltitude() float32

func (*GpsStatus) GetEnabled

func (x *GpsStatus) GetEnabled() uint32

func (*GpsStatus) GetFix

func (x *GpsStatus) GetFix() uint32

func (*GpsStatus) GetLatitude

func (x *GpsStatus) GetLatitude() float32

func (*GpsStatus) GetLongitude

func (x *GpsStatus) GetLongitude() float32

func (*GpsStatus) GetSatellites

func (x *GpsStatus) GetSatellites() uint32

func (*GpsStatus) GetTime

func (x *GpsStatus) GetTime() uint64

func (*GpsStatus) ProtoMessage

func (*GpsStatus) ProtoMessage()

func (*GpsStatus) ProtoReflect

func (x *GpsStatus) ProtoReflect() protoreflect.Message

func (*GpsStatus) Reset

func (x *GpsStatus) Reset()

func (*GpsStatus) String

func (x *GpsStatus) String() string

type HardwareStatus

type HardwareStatus struct {
	// contains filtered or unexported fields
}

func (*HardwareStatus) Descriptor deprecated

func (*HardwareStatus) Descriptor() ([]byte, []int)

Deprecated: Use HardwareStatus.ProtoReflect.Descriptor instead.

func (*HardwareStatus) ProtoMessage

func (*HardwareStatus) ProtoMessage()

func (*HardwareStatus) ProtoReflect

func (x *HardwareStatus) ProtoReflect() protoreflect.Message

func (*HardwareStatus) Reset

func (x *HardwareStatus) Reset()

func (*HardwareStatus) String

func (x *HardwareStatus) String() string

type HttpQuery

type HttpQuery struct {
	Type            QueryType        `protobuf:"varint,1,opt,name=type,proto3,enum=fk_app.QueryType" json:"type,omitempty"`
	Identity        *Identity        `protobuf:"bytes,2,opt,name=identity,proto3" json:"identity,omitempty"`
	Recording       *Recording       `protobuf:"bytes,3,opt,name=recording,proto3" json:"recording,omitempty"`
	Schedules       *Schedules       `protobuf:"bytes,4,opt,name=schedules,proto3" json:"schedules,omitempty"`
	NetworkSettings *NetworkSettings `protobuf:"bytes,6,opt,name=networkSettings,proto3" json:"networkSettings,omitempty"`
	LoraSettings    *LoraSettings    `protobuf:"bytes,7,opt,name=loraSettings,proto3" json:"loraSettings,omitempty"`
	Locate          *Location        `protobuf:"bytes,9,opt,name=locate,proto3" json:"locate,omitempty"`
	Transmission    *Transmission    `protobuf:"bytes,10,opt,name=transmission,proto3" json:"transmission,omitempty"`
	Directory       *ListDirectory   `protobuf:"bytes,11,opt,name=directory,proto3" json:"directory,omitempty"`
	Flags           uint32           `protobuf:"varint,5,opt,name=flags,proto3" json:"flags,omitempty"`
	Time            uint64           `protobuf:"varint,8,opt,name=time,proto3" json:"time,omitempty"`
	Counter         uint32           `protobuf:"varint,12,opt,name=counter,proto3" json:"counter,omitempty"`
	// contains filtered or unexported fields
}

func (*HttpQuery) Descriptor deprecated

func (*HttpQuery) Descriptor() ([]byte, []int)

Deprecated: Use HttpQuery.ProtoReflect.Descriptor instead.

func (*HttpQuery) GetCounter

func (x *HttpQuery) GetCounter() uint32

func (*HttpQuery) GetDirectory

func (x *HttpQuery) GetDirectory() *ListDirectory

func (*HttpQuery) GetFlags

func (x *HttpQuery) GetFlags() uint32

func (*HttpQuery) GetIdentity

func (x *HttpQuery) GetIdentity() *Identity

func (*HttpQuery) GetLocate

func (x *HttpQuery) GetLocate() *Location

func (*HttpQuery) GetLoraSettings

func (x *HttpQuery) GetLoraSettings() *LoraSettings

func (*HttpQuery) GetNetworkSettings

func (x *HttpQuery) GetNetworkSettings() *NetworkSettings

func (*HttpQuery) GetRecording

func (x *HttpQuery) GetRecording() *Recording

func (*HttpQuery) GetSchedules

func (x *HttpQuery) GetSchedules() *Schedules

func (*HttpQuery) GetTime

func (x *HttpQuery) GetTime() uint64

func (*HttpQuery) GetTransmission

func (x *HttpQuery) GetTransmission() *Transmission

func (*HttpQuery) GetType

func (x *HttpQuery) GetType() QueryType

func (*HttpQuery) ProtoMessage

func (*HttpQuery) ProtoMessage()

func (*HttpQuery) ProtoReflect

func (x *HttpQuery) ProtoReflect() protoreflect.Message

func (*HttpQuery) Reset

func (x *HttpQuery) Reset()

func (*HttpQuery) String

func (x *HttpQuery) String() string

type HttpReply

type HttpReply struct {
	Type            ReplyType             `protobuf:"varint,1,opt,name=type,proto3,enum=fk_app.ReplyType" json:"type,omitempty"`
	Errors          []*Error              `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
	Status          *Status               `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
	NetworkSettings *NetworkSettings      `protobuf:"bytes,4,opt,name=networkSettings,proto3" json:"networkSettings,omitempty"`
	LoraSettings    *LoraSettings         `protobuf:"bytes,8,opt,name=loraSettings,proto3" json:"loraSettings,omitempty"`
	Modules         []*ModuleCapabilities `protobuf:"bytes,5,rep,name=modules,proto3" json:"modules,omitempty"`
	Streams         []*DataStream         `protobuf:"bytes,6,rep,name=streams,proto3" json:"streams,omitempty"`
	LiveReadings    []*LiveReadings       `protobuf:"bytes,7,rep,name=liveReadings,proto3" json:"liveReadings,omitempty"`
	Schedules       *Schedules            `protobuf:"bytes,9,opt,name=schedules,proto3" json:"schedules,omitempty"`
	Transmission    *Transmission         `protobuf:"bytes,10,opt,name=transmission,proto3" json:"transmission,omitempty"`
	Listing         *DirectoryListing     `protobuf:"bytes,11,opt,name=listing,proto3" json:"listing,omitempty"`
	NearbyNetworks  *NearbyNetworks       `protobuf:"bytes,12,opt,name=nearbyNetworks,proto3" json:"nearbyNetworks,omitempty"`
	Faults          []*Fault              `protobuf:"bytes,13,rep,name=faults,proto3" json:"faults,omitempty"`
	// contains filtered or unexported fields
}

func (*HttpReply) Descriptor deprecated

func (*HttpReply) Descriptor() ([]byte, []int)

Deprecated: Use HttpReply.ProtoReflect.Descriptor instead.

func (*HttpReply) GetErrors

func (x *HttpReply) GetErrors() []*Error

func (*HttpReply) GetFaults

func (x *HttpReply) GetFaults() []*Fault

func (*HttpReply) GetListing

func (x *HttpReply) GetListing() *DirectoryListing

func (*HttpReply) GetLiveReadings

func (x *HttpReply) GetLiveReadings() []*LiveReadings

func (*HttpReply) GetLoraSettings

func (x *HttpReply) GetLoraSettings() *LoraSettings

func (*HttpReply) GetModules

func (x *HttpReply) GetModules() []*ModuleCapabilities

func (*HttpReply) GetNearbyNetworks

func (x *HttpReply) GetNearbyNetworks() *NearbyNetworks

func (*HttpReply) GetNetworkSettings

func (x *HttpReply) GetNetworkSettings() *NetworkSettings

func (*HttpReply) GetSchedules

func (x *HttpReply) GetSchedules() *Schedules

func (*HttpReply) GetStatus

func (x *HttpReply) GetStatus() *Status

func (*HttpReply) GetStreams

func (x *HttpReply) GetStreams() []*DataStream

func (*HttpReply) GetTransmission

func (x *HttpReply) GetTransmission() *Transmission

func (*HttpReply) GetType

func (x *HttpReply) GetType() ReplyType

func (*HttpReply) ProtoMessage

func (*HttpReply) ProtoMessage()

func (*HttpReply) ProtoReflect

func (x *HttpReply) ProtoReflect() protoreflect.Message

func (*HttpReply) Reset

func (x *HttpReply) Reset()

func (*HttpReply) String

func (x *HttpReply) String() string

type Identity

type Identity struct {
	Device   string `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
	Stream   string `protobuf:"bytes,2,opt,name=stream,proto3" json:"stream,omitempty"`
	DeviceId []byte `protobuf:"bytes,3,opt,name=deviceId,proto3" json:"deviceId,omitempty"`
	Firmware string `protobuf:"bytes,4,opt,name=firmware,proto3" json:"firmware,omitempty"`
	Build    string `protobuf:"bytes,5,opt,name=build,proto3" json:"build,omitempty"`
	Number   string `protobuf:"bytes,8,opt,name=number,proto3" json:"number,omitempty"`
	// v2
	Name         string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	GenerationId []byte `protobuf:"bytes,7,opt,name=generationId,proto3" json:"generationId,omitempty"`
	// contains filtered or unexported fields
}

func (*Identity) Descriptor deprecated

func (*Identity) Descriptor() ([]byte, []int)

Deprecated: Use Identity.ProtoReflect.Descriptor instead.

func (*Identity) GetBuild

func (x *Identity) GetBuild() string

func (*Identity) GetDevice

func (x *Identity) GetDevice() string

func (*Identity) GetDeviceId

func (x *Identity) GetDeviceId() []byte

func (*Identity) GetFirmware

func (x *Identity) GetFirmware() string

func (*Identity) GetGenerationId

func (x *Identity) GetGenerationId() []byte

func (*Identity) GetName

func (x *Identity) GetName() string

func (*Identity) GetNumber

func (x *Identity) GetNumber() string

func (*Identity) GetStream

func (x *Identity) GetStream() string

func (*Identity) ProtoMessage

func (*Identity) ProtoMessage()

func (*Identity) ProtoReflect

func (x *Identity) ProtoReflect() protoreflect.Message

func (*Identity) Reset

func (x *Identity) Reset()

func (*Identity) String

func (x *Identity) String() string

type Interval

type Interval struct {
	Start    uint64 `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"`
	End      uint64 `protobuf:"varint,2,opt,name=end,proto3" json:"end,omitempty"`
	Interval uint32 `protobuf:"varint,3,opt,name=interval,proto3" json:"interval,omitempty"`
	// contains filtered or unexported fields
}

func (*Interval) Descriptor deprecated

func (*Interval) Descriptor() ([]byte, []int)

Deprecated: Use Interval.ProtoReflect.Descriptor instead.

func (*Interval) GetEnd

func (x *Interval) GetEnd() uint64

func (*Interval) GetInterval

func (x *Interval) GetInterval() uint32

func (*Interval) GetStart

func (x *Interval) GetStart() uint64

func (*Interval) ProtoMessage

func (*Interval) ProtoMessage()

func (*Interval) ProtoReflect

func (x *Interval) ProtoReflect() protoreflect.Message

func (*Interval) Reset

func (x *Interval) Reset()

func (*Interval) String

func (x *Interval) String() string

type ListDirectory

type ListDirectory struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	Page uint32 `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDirectory) Descriptor deprecated

func (*ListDirectory) Descriptor() ([]byte, []int)

Deprecated: Use ListDirectory.ProtoReflect.Descriptor instead.

func (*ListDirectory) GetPage

func (x *ListDirectory) GetPage() uint32

func (*ListDirectory) GetPath

func (x *ListDirectory) GetPath() string

func (*ListDirectory) ProtoMessage

func (*ListDirectory) ProtoMessage()

func (*ListDirectory) ProtoReflect

func (x *ListDirectory) ProtoReflect() protoreflect.Message

func (*ListDirectory) Reset

func (x *ListDirectory) Reset()

func (*ListDirectory) String

func (x *ListDirectory) String() string

type LiveData

type LiveData struct {
	Samples []*LiveDataSample `protobuf:"bytes,1,rep,name=samples,proto3" json:"samples,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveData) Descriptor deprecated

func (*LiveData) Descriptor() ([]byte, []int)

Deprecated: Use LiveData.ProtoReflect.Descriptor instead.

func (*LiveData) GetSamples

func (x *LiveData) GetSamples() []*LiveDataSample

func (*LiveData) ProtoMessage

func (*LiveData) ProtoMessage()

func (*LiveData) ProtoReflect

func (x *LiveData) ProtoReflect() protoreflect.Message

func (*LiveData) Reset

func (x *LiveData) Reset()

func (*LiveData) String

func (x *LiveData) String() string

type LiveDataPoll

type LiveDataPoll struct {
	Interval uint32 `protobuf:"varint,1,opt,name=interval,proto3" json:"interval,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveDataPoll) Descriptor deprecated

func (*LiveDataPoll) Descriptor() ([]byte, []int)

Deprecated: Use LiveDataPoll.ProtoReflect.Descriptor instead.

func (*LiveDataPoll) GetInterval

func (x *LiveDataPoll) GetInterval() uint32

func (*LiveDataPoll) ProtoMessage

func (*LiveDataPoll) ProtoMessage()

func (*LiveDataPoll) ProtoReflect

func (x *LiveDataPoll) ProtoReflect() protoreflect.Message

func (*LiveDataPoll) Reset

func (x *LiveDataPoll) Reset()

func (*LiveDataPoll) String

func (x *LiveDataPoll) String() string

type LiveDataSample

type LiveDataSample struct {
	Sensor uint32  `protobuf:"varint,1,opt,name=sensor,proto3" json:"sensor,omitempty"`
	Time   uint64  `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"`
	Value  float32 `protobuf:"fixed32,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveDataSample) Descriptor deprecated

func (*LiveDataSample) Descriptor() ([]byte, []int)

Deprecated: Use LiveDataSample.ProtoReflect.Descriptor instead.

func (*LiveDataSample) GetSensor

func (x *LiveDataSample) GetSensor() uint32

func (*LiveDataSample) GetTime

func (x *LiveDataSample) GetTime() uint64

func (*LiveDataSample) GetValue

func (x *LiveDataSample) GetValue() float32

func (*LiveDataSample) ProtoMessage

func (*LiveDataSample) ProtoMessage()

func (*LiveDataSample) ProtoReflect

func (x *LiveDataSample) ProtoReflect() protoreflect.Message

func (*LiveDataSample) Reset

func (x *LiveDataSample) Reset()

func (*LiveDataSample) String

func (x *LiveDataSample) String() string

type LiveModuleReadings

type LiveModuleReadings struct {
	Module   *ModuleCapabilities  `protobuf:"bytes,1,opt,name=module,proto3" json:"module,omitempty"`
	Readings []*LiveSensorReading `protobuf:"bytes,2,rep,name=readings,proto3" json:"readings,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveModuleReadings) Descriptor deprecated

func (*LiveModuleReadings) Descriptor() ([]byte, []int)

Deprecated: Use LiveModuleReadings.ProtoReflect.Descriptor instead.

func (*LiveModuleReadings) GetModule

func (x *LiveModuleReadings) GetModule() *ModuleCapabilities

func (*LiveModuleReadings) GetReadings

func (x *LiveModuleReadings) GetReadings() []*LiveSensorReading

func (*LiveModuleReadings) ProtoMessage

func (*LiveModuleReadings) ProtoMessage()

func (*LiveModuleReadings) ProtoReflect

func (x *LiveModuleReadings) ProtoReflect() protoreflect.Message

func (*LiveModuleReadings) Reset

func (x *LiveModuleReadings) Reset()

func (*LiveModuleReadings) String

func (x *LiveModuleReadings) String() string

type LiveReadings

type LiveReadings struct {
	Time    uint64                `protobuf:"varint,1,opt,name=time,proto3" json:"time,omitempty"`
	Modules []*LiveModuleReadings `protobuf:"bytes,2,rep,name=modules,proto3" json:"modules,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveReadings) Descriptor deprecated

func (*LiveReadings) Descriptor() ([]byte, []int)

Deprecated: Use LiveReadings.ProtoReflect.Descriptor instead.

func (*LiveReadings) GetModules

func (x *LiveReadings) GetModules() []*LiveModuleReadings

func (*LiveReadings) GetTime

func (x *LiveReadings) GetTime() uint64

func (*LiveReadings) ProtoMessage

func (*LiveReadings) ProtoMessage()

func (*LiveReadings) ProtoReflect

func (x *LiveReadings) ProtoReflect() protoreflect.Message

func (*LiveReadings) Reset

func (x *LiveReadings) Reset()

func (*LiveReadings) String

func (x *LiveReadings) String() string

type LiveSensorReading

type LiveSensorReading struct {
	Sensor       *SensorCapabilities `protobuf:"bytes,1,opt,name=sensor,proto3" json:"sensor,omitempty"`
	Value        float32             `protobuf:"fixed32,2,opt,name=value,proto3" json:"value,omitempty"`
	Uncalibrated float32             `protobuf:"fixed32,3,opt,name=uncalibrated,proto3" json:"uncalibrated,omitempty"`
	Factory      float32             `protobuf:"fixed32,4,opt,name=factory,proto3" json:"factory,omitempty"`
	Adc          []byte              `protobuf:"bytes,5,opt,name=adc,proto3" json:"adc,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveSensorReading) Descriptor deprecated

func (*LiveSensorReading) Descriptor() ([]byte, []int)

Deprecated: Use LiveSensorReading.ProtoReflect.Descriptor instead.

func (*LiveSensorReading) GetAdc

func (x *LiveSensorReading) GetAdc() []byte

func (*LiveSensorReading) GetFactory

func (x *LiveSensorReading) GetFactory() float32

func (*LiveSensorReading) GetSensor

func (x *LiveSensorReading) GetSensor() *SensorCapabilities

func (*LiveSensorReading) GetUncalibrated

func (x *LiveSensorReading) GetUncalibrated() float32

func (*LiveSensorReading) GetValue

func (x *LiveSensorReading) GetValue() float32

func (*LiveSensorReading) ProtoMessage

func (*LiveSensorReading) ProtoMessage()

func (*LiveSensorReading) ProtoReflect

func (x *LiveSensorReading) ProtoReflect() protoreflect.Message

func (*LiveSensorReading) Reset

func (x *LiveSensorReading) Reset()

func (*LiveSensorReading) String

func (x *LiveSensorReading) String() string

type LiveValue

type LiveValue struct {
	Valid        bool    `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
	Value        float32 `protobuf:"fixed32,2,opt,name=value,proto3" json:"value,omitempty"`
	Uncalibrated float32 `protobuf:"fixed32,3,opt,name=uncalibrated,proto3" json:"uncalibrated,omitempty"`
	// contains filtered or unexported fields
}

func (*LiveValue) Descriptor deprecated

func (*LiveValue) Descriptor() ([]byte, []int)

Deprecated: Use LiveValue.ProtoReflect.Descriptor instead.

func (*LiveValue) GetUncalibrated

func (x *LiveValue) GetUncalibrated() float32

func (*LiveValue) GetValid

func (x *LiveValue) GetValid() bool

func (*LiveValue) GetValue

func (x *LiveValue) GetValue() float32

func (*LiveValue) ProtoMessage

func (*LiveValue) ProtoMessage()

func (*LiveValue) ProtoReflect

func (x *LiveValue) ProtoReflect() protoreflect.Message

func (*LiveValue) Reset

func (x *LiveValue) Reset()

func (*LiveValue) String

func (x *LiveValue) String() string

type Location

type Location struct {
	Modifying bool    `protobuf:"varint,1,opt,name=modifying,proto3" json:"modifying,omitempty"`
	Longitude float32 `protobuf:"fixed32,2,opt,name=longitude,proto3" json:"longitude,omitempty"`
	Latitude  float32 `protobuf:"fixed32,3,opt,name=latitude,proto3" json:"latitude,omitempty"`
	Time      uint64  `protobuf:"varint,4,opt,name=time,proto3" json:"time,omitempty"`
	// contains filtered or unexported fields
}

func (*Location) Descriptor deprecated

func (*Location) Descriptor() ([]byte, []int)

Deprecated: Use Location.ProtoReflect.Descriptor instead.

func (*Location) GetLatitude

func (x *Location) GetLatitude() float32

func (*Location) GetLongitude

func (x *Location) GetLongitude() float32

func (*Location) GetModifying

func (x *Location) GetModifying() bool

func (*Location) GetTime

func (x *Location) GetTime() uint64

func (*Location) ProtoMessage

func (*Location) ProtoMessage()

func (*Location) ProtoReflect

func (x *Location) ProtoReflect() protoreflect.Message

func (*Location) Reset

func (x *Location) Reset()

func (*Location) String

func (x *Location) String() string

type LoraSettings

type LoraSettings struct {
	Available         bool   `protobuf:"varint,1,opt,name=available,proto3" json:"available,omitempty"`
	Modifying         bool   `protobuf:"varint,2,opt,name=modifying,proto3" json:"modifying,omitempty"`
	Clearing          bool   `protobuf:"varint,3,opt,name=clearing,proto3" json:"clearing,omitempty"`
	FrequencyBand     uint32 `protobuf:"varint,4,opt,name=frequencyBand,proto3" json:"frequencyBand,omitempty"`
	DeviceEui         []byte `protobuf:"bytes,5,opt,name=deviceEui,proto3" json:"deviceEui,omitempty"`
	AppKey            []byte `protobuf:"bytes,6,opt,name=appKey,proto3" json:"appKey,omitempty"`
	JoinEui           []byte `protobuf:"bytes,7,opt,name=joinEui,proto3" json:"joinEui,omitempty"`
	DeviceAddress     []byte `protobuf:"bytes,8,opt,name=deviceAddress,proto3" json:"deviceAddress,omitempty"`
	NetworkSessionKey []byte `protobuf:"bytes,9,opt,name=networkSessionKey,proto3" json:"networkSessionKey,omitempty"`
	AppSessionKey     []byte `protobuf:"bytes,10,opt,name=appSessionKey,proto3" json:"appSessionKey,omitempty"`
	// contains filtered or unexported fields
}

func (*LoraSettings) Descriptor deprecated

func (*LoraSettings) Descriptor() ([]byte, []int)

Deprecated: Use LoraSettings.ProtoReflect.Descriptor instead.

func (*LoraSettings) GetAppKey

func (x *LoraSettings) GetAppKey() []byte

func (*LoraSettings) GetAppSessionKey

func (x *LoraSettings) GetAppSessionKey() []byte

func (*LoraSettings) GetAvailable

func (x *LoraSettings) GetAvailable() bool

func (*LoraSettings) GetClearing

func (x *LoraSettings) GetClearing() bool

func (*LoraSettings) GetDeviceAddress

func (x *LoraSettings) GetDeviceAddress() []byte

func (*LoraSettings) GetDeviceEui

func (x *LoraSettings) GetDeviceEui() []byte

func (*LoraSettings) GetFrequencyBand

func (x *LoraSettings) GetFrequencyBand() uint32

func (*LoraSettings) GetJoinEui

func (x *LoraSettings) GetJoinEui() []byte

func (*LoraSettings) GetModifying

func (x *LoraSettings) GetModifying() bool

func (*LoraSettings) GetNetworkSessionKey

func (x *LoraSettings) GetNetworkSessionKey() []byte

func (*LoraSettings) ProtoMessage

func (*LoraSettings) ProtoMessage()

func (*LoraSettings) ProtoReflect

func (x *LoraSettings) ProtoReflect() protoreflect.Message

func (*LoraSettings) Reset

func (x *LoraSettings) Reset()

func (*LoraSettings) String

func (x *LoraSettings) String() string

type MemoryStatus

type MemoryStatus struct {
	SramAvailable           uint32      `protobuf:"varint,1,opt,name=sramAvailable,proto3" json:"sramAvailable,omitempty"`
	ProgramFlashAvailable   uint32      `protobuf:"varint,2,opt,name=programFlashAvailable,proto3" json:"programFlashAvailable,omitempty"`
	ExtendedMemoryAvailable uint32      `protobuf:"varint,3,opt,name=extendedMemoryAvailable,proto3" json:"extendedMemoryAvailable,omitempty"`
	DataMemoryInstalled     uint32      `protobuf:"varint,4,opt,name=dataMemoryInstalled,proto3" json:"dataMemoryInstalled,omitempty"`
	DataMemoryUsed          uint32      `protobuf:"varint,5,opt,name=dataMemoryUsed,proto3" json:"dataMemoryUsed,omitempty"`
	DataMemoryConsumption   float32     `protobuf:"fixed32,6,opt,name=dataMemoryConsumption,proto3" json:"dataMemoryConsumption,omitempty"`
	Firmware                []*Firmware `protobuf:"bytes,7,rep,name=firmware,proto3" json:"firmware,omitempty"`
	// contains filtered or unexported fields
}

func (*MemoryStatus) Descriptor deprecated

func (*MemoryStatus) Descriptor() ([]byte, []int)

Deprecated: Use MemoryStatus.ProtoReflect.Descriptor instead.

func (*MemoryStatus) GetDataMemoryConsumption

func (x *MemoryStatus) GetDataMemoryConsumption() float32

func (*MemoryStatus) GetDataMemoryInstalled

func (x *MemoryStatus) GetDataMemoryInstalled() uint32

func (*MemoryStatus) GetDataMemoryUsed

func (x *MemoryStatus) GetDataMemoryUsed() uint32

func (*MemoryStatus) GetExtendedMemoryAvailable

func (x *MemoryStatus) GetExtendedMemoryAvailable() uint32

func (*MemoryStatus) GetFirmware

func (x *MemoryStatus) GetFirmware() []*Firmware

func (*MemoryStatus) GetProgramFlashAvailable

func (x *MemoryStatus) GetProgramFlashAvailable() uint32

func (*MemoryStatus) GetSramAvailable

func (x *MemoryStatus) GetSramAvailable() uint32

func (*MemoryStatus) ProtoMessage

func (*MemoryStatus) ProtoMessage()

func (*MemoryStatus) ProtoReflect

func (x *MemoryStatus) ProtoReflect() protoreflect.Message

func (*MemoryStatus) Reset

func (x *MemoryStatus) Reset()

func (*MemoryStatus) String

func (x *MemoryStatus) String() string

type ModuleCapabilities

type ModuleCapabilities struct {
	Position uint32                `protobuf:"varint,1,opt,name=position,proto3" json:"position,omitempty"`
	Name     string                `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Sensors  []*SensorCapabilities `protobuf:"bytes,3,rep,name=sensors,proto3" json:"sensors,omitempty"`
	// v2
	Path          string        `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	Flags         uint32        `protobuf:"varint,5,opt,name=flags,proto3" json:"flags,omitempty"`
	Id            []byte        `protobuf:"bytes,6,opt,name=id,proto3" json:"id,omitempty"`
	Header        *ModuleHeader `protobuf:"bytes,7,opt,name=header,proto3" json:"header,omitempty"`
	Configuration []byte        `protobuf:"bytes,8,opt,name=configuration,proto3" json:"configuration,omitempty"`
	// contains filtered or unexported fields
}

func (*ModuleCapabilities) Descriptor deprecated

func (*ModuleCapabilities) Descriptor() ([]byte, []int)

Deprecated: Use ModuleCapabilities.ProtoReflect.Descriptor instead.

func (*ModuleCapabilities) GetConfiguration

func (x *ModuleCapabilities) GetConfiguration() []byte

func (*ModuleCapabilities) GetFlags

func (x *ModuleCapabilities) GetFlags() uint32

func (*ModuleCapabilities) GetHeader

func (x *ModuleCapabilities) GetHeader() *ModuleHeader

func (*ModuleCapabilities) GetId

func (x *ModuleCapabilities) GetId() []byte

func (*ModuleCapabilities) GetName

func (x *ModuleCapabilities) GetName() string

func (*ModuleCapabilities) GetPath

func (x *ModuleCapabilities) GetPath() string

func (*ModuleCapabilities) GetPosition

func (x *ModuleCapabilities) GetPosition() uint32

func (*ModuleCapabilities) GetSensors

func (x *ModuleCapabilities) GetSensors() []*SensorCapabilities

func (*ModuleCapabilities) ProtoMessage

func (*ModuleCapabilities) ProtoMessage()

func (*ModuleCapabilities) ProtoReflect

func (x *ModuleCapabilities) ProtoReflect() protoreflect.Message

func (*ModuleCapabilities) Reset

func (x *ModuleCapabilities) Reset()

func (*ModuleCapabilities) String

func (x *ModuleCapabilities) String() string

type ModuleFlags

type ModuleFlags int32
const (
	ModuleFlags_MODULE_FLAG_NONE     ModuleFlags = 0
	ModuleFlags_MODULE_FLAG_INTERNAL ModuleFlags = 1
)

func (ModuleFlags) Descriptor

func (ModuleFlags) Enum

func (x ModuleFlags) Enum() *ModuleFlags

func (ModuleFlags) EnumDescriptor deprecated

func (ModuleFlags) EnumDescriptor() ([]byte, []int)

Deprecated: Use ModuleFlags.Descriptor instead.

func (ModuleFlags) Number

func (x ModuleFlags) Number() protoreflect.EnumNumber

func (ModuleFlags) String

func (x ModuleFlags) String() string

func (ModuleFlags) Type

type ModuleHeader

type ModuleHeader struct {
	Manufacturer uint32 `protobuf:"varint,1,opt,name=manufacturer,proto3" json:"manufacturer,omitempty"`
	Kind         uint32 `protobuf:"varint,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Version      uint32 `protobuf:"varint,3,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*ModuleHeader) Descriptor deprecated

func (*ModuleHeader) Descriptor() ([]byte, []int)

Deprecated: Use ModuleHeader.ProtoReflect.Descriptor instead.

func (*ModuleHeader) GetKind

func (x *ModuleHeader) GetKind() uint32

func (*ModuleHeader) GetManufacturer

func (x *ModuleHeader) GetManufacturer() uint32

func (*ModuleHeader) GetVersion

func (x *ModuleHeader) GetVersion() uint32

func (*ModuleHeader) ProtoMessage

func (*ModuleHeader) ProtoMessage()

func (*ModuleHeader) ProtoReflect

func (x *ModuleHeader) ProtoReflect() protoreflect.Message

func (*ModuleHeader) Reset

func (x *ModuleHeader) Reset()

func (*ModuleHeader) String

func (x *ModuleHeader) String() string

type ModuleHttpQuery

type ModuleHttpQuery struct {
	Type          ModuleQueryType `protobuf:"varint,1,opt,name=type,proto3,enum=fk_app.ModuleQueryType" json:"type,omitempty"`
	Errors        []*Error        `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
	Configuration []byte          `protobuf:"bytes,3,opt,name=configuration,proto3" json:"configuration,omitempty"`
	// contains filtered or unexported fields
}

func (*ModuleHttpQuery) Descriptor deprecated

func (*ModuleHttpQuery) Descriptor() ([]byte, []int)

Deprecated: Use ModuleHttpQuery.ProtoReflect.Descriptor instead.

func (*ModuleHttpQuery) GetConfiguration

func (x *ModuleHttpQuery) GetConfiguration() []byte

func (*ModuleHttpQuery) GetErrors

func (x *ModuleHttpQuery) GetErrors() []*Error

func (*ModuleHttpQuery) GetType

func (x *ModuleHttpQuery) GetType() ModuleQueryType

func (*ModuleHttpQuery) ProtoMessage

func (*ModuleHttpQuery) ProtoMessage()

func (*ModuleHttpQuery) ProtoReflect

func (x *ModuleHttpQuery) ProtoReflect() protoreflect.Message

func (*ModuleHttpQuery) Reset

func (x *ModuleHttpQuery) Reset()

func (*ModuleHttpQuery) String

func (x *ModuleHttpQuery) String() string

type ModuleHttpReply

type ModuleHttpReply struct {
	Type          ModuleReplyType `protobuf:"varint,1,opt,name=type,proto3,enum=fk_app.ModuleReplyType" json:"type,omitempty"`
	Errors        []*Error        `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
	Configuration []byte          `protobuf:"bytes,3,opt,name=configuration,proto3" json:"configuration,omitempty"`
	// contains filtered or unexported fields
}

func (*ModuleHttpReply) Descriptor deprecated

func (*ModuleHttpReply) Descriptor() ([]byte, []int)

Deprecated: Use ModuleHttpReply.ProtoReflect.Descriptor instead.

func (*ModuleHttpReply) GetConfiguration

func (x *ModuleHttpReply) GetConfiguration() []byte

func (*ModuleHttpReply) GetErrors

func (x *ModuleHttpReply) GetErrors() []*Error

func (*ModuleHttpReply) GetType

func (x *ModuleHttpReply) GetType() ModuleReplyType

func (*ModuleHttpReply) ProtoMessage

func (*ModuleHttpReply) ProtoMessage()

func (*ModuleHttpReply) ProtoReflect

func (x *ModuleHttpReply) ProtoReflect() protoreflect.Message

func (*ModuleHttpReply) Reset

func (x *ModuleHttpReply) Reset()

func (*ModuleHttpReply) String

func (x *ModuleHttpReply) String() string

type ModuleQueryType

type ModuleQueryType int32
const (
	ModuleQueryType_MODULE_QUERY_NONE      ModuleQueryType = 0
	ModuleQueryType_MODULE_QUERY_STATUS    ModuleQueryType = 1
	ModuleQueryType_MODULE_QUERY_CONFIGURE ModuleQueryType = 2
	ModuleQueryType_MODULE_QUERY_RESET     ModuleQueryType = 3
)

func (ModuleQueryType) Descriptor

func (ModuleQueryType) Enum

func (x ModuleQueryType) Enum() *ModuleQueryType

func (ModuleQueryType) EnumDescriptor deprecated

func (ModuleQueryType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ModuleQueryType.Descriptor instead.

func (ModuleQueryType) Number

func (ModuleQueryType) String

func (x ModuleQueryType) String() string

func (ModuleQueryType) Type

type ModuleReply

type ModuleReply struct {
	Id      uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Address uint32 `protobuf:"varint,2,opt,name=address,proto3" json:"address,omitempty"`
	Message []byte `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ModuleReply) Descriptor deprecated

func (*ModuleReply) Descriptor() ([]byte, []int)

Deprecated: Use ModuleReply.ProtoReflect.Descriptor instead.

func (*ModuleReply) GetAddress

func (x *ModuleReply) GetAddress() uint32

func (*ModuleReply) GetId

func (x *ModuleReply) GetId() uint32

func (*ModuleReply) GetMessage

func (x *ModuleReply) GetMessage() []byte

func (*ModuleReply) ProtoMessage

func (*ModuleReply) ProtoMessage()

func (*ModuleReply) ProtoReflect

func (x *ModuleReply) ProtoReflect() protoreflect.Message

func (*ModuleReply) Reset

func (x *ModuleReply) Reset()

func (*ModuleReply) String

func (x *ModuleReply) String() string

type ModuleReplyType

type ModuleReplyType int32
const (
	ModuleReplyType_MODULE_REPLY_NONE    ModuleReplyType = 0
	ModuleReplyType_MODULE_REPLY_SUCCESS ModuleReplyType = 1
	ModuleReplyType_MODULE_REPLY_BUSY    ModuleReplyType = 2
	ModuleReplyType_MODULE_REPLY_ERROR   ModuleReplyType = 3
)

func (ModuleReplyType) Descriptor

func (ModuleReplyType) Enum

func (x ModuleReplyType) Enum() *ModuleReplyType

func (ModuleReplyType) EnumDescriptor deprecated

func (ModuleReplyType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ModuleReplyType.Descriptor instead.

func (ModuleReplyType) Number

func (ModuleReplyType) String

func (x ModuleReplyType) String() string

func (ModuleReplyType) Type

type NearbyNetwork

type NearbyNetwork struct {
	Ssid string `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
	// contains filtered or unexported fields
}

func (*NearbyNetwork) Descriptor deprecated

func (*NearbyNetwork) Descriptor() ([]byte, []int)

Deprecated: Use NearbyNetwork.ProtoReflect.Descriptor instead.

func (*NearbyNetwork) GetSsid

func (x *NearbyNetwork) GetSsid() string

func (*NearbyNetwork) ProtoMessage

func (*NearbyNetwork) ProtoMessage()

func (*NearbyNetwork) ProtoReflect

func (x *NearbyNetwork) ProtoReflect() protoreflect.Message

func (*NearbyNetwork) Reset

func (x *NearbyNetwork) Reset()

func (*NearbyNetwork) String

func (x *NearbyNetwork) String() string

type NearbyNetworks

type NearbyNetworks struct {
	Networks []*NearbyNetwork `protobuf:"bytes,1,rep,name=networks,proto3" json:"networks,omitempty"`
	// contains filtered or unexported fields
}

func (*NearbyNetworks) Descriptor deprecated

func (*NearbyNetworks) Descriptor() ([]byte, []int)

Deprecated: Use NearbyNetworks.ProtoReflect.Descriptor instead.

func (*NearbyNetworks) GetNetworks

func (x *NearbyNetworks) GetNetworks() []*NearbyNetwork

func (*NearbyNetworks) ProtoMessage

func (*NearbyNetworks) ProtoMessage()

func (*NearbyNetworks) ProtoReflect

func (x *NearbyNetworks) ProtoReflect() protoreflect.Message

func (*NearbyNetworks) Reset

func (x *NearbyNetworks) Reset()

func (*NearbyNetworks) String

func (x *NearbyNetworks) String() string

type NetworkInfo

type NetworkInfo struct {
	Ssid      string `protobuf:"bytes,1,opt,name=ssid,proto3" json:"ssid,omitempty"`
	Password  string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Create    bool   `protobuf:"varint,3,opt,name=create,proto3" json:"create,omitempty"`
	Preferred bool   `protobuf:"varint,4,opt,name=preferred,proto3" json:"preferred,omitempty"`
	Keeping   bool   `protobuf:"varint,5,opt,name=keeping,proto3" json:"keeping,omitempty"`
	// contains filtered or unexported fields
}

func (*NetworkInfo) Descriptor deprecated

func (*NetworkInfo) Descriptor() ([]byte, []int)

Deprecated: Use NetworkInfo.ProtoReflect.Descriptor instead.

func (*NetworkInfo) GetCreate

func (x *NetworkInfo) GetCreate() bool

func (*NetworkInfo) GetKeeping

func (x *NetworkInfo) GetKeeping() bool

func (*NetworkInfo) GetPassword

func (x *NetworkInfo) GetPassword() string

func (*NetworkInfo) GetPreferred

func (x *NetworkInfo) GetPreferred() bool

func (*NetworkInfo) GetSsid

func (x *NetworkInfo) GetSsid() string

func (*NetworkInfo) ProtoMessage

func (*NetworkInfo) ProtoMessage()

func (*NetworkInfo) ProtoReflect

func (x *NetworkInfo) ProtoReflect() protoreflect.Message

func (*NetworkInfo) Reset

func (x *NetworkInfo) Reset()

func (*NetworkInfo) String

func (x *NetworkInfo) String() string

type NetworkSettings

type NetworkSettings struct {
	CreateAccessPoint int32          `protobuf:"varint,1,opt,name=createAccessPoint,proto3" json:"createAccessPoint,omitempty"`
	Connected         *NetworkInfo   `protobuf:"bytes,3,opt,name=connected,proto3" json:"connected,omitempty"`
	MacAddress        string         `protobuf:"bytes,4,opt,name=macAddress,proto3" json:"macAddress,omitempty"`
	Modifying         bool           `protobuf:"varint,5,opt,name=modifying,proto3" json:"modifying,omitempty"`
	SupportsUdp       bool           `protobuf:"varint,6,opt,name=supportsUdp,proto3" json:"supportsUdp,omitempty"`
	Networks          []*NetworkInfo `protobuf:"bytes,2,rep,name=networks,proto3" json:"networks,omitempty"`
	// contains filtered or unexported fields
}

func (*NetworkSettings) Descriptor deprecated

func (*NetworkSettings) Descriptor() ([]byte, []int)

Deprecated: Use NetworkSettings.ProtoReflect.Descriptor instead.

func (*NetworkSettings) GetConnected

func (x *NetworkSettings) GetConnected() *NetworkInfo

func (*NetworkSettings) GetCreateAccessPoint

func (x *NetworkSettings) GetCreateAccessPoint() int32

func (*NetworkSettings) GetMacAddress

func (x *NetworkSettings) GetMacAddress() string

func (*NetworkSettings) GetModifying

func (x *NetworkSettings) GetModifying() bool

func (*NetworkSettings) GetNetworks

func (x *NetworkSettings) GetNetworks() []*NetworkInfo

func (*NetworkSettings) GetSupportsUdp

func (x *NetworkSettings) GetSupportsUdp() bool

func (*NetworkSettings) ProtoMessage

func (*NetworkSettings) ProtoMessage()

func (*NetworkSettings) ProtoReflect

func (x *NetworkSettings) ProtoReflect() protoreflect.Message

func (*NetworkSettings) Reset

func (x *NetworkSettings) Reset()

func (*NetworkSettings) String

func (x *NetworkSettings) String() string

type PowerStatus

type PowerStatus struct {
	Battery *BatteryStatus `protobuf:"bytes,1,opt,name=battery,proto3" json:"battery,omitempty"`
	Solar   *SolarStatus   `protobuf:"bytes,2,opt,name=solar,proto3" json:"solar,omitempty"`
	// contains filtered or unexported fields
}

func (*PowerStatus) Descriptor deprecated

func (*PowerStatus) Descriptor() ([]byte, []int)

Deprecated: Use PowerStatus.ProtoReflect.Descriptor instead.

func (*PowerStatus) GetBattery

func (x *PowerStatus) GetBattery() *BatteryStatus

func (*PowerStatus) GetSolar

func (x *PowerStatus) GetSolar() *SolarStatus

func (*PowerStatus) ProtoMessage

func (*PowerStatus) ProtoMessage()

func (*PowerStatus) ProtoReflect

func (x *PowerStatus) ProtoReflect() protoreflect.Message

func (*PowerStatus) Reset

func (x *PowerStatus) Reset()

func (*PowerStatus) String

func (x *PowerStatus) String() string

type QueryCapabilities

type QueryCapabilities struct {
	Version    uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	CallerTime uint32 `protobuf:"varint,2,opt,name=callerTime,proto3" json:"callerTime,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryCapabilities) Descriptor deprecated

func (*QueryCapabilities) Descriptor() ([]byte, []int)

Deprecated: Use QueryCapabilities.ProtoReflect.Descriptor instead.

func (*QueryCapabilities) GetCallerTime

func (x *QueryCapabilities) GetCallerTime() uint32

func (*QueryCapabilities) GetVersion

func (x *QueryCapabilities) GetVersion() uint32

func (*QueryCapabilities) ProtoMessage

func (*QueryCapabilities) ProtoMessage()

func (*QueryCapabilities) ProtoReflect

func (x *QueryCapabilities) ProtoReflect() protoreflect.Message

func (*QueryCapabilities) Reset

func (x *QueryCapabilities) Reset()

func (*QueryCapabilities) String

func (x *QueryCapabilities) String() string

type QueryFlags

type QueryFlags int32
const (
	QueryFlags_QUERY_FLAGS_NONE QueryFlags = 0
	QueryFlags_QUERY_FLAGS_LOGS QueryFlags = 1
)

func (QueryFlags) Descriptor

func (QueryFlags) Descriptor() protoreflect.EnumDescriptor

func (QueryFlags) Enum

func (x QueryFlags) Enum() *QueryFlags

func (QueryFlags) EnumDescriptor deprecated

func (QueryFlags) EnumDescriptor() ([]byte, []int)

Deprecated: Use QueryFlags.Descriptor instead.

func (QueryFlags) Number

func (x QueryFlags) Number() protoreflect.EnumNumber

func (QueryFlags) String

func (x QueryFlags) String() string

func (QueryFlags) Type

type QueryModule

type QueryModule struct {
	Id      uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Address uint32 `protobuf:"varint,2,opt,name=address,proto3" json:"address,omitempty"`
	Message []byte `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryModule) Descriptor deprecated

func (*QueryModule) Descriptor() ([]byte, []int)

Deprecated: Use QueryModule.ProtoReflect.Descriptor instead.

func (*QueryModule) GetAddress

func (x *QueryModule) GetAddress() uint32

func (*QueryModule) GetId

func (x *QueryModule) GetId() uint32

func (*QueryModule) GetMessage

func (x *QueryModule) GetMessage() []byte

func (*QueryModule) ProtoMessage

func (*QueryModule) ProtoMessage()

func (*QueryModule) ProtoReflect

func (x *QueryModule) ProtoReflect() protoreflect.Message

func (*QueryModule) Reset

func (x *QueryModule) Reset()

func (*QueryModule) String

func (x *QueryModule) String() string

type QueryType

type QueryType int32
const (
	QueryType_QUERY_NONE                       QueryType = 0
	QueryType_QUERY_CAPABILITIES               QueryType = 1
	QueryType_QUERY_CONFIGURE_SENSOR           QueryType = 2
	QueryType_QUERY_LIVE_DATA_POLL             QueryType = 7
	QueryType_QUERY_SCHEDULES                  QueryType = 8
	QueryType_QUERY_CONFIGURE_SCHEDULES        QueryType = 9
	QueryType_QUERY_FILES_SD                   QueryType = 10
	QueryType_QUERY_DOWNLOAD_FILE              QueryType = 11
	QueryType_QUERY_ERASE_FILE                 QueryType = 12
	QueryType_QUERY_RESET                      QueryType = 13
	QueryType_QUERY_NETWORK_SETTINGS           QueryType = 14
	QueryType_QUERY_CONFIGURE_NETWORK_SETTINGS QueryType = 15
	QueryType_QUERY_SCAN_MODULES               QueryType = 16
	QueryType_QUERY_CONFIGURE_IDENTITY         QueryType = 17
	QueryType_QUERY_STATUS                     QueryType = 18
	QueryType_QUERY_MODULE                     QueryType = 19
	QueryType_QUERY_METADATA                   QueryType = 20
	QueryType_QUERY_FORMAT                     QueryType = 21
	QueryType_QUERY_GET_READINGS               QueryType = 22
	QueryType_QUERY_TAKE_READINGS              QueryType = 23
	QueryType_QUERY_RECORDING_CONTROL          QueryType = 24
	QueryType_QUERY_CONFIGURE                  QueryType = 25
	QueryType_QUERY_SCAN_NETWORKS              QueryType = 26
	QueryType_QUERY_FILES_SPI                  QueryType = 27
	QueryType_QUERY_FILES_QSPI                 QueryType = 28
)

func (QueryType) Descriptor

func (QueryType) Descriptor() protoreflect.EnumDescriptor

func (QueryType) Enum

func (x QueryType) Enum() *QueryType

func (QueryType) EnumDescriptor deprecated

func (QueryType) EnumDescriptor() ([]byte, []int)

Deprecated: Use QueryType.Descriptor instead.

func (QueryType) Number

func (x QueryType) Number() protoreflect.EnumNumber

func (QueryType) String

func (x QueryType) String() string

func (QueryType) Type

type Range

type Range struct {
	Start uint32 `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"`
	End   uint32 `protobuf:"varint,2,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*Range) Descriptor deprecated

func (*Range) Descriptor() ([]byte, []int)

Deprecated: Use Range.ProtoReflect.Descriptor instead.

func (*Range) GetEnd

func (x *Range) GetEnd() uint32

func (*Range) GetStart

func (x *Range) GetStart() uint32

func (*Range) ProtoMessage

func (*Range) ProtoMessage()

func (*Range) ProtoReflect

func (x *Range) ProtoReflect() protoreflect.Message

func (*Range) Reset

func (x *Range) Reset()

func (*Range) String

func (x *Range) String() string

type Recording

type Recording struct {
	Modifying   bool      `protobuf:"varint,1,opt,name=modifying,proto3" json:"modifying,omitempty"`
	Enabled     bool      `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	StartedTime uint64    `protobuf:"varint,3,opt,name=startedTime,proto3" json:"startedTime,omitempty"`
	Location    *Location `protobuf:"bytes,4,opt,name=location,proto3" json:"location,omitempty"`
	// contains filtered or unexported fields
}

func (*Recording) Descriptor deprecated

func (*Recording) Descriptor() ([]byte, []int)

Deprecated: Use Recording.ProtoReflect.Descriptor instead.

func (*Recording) GetEnabled

func (x *Recording) GetEnabled() bool

func (*Recording) GetLocation

func (x *Recording) GetLocation() *Location

func (*Recording) GetModifying

func (x *Recording) GetModifying() bool

func (*Recording) GetStartedTime

func (x *Recording) GetStartedTime() uint64

func (*Recording) ProtoMessage

func (*Recording) ProtoMessage()

func (*Recording) ProtoReflect

func (x *Recording) ProtoReflect() protoreflect.Message

func (*Recording) Reset

func (x *Recording) Reset()

func (*Recording) String

func (x *Recording) String() string

type ReplyType

type ReplyType int32
const (
	ReplyType_REPLY_NONE             ReplyType = 0
	ReplyType_REPLY_SUCCESS          ReplyType = 1
	ReplyType_REPLY_BUSY             ReplyType = 2
	ReplyType_REPLY_ERROR            ReplyType = 3
	ReplyType_REPLY_CAPABILITIES     ReplyType = 4
	ReplyType_REPLY_LIVE_DATA_POLL   ReplyType = 8
	ReplyType_REPLY_SCHEDULES        ReplyType = 9
	ReplyType_REPLY_FILES            ReplyType = 10
	ReplyType_REPLY_DOWNLOAD_FILE    ReplyType = 11
	ReplyType_REPLY_RESET            ReplyType = 12
	ReplyType_REPLY_NETWORK_SETTINGS ReplyType = 13
	ReplyType_REPLY_IDENTITY         ReplyType = 14
	ReplyType_REPLY_STATUS           ReplyType = 15
	ReplyType_REPLY_MODULE           ReplyType = 16
	ReplyType_REPLY_METADATA         ReplyType = 17
	ReplyType_REPLY_READINGS         ReplyType = 18
	ReplyType_REPLY_NETWORKS         ReplyType = 19
)

func (ReplyType) Descriptor

func (ReplyType) Descriptor() protoreflect.EnumDescriptor

func (ReplyType) Enum

func (x ReplyType) Enum() *ReplyType

func (ReplyType) EnumDescriptor deprecated

func (ReplyType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ReplyType.Descriptor instead.

func (ReplyType) Number

func (x ReplyType) Number() protoreflect.EnumNumber

func (ReplyType) String

func (x ReplyType) String() string

func (ReplyType) Type

type Schedule

type Schedule struct {
	Cron      []byte      `protobuf:"bytes,1,opt,name=cron,proto3" json:"cron,omitempty"`
	Interval  uint32      `protobuf:"varint,2,opt,name=interval,proto3" json:"interval,omitempty"`
	Repeated  uint32      `protobuf:"varint,3,opt,name=repeated,proto3" json:"repeated,omitempty"`
	Duration  uint32      `protobuf:"varint,4,opt,name=duration,proto3" json:"duration,omitempty"`
	Jitter    uint32      `protobuf:"varint,5,opt,name=jitter,proto3" json:"jitter,omitempty"`
	Intervals []*Interval `protobuf:"bytes,6,rep,name=intervals,proto3" json:"intervals,omitempty"`
	// contains filtered or unexported fields
}

func (*Schedule) Descriptor deprecated

func (*Schedule) Descriptor() ([]byte, []int)

Deprecated: Use Schedule.ProtoReflect.Descriptor instead.

func (*Schedule) GetCron

func (x *Schedule) GetCron() []byte

func (*Schedule) GetDuration

func (x *Schedule) GetDuration() uint32

func (*Schedule) GetInterval

func (x *Schedule) GetInterval() uint32

func (*Schedule) GetIntervals

func (x *Schedule) GetIntervals() []*Interval

func (*Schedule) GetJitter

func (x *Schedule) GetJitter() uint32

func (*Schedule) GetRepeated

func (x *Schedule) GetRepeated() uint32

func (*Schedule) ProtoMessage

func (*Schedule) ProtoMessage()

func (*Schedule) ProtoReflect

func (x *Schedule) ProtoReflect() protoreflect.Message

func (*Schedule) Reset

func (x *Schedule) Reset()

func (*Schedule) String

func (x *Schedule) String() string

type Schedules

type Schedules struct {
	Modifying bool      `protobuf:"varint,1,opt,name=modifying,proto3" json:"modifying,omitempty"`
	Readings  *Schedule `protobuf:"bytes,2,opt,name=readings,proto3" json:"readings,omitempty"`
	Lora      *Schedule `protobuf:"bytes,3,opt,name=lora,proto3" json:"lora,omitempty"`
	Network   *Schedule `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
	Gps       *Schedule `protobuf:"bytes,5,opt,name=gps,proto3" json:"gps,omitempty"`
	// contains filtered or unexported fields
}

func (*Schedules) Descriptor deprecated

func (*Schedules) Descriptor() ([]byte, []int)

Deprecated: Use Schedules.ProtoReflect.Descriptor instead.

func (*Schedules) GetGps

func (x *Schedules) GetGps() *Schedule

func (*Schedules) GetLora

func (x *Schedules) GetLora() *Schedule

func (*Schedules) GetModifying

func (x *Schedules) GetModifying() bool

func (*Schedules) GetNetwork

func (x *Schedules) GetNetwork() *Schedule

func (*Schedules) GetReadings

func (x *Schedules) GetReadings() *Schedule

func (*Schedules) ProtoMessage

func (*Schedules) ProtoMessage()

func (*Schedules) ProtoReflect

func (x *Schedules) ProtoReflect() protoreflect.Message

func (*Schedules) Reset

func (x *Schedules) Reset()

func (*Schedules) String

func (x *Schedules) String() string

type SensorCapabilities

type SensorCapabilities struct {
	Number                    uint32 `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Module                    uint32 `protobuf:"varint,2,opt,name=module,proto3" json:"module,omitempty"`
	Name                      string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Frequency                 uint32 `protobuf:"varint,4,opt,name=frequency,proto3" json:"frequency,omitempty"`
	UnitOfMeasure             string `protobuf:"bytes,5,opt,name=unitOfMeasure,proto3" json:"unitOfMeasure,omitempty"`
	UncalibratedUnitOfMeasure string `protobuf:"bytes,9,opt,name=uncalibratedUnitOfMeasure,proto3" json:"uncalibratedUnitOfMeasure,omitempty"`
	// v2
	Path  string     `protobuf:"bytes,6,opt,name=path,proto3" json:"path,omitempty"`
	Flags uint32     `protobuf:"varint,7,opt,name=flags,proto3" json:"flags,omitempty"`
	Value *LiveValue `protobuf:"bytes,8,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*SensorCapabilities) Descriptor deprecated

func (*SensorCapabilities) Descriptor() ([]byte, []int)

Deprecated: Use SensorCapabilities.ProtoReflect.Descriptor instead.

func (*SensorCapabilities) GetFlags

func (x *SensorCapabilities) GetFlags() uint32

func (*SensorCapabilities) GetFrequency

func (x *SensorCapabilities) GetFrequency() uint32

func (*SensorCapabilities) GetModule

func (x *SensorCapabilities) GetModule() uint32

func (*SensorCapabilities) GetName

func (x *SensorCapabilities) GetName() string

func (*SensorCapabilities) GetNumber

func (x *SensorCapabilities) GetNumber() uint32

func (*SensorCapabilities) GetPath

func (x *SensorCapabilities) GetPath() string

func (*SensorCapabilities) GetUncalibratedUnitOfMeasure

func (x *SensorCapabilities) GetUncalibratedUnitOfMeasure() string

func (*SensorCapabilities) GetUnitOfMeasure

func (x *SensorCapabilities) GetUnitOfMeasure() string

func (*SensorCapabilities) GetValue

func (x *SensorCapabilities) GetValue() *LiveValue

func (*SensorCapabilities) ProtoMessage

func (*SensorCapabilities) ProtoMessage()

func (*SensorCapabilities) ProtoReflect

func (x *SensorCapabilities) ProtoReflect() protoreflect.Message

func (*SensorCapabilities) Reset

func (x *SensorCapabilities) Reset()

func (*SensorCapabilities) String

func (x *SensorCapabilities) String() string

type SensorFlags

type SensorFlags int32
const (
	SensorFlags_SENSOR_FLAG_NONE SensorFlags = 0
)

func (SensorFlags) Descriptor

func (SensorFlags) Enum

func (x SensorFlags) Enum() *SensorFlags

func (SensorFlags) EnumDescriptor deprecated

func (SensorFlags) EnumDescriptor() ([]byte, []int)

Deprecated: Use SensorFlags.Descriptor instead.

func (SensorFlags) Number

func (x SensorFlags) Number() protoreflect.EnumNumber

func (SensorFlags) String

func (x SensorFlags) String() string

func (SensorFlags) Type

type SolarStatus

type SolarStatus struct {
	Voltage uint32 `protobuf:"varint,1,opt,name=voltage,proto3" json:"voltage,omitempty"`
	// contains filtered or unexported fields
}

func (*SolarStatus) Descriptor deprecated

func (*SolarStatus) Descriptor() ([]byte, []int)

Deprecated: Use SolarStatus.ProtoReflect.Descriptor instead.

func (*SolarStatus) GetVoltage

func (x *SolarStatus) GetVoltage() uint32

func (*SolarStatus) ProtoMessage

func (*SolarStatus) ProtoMessage()

func (*SolarStatus) ProtoReflect

func (x *SolarStatus) ProtoReflect() protoreflect.Message

func (*SolarStatus) Reset

func (x *SolarStatus) Reset()

func (*SolarStatus) String

func (x *SolarStatus) String() string

type Status

type Status struct {
	Version   uint32           `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	Uptime    uint32           `protobuf:"varint,2,opt,name=uptime,proto3" json:"uptime,omitempty"`
	Identity  *Identity        `protobuf:"bytes,3,opt,name=identity,proto3" json:"identity,omitempty"`
	Hardware  *HardwareStatus  `protobuf:"bytes,4,opt,name=hardware,proto3" json:"hardware,omitempty"`
	Power     *PowerStatus     `protobuf:"bytes,5,opt,name=power,proto3" json:"power,omitempty"`
	Memory    *MemoryStatus    `protobuf:"bytes,6,opt,name=memory,proto3" json:"memory,omitempty"`
	Gps       *GpsStatus       `protobuf:"bytes,7,opt,name=gps,proto3" json:"gps,omitempty"`
	Schedules *Schedules       `protobuf:"bytes,8,opt,name=schedules,proto3" json:"schedules,omitempty"`
	Recording *Recording       `protobuf:"bytes,9,opt,name=recording,proto3" json:"recording,omitempty"`
	Network   *NetworkSettings `protobuf:"bytes,10,opt,name=network,proto3" json:"network,omitempty"`
	Time      uint64           `protobuf:"varint,11,opt,name=time,proto3" json:"time,omitempty"`
	Firmware  *Firmware        `protobuf:"bytes,12,opt,name=firmware,proto3" json:"firmware,omitempty"`
	Logs      string           `protobuf:"bytes,13,opt,name=logs,proto3" json:"logs,omitempty"`
	// contains filtered or unexported fields
}

func (*Status) Descriptor deprecated

func (*Status) Descriptor() ([]byte, []int)

Deprecated: Use Status.ProtoReflect.Descriptor instead.

func (*Status) GetFirmware

func (x *Status) GetFirmware() *Firmware

func (*Status) GetGps

func (x *Status) GetGps() *GpsStatus

func (*Status) GetHardware

func (x *Status) GetHardware() *HardwareStatus

func (*Status) GetIdentity

func (x *Status) GetIdentity() *Identity

func (*Status) GetLogs

func (x *Status) GetLogs() string

func (*Status) GetMemory

func (x *Status) GetMemory() *MemoryStatus

func (*Status) GetNetwork

func (x *Status) GetNetwork() *NetworkSettings

func (*Status) GetPower

func (x *Status) GetPower() *PowerStatus

func (*Status) GetRecording

func (x *Status) GetRecording() *Recording

func (*Status) GetSchedules

func (x *Status) GetSchedules() *Schedules

func (*Status) GetTime

func (x *Status) GetTime() uint64

func (*Status) GetUptime

func (x *Status) GetUptime() uint32

func (*Status) GetVersion

func (x *Status) GetVersion() uint32

func (*Status) ProtoMessage

func (*Status) ProtoMessage()

func (*Status) ProtoReflect

func (x *Status) ProtoReflect() protoreflect.Message

func (*Status) Reset

func (x *Status) Reset()

func (*Status) String

func (x *Status) String() string

type Transmission

type Transmission struct {
	Wifi *WifiTransmission `protobuf:"bytes,1,opt,name=wifi,proto3" json:"wifi,omitempty"`
	// contains filtered or unexported fields
}

func (*Transmission) Descriptor deprecated

func (*Transmission) Descriptor() ([]byte, []int)

Deprecated: Use Transmission.ProtoReflect.Descriptor instead.

func (*Transmission) GetWifi

func (x *Transmission) GetWifi() *WifiTransmission

func (*Transmission) ProtoMessage

func (*Transmission) ProtoMessage()

func (*Transmission) ProtoReflect

func (x *Transmission) ProtoReflect() protoreflect.Message

func (*Transmission) Reset

func (x *Transmission) Reset()

func (*Transmission) String

func (x *Transmission) String() string

type UdpMessage

type UdpMessage struct {
	DeviceId []byte    `protobuf:"bytes,1,opt,name=deviceId,proto3" json:"deviceId,omitempty"`
	Status   UdpStatus `protobuf:"varint,2,opt,name=status,proto3,enum=fk_app.UdpStatus" json:"status,omitempty"`
	Counter  uint32    `protobuf:"varint,3,opt,name=counter,proto3" json:"counter,omitempty"`
	Port     uint32    `protobuf:"varint,4,opt,name=port,proto3" json:"port,omitempty"`
	// contains filtered or unexported fields
}

func (*UdpMessage) Descriptor deprecated

func (*UdpMessage) Descriptor() ([]byte, []int)

Deprecated: Use UdpMessage.ProtoReflect.Descriptor instead.

func (*UdpMessage) GetCounter

func (x *UdpMessage) GetCounter() uint32

func (*UdpMessage) GetDeviceId

func (x *UdpMessage) GetDeviceId() []byte

func (*UdpMessage) GetPort

func (x *UdpMessage) GetPort() uint32

func (*UdpMessage) GetStatus

func (x *UdpMessage) GetStatus() UdpStatus

func (*UdpMessage) ProtoMessage

func (*UdpMessage) ProtoMessage()

func (*UdpMessage) ProtoReflect

func (x *UdpMessage) ProtoReflect() protoreflect.Message

func (*UdpMessage) Reset

func (x *UdpMessage) Reset()

func (*UdpMessage) String

func (x *UdpMessage) String() string

type UdpStatus

type UdpStatus int32
const (
	UdpStatus_UDP_STATUS_ONLINE UdpStatus = 0
	UdpStatus_UDP_STATUS_BYE    UdpStatus = 1
)

func (UdpStatus) Descriptor

func (UdpStatus) Descriptor() protoreflect.EnumDescriptor

func (UdpStatus) Enum

func (x UdpStatus) Enum() *UdpStatus

func (UdpStatus) EnumDescriptor deprecated

func (UdpStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use UdpStatus.Descriptor instead.

func (UdpStatus) Number

func (x UdpStatus) Number() protoreflect.EnumNumber

func (UdpStatus) String

func (x UdpStatus) String() string

func (UdpStatus) Type

type WifiTransmission

type WifiTransmission struct {
	Modifying bool   `protobuf:"varint,1,opt,name=modifying,proto3" json:"modifying,omitempty"`
	Url       string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Token     string `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"`
	Enabled   bool   `protobuf:"varint,4,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// contains filtered or unexported fields
}

func (*WifiTransmission) Descriptor deprecated

func (*WifiTransmission) Descriptor() ([]byte, []int)

Deprecated: Use WifiTransmission.ProtoReflect.Descriptor instead.

func (*WifiTransmission) GetEnabled

func (x *WifiTransmission) GetEnabled() bool

func (*WifiTransmission) GetModifying

func (x *WifiTransmission) GetModifying() bool

func (*WifiTransmission) GetToken

func (x *WifiTransmission) GetToken() string

func (*WifiTransmission) GetUrl

func (x *WifiTransmission) GetUrl() string

func (*WifiTransmission) ProtoMessage

func (*WifiTransmission) ProtoMessage()

func (*WifiTransmission) ProtoReflect

func (x *WifiTransmission) ProtoReflect() protoreflect.Message

func (*WifiTransmission) Reset

func (x *WifiTransmission) Reset()

func (*WifiTransmission) String

func (x *WifiTransmission) String() string

type WireMessageQuery

type WireMessageQuery struct {
	Type              QueryType             `protobuf:"varint,1,opt,name=type,proto3,enum=fk_app.QueryType" json:"type,omitempty"`
	QueryCapabilities *QueryCapabilities    `protobuf:"bytes,2,opt,name=queryCapabilities,proto3" json:"queryCapabilities,omitempty"`
	ConfigureSensor   *ConfigureSensorQuery `protobuf:"bytes,3,opt,name=configureSensor,proto3" json:"configureSensor,omitempty"`
	LiveDataPoll      *LiveDataPoll         `protobuf:"bytes,8,opt,name=liveDataPoll,proto3" json:"liveDataPoll,omitempty"`
	DownloadFile      *DownloadFile         `protobuf:"bytes,10,opt,name=downloadFile,proto3" json:"downloadFile,omitempty"`
	EraseFile         *EraseFile            `protobuf:"bytes,11,opt,name=eraseFile,proto3" json:"eraseFile,omitempty"`
	NetworkSettings   *NetworkSettings      `protobuf:"bytes,12,opt,name=networkSettings,proto3" json:"networkSettings,omitempty"`
	Identity          *Identity             `protobuf:"bytes,13,opt,name=identity,proto3" json:"identity,omitempty"`
	Module            *QueryModule          `protobuf:"bytes,14,opt,name=module,proto3" json:"module,omitempty"`
	// contains filtered or unexported fields
}

func (*WireMessageQuery) Descriptor deprecated

func (*WireMessageQuery) Descriptor() ([]byte, []int)

Deprecated: Use WireMessageQuery.ProtoReflect.Descriptor instead.

func (*WireMessageQuery) GetConfigureSensor

func (x *WireMessageQuery) GetConfigureSensor() *ConfigureSensorQuery

func (*WireMessageQuery) GetDownloadFile

func (x *WireMessageQuery) GetDownloadFile() *DownloadFile

func (*WireMessageQuery) GetEraseFile

func (x *WireMessageQuery) GetEraseFile() *EraseFile

func (*WireMessageQuery) GetIdentity

func (x *WireMessageQuery) GetIdentity() *Identity

func (*WireMessageQuery) GetLiveDataPoll

func (x *WireMessageQuery) GetLiveDataPoll() *LiveDataPoll

func (*WireMessageQuery) GetModule

func (x *WireMessageQuery) GetModule() *QueryModule

func (*WireMessageQuery) GetNetworkSettings

func (x *WireMessageQuery) GetNetworkSettings() *NetworkSettings

func (*WireMessageQuery) GetQueryCapabilities

func (x *WireMessageQuery) GetQueryCapabilities() *QueryCapabilities

func (*WireMessageQuery) GetType

func (x *WireMessageQuery) GetType() QueryType

func (*WireMessageQuery) ProtoMessage

func (*WireMessageQuery) ProtoMessage()

func (*WireMessageQuery) ProtoReflect

func (x *WireMessageQuery) ProtoReflect() protoreflect.Message

func (*WireMessageQuery) Reset

func (x *WireMessageQuery) Reset()

func (*WireMessageQuery) String

func (x *WireMessageQuery) String() string

type WireMessageReply

type WireMessageReply struct {
	Type            ReplyType        `protobuf:"varint,1,opt,name=type,proto3,enum=fk_app.ReplyType" json:"type,omitempty"`
	Errors          []*Error         `protobuf:"bytes,2,rep,name=errors,proto3" json:"errors,omitempty"`
	Capabilities    *Capabilities    `protobuf:"bytes,3,opt,name=capabilities,proto3" json:"capabilities,omitempty"`
	LiveData        *LiveData        `protobuf:"bytes,6,opt,name=liveData,proto3" json:"liveData,omitempty"`
	Files           *Files           `protobuf:"bytes,8,opt,name=files,proto3" json:"files,omitempty"`
	FileData        *FileData        `protobuf:"bytes,9,opt,name=fileData,proto3" json:"fileData,omitempty"`
	NetworkSettings *NetworkSettings `protobuf:"bytes,10,opt,name=networkSettings,proto3" json:"networkSettings,omitempty"`
	Identity        *Identity        `protobuf:"bytes,11,opt,name=identity,proto3" json:"identity,omitempty"`
	Status          *DeviceStatus    `protobuf:"bytes,12,opt,name=status,proto3" json:"status,omitempty"`
	Module          *ModuleReply     `protobuf:"bytes,13,opt,name=module,proto3" json:"module,omitempty"`
	// contains filtered or unexported fields
}

func (*WireMessageReply) Descriptor deprecated

func (*WireMessageReply) Descriptor() ([]byte, []int)

Deprecated: Use WireMessageReply.ProtoReflect.Descriptor instead.

func (*WireMessageReply) GetCapabilities

func (x *WireMessageReply) GetCapabilities() *Capabilities

func (*WireMessageReply) GetErrors

func (x *WireMessageReply) GetErrors() []*Error

func (*WireMessageReply) GetFileData

func (x *WireMessageReply) GetFileData() *FileData

func (*WireMessageReply) GetFiles

func (x *WireMessageReply) GetFiles() *Files

func (*WireMessageReply) GetIdentity

func (x *WireMessageReply) GetIdentity() *Identity

func (*WireMessageReply) GetLiveData

func (x *WireMessageReply) GetLiveData() *LiveData

func (*WireMessageReply) GetModule

func (x *WireMessageReply) GetModule() *ModuleReply

func (*WireMessageReply) GetNetworkSettings

func (x *WireMessageReply) GetNetworkSettings() *NetworkSettings

func (*WireMessageReply) GetStatus

func (x *WireMessageReply) GetStatus() *DeviceStatus

func (*WireMessageReply) GetType

func (x *WireMessageReply) GetType() ReplyType

func (*WireMessageReply) ProtoMessage

func (*WireMessageReply) ProtoMessage()

func (*WireMessageReply) ProtoReflect

func (x *WireMessageReply) ProtoReflect() protoreflect.Message

func (*WireMessageReply) Reset

func (x *WireMessageReply) Reset()

func (*WireMessageReply) String

func (x *WireMessageReply) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL