Meshtastic App
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
Meshtastic App
core-database
/
org.meshtastic.core.database.dao
/
DeviceHardwareDao
Device
Hardware
Dao
common
interface
DeviceHardwareDao
(
source
)
Members
Functions
delete
All
Link copied to clipboard
common
abstract
suspend
fun
deleteAll
(
)
get
By
Hw
Model
Link copied to clipboard
common
abstract
suspend
fun
getByHwModel
(
hwModel
:
Int
)
:
List
<
DeviceHardwareEntity
>
get
By
Model
And
Target
Link copied to clipboard
common
abstract
suspend
fun
getByModelAndTarget
(
hwModel
:
Int
,
target
:
String
)
:
DeviceHardwareEntity
?
get
By
Target
Link copied to clipboard
common
abstract
suspend
fun
getByTarget
(
target
:
String
)
:
DeviceHardwareEntity
?
insert
Link copied to clipboard
common
abstract
suspend
fun
insert
(
deviceHardware
:
DeviceHardwareEntity
)
insert
All
Link copied to clipboard
common
abstract
suspend
fun
insertAll
(
deviceHardware
:
List
<
DeviceHardwareEntity
>
)