public static void putData(NamedSendable value) { SmartDashboard.putData(value); }
/** * Maps the specified key (where the key is the name of the {@link NamedSendable} * SmartDashboardNamedData to the specified value in this table. The value can be retrieved by * calling the get method with a key that is equal to the original key. * * @param value the value * @throws IllegalArgumentException If key is null */ public static void putData(NamedSendable value) { putData(value.getName(), value); }
/** * Maps the specified key (where the key is the name of the {@link SmartDashboardNamedData} * to the specified value in this table. * The value can be retrieved by calling the get method with a key that is equal to the original key. * @param value the value * @throws IllegalArgumentException if key is null */ public static void putData(NamedSendable value) { putData(value.getName(), value); }