R/supported_devices.R

Defines functions supported_devices

Documented in supported_devices

#' Get all the supported devices in LightLogR
#'
#' Returns a vector of all the supported devices in LightLogR.
#'
#' These are all supported devices where there is a dedicated import function.
#' Import functions can be called either through [import_Dataset()] with the
#' respective `device = "device"` argument, or directly, e.g.,
#' `import$ActLumus()`.
#'
#' @return A character vector of all supported devices
#' @export
#' @seealso [import_Dataset]
#'
#' @examples supported_devices()
supported_devices <- function() {
  names(import_expr)[order(names(import_expr))]
}

Try the LightLogR package in your browser

Any scripts or data that you put into this service are public.

LightLogR documentation built on April 3, 2025, 10:10 p.m.