chipName()

[Circuit Interface]
void chipName(const char *name);

Description

Defines the name for the custom element.

Parameters

name: the string you want to assign as name.

Returns

Nothing.

Example Code

Sets chip name to “IC7447”.


void setup() {
   chipName("IC7447");
}

void loop() {}

Notes and Warnings

This function can work properly only in the setup context, calling it in the loop context won’t result in a chip name change.