Fixed LDR comment
This commit is contained in:
parent
af4c5e2b3e
commit
be14a52c21
|
@ -989,8 +989,8 @@ Larger ones seem to have both a higher dark resistance and a lower bright light
|
||||||
### Vitamins
|
### Vitamins
|
||||||
| Qty | Module call | BOM entry |
|
| Qty | Module call | BOM entry |
|
||||||
| ---:|:--- |:---|
|
| ---:|:--- |:---|
|
||||||
| 1 | ```ldr(large_ldr)``` | Light dependent resistor |
|
| 1 | ```ldr(large_ldr)``` | Light dependent resistor - large |
|
||||||
| 1 | ```ldr(small_ldr)``` | Light dependent resistor |
|
| 1 | ```ldr(small_ldr)``` | Light dependent resistor - small |
|
||||||
|
|
||||||
|
|
||||||
<a href="#top">Top</a>
|
<a href="#top">Top</a>
|
||||||
|
|
|
@ -33,7 +33,7 @@ function ldr_active(type) = type[6]; //! The active width
|
||||||
function ldr_lead_d(type) = type[7]; //! The lead diameter
|
function ldr_lead_d(type) = type[7]; //! The lead diameter
|
||||||
|
|
||||||
module LDR(type, lead_length = 3) { //! Draw an LDR, can specify the lead length
|
module LDR(type, lead_length = 3) { //! Draw an LDR, can specify the lead length
|
||||||
vitamin(str("ldr(", type[0], "): Light dependent resistor: ", ldr_description(type)));
|
vitamin(str("ldr(", type[0], "): Light dependent resistor - ", ldr_description(type)));
|
||||||
|
|
||||||
module shape()
|
module shape()
|
||||||
intersection() {
|
intersection() {
|
||||||
|
|
Loading…
Reference in New Issue