Learn R Programming

pins (version 1.2.1)

pin_list: 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, ...)

Value

A character vector

Arguments

board

A pin board, created by board_folder(), board_connect(), board_url() or another board_ function.

...

Other arguments passed on to methods

Examples

Run this code
board <- board_temp()

board %>% pin_write(1:5, "x")
board %>% pin_write(letters, "y")
board %>% pin_write(runif(20), "z")

board %>% pin_list()

Run the code above in your browser using DataLab