Name

name is the optional name field of an JITX object. Use it to store a descriptive name as a String for human designers reading JITX.

Syntax

pcb-component component :
  name = "ADM7150"

pcb-pad smd-pad (anchor:Anchor, w:Double, h:Double) :
  name = to-string("%_x%_ %_ SMD Pad" % [w,h,anchor])

pcb-module band-pass-filter :
  name = "Band-pass filter"

Description

name = "ADM7150" Name this component "ADM7150"

name = to-string("%_x%_ %_ SMD Pad" % [w,h,anchor]) Name this pad by constructing a name passed to a paramteric pad function

name = "Band-pass filter" Name this module "Band-pass filter"