pin_list {pins} | R Documentation |
List all pins
Description
List names of all pins in a board. This is a low-level function; use
pin_search()
to get more data about each pin in a convenient form.
Usage
pin_list(board, ...)
Arguments
board |
A pin board, created by |
... |
Other arguments passed on to methods |
Value
A character vector
Examples
board <- board_temp()
board %>% pin_write(1:5, "x")
board %>% pin_write(letters, "y")
board %>% pin_write(runif(20), "z")
board %>% pin_list()
[Package pins version 1.3.0 Index]