akshmakov / eeshow

Fork/Mirror of http://neo900.org/git/eeshow preserving history
GNU General Public License v2.0
3 stars 2 forks source link

"..." not found #2

Open danielkucera opened 4 years ago

danielkucera commented 4 years ago
$ docker run -v "$(pwd)":/tmp:rw eeshow -o /tmp/schema.pdf /tmp/wiring.sch
"Screw_Terminal_1x02" not found
"D" not found
"D" not found
"D_Zener" not found
"BC817-40" not found
"R" not found
"D" not found
"Test_Point-Connector1" not found
"GND" not found
"LM358" not found
"R" not found
"LM358" not found
"D_Zener" not found
"POT" not found
"LM2596S-ADJ" not found
"CP" not found
"D" not found
"L" not found
"CP" not found
"R" not found
"R" not found
"R" not found
"R" not found
"ESP-01v090" not found
"GND" not found
"GND" not found
"GND" not found
"GND" not found
"ESP-12" not found
"LM358" not found
"GND" not found
"Conn_01x04_Male" not found
"R" not found
"Conn_01x01_Male" not found
"C" not found

What should I do to fix this? This is the output: schema.pdf

thejpster commented 4 years ago

I see this too.

thejpster commented 4 years ago

There's a fix in PR #3

danielkucera commented 4 years ago

@thejpster do you have an image built and plan to maintain it on dockerhub?

danielkucera commented 4 years ago

I've tried your fix but it still fails:

docker run --rm -v ~/Projects/esp8266-ebus/schema/:/tmp/ -w=/tmp eeshow eeplot -o schema.pdf wiring.pro
"wiring-rescue_Screw_Terminal_1x02" not found
"wiring-rescue_D" not found
"wiring-rescue_D" not found
"wiring-rescue_D_Zener" not found
"wiring-rescue_BC817-40" not found
"wiring-rescue_R" not found
"wiring-rescue_D" not found
"wiring-rescue_Test_Point-Connector1" not found
"power_GND" not found
"Amplifier_Operational_LM358" not found
"Device_R" not found
"Amplifier_Operational_LM358" not found
"Device_CP" not found
"Device_R" not found
"Device_R" not found
"ESP8266_ESP-01v090" not found
"power_GND" not found
"power_GND" not found
"power_GND" not found
"power_GND" not found
"ESP8266_ESP-12" not found
"Amplifier_Operational_LM358" not found
"Device_R" not found
"power_+3V3" not found
"power_+3V3" not found
"power_GND" not found
"power_+3V3" not found
"power_GND" not found
"wiring-rescue_POT" not found
"Device_D_Zener" not found
"mp2307_MP2307" not found
"Device_R" not found
"Device_L" not found
"Device_C" not found
"Device_C" not found
"power_GND" not found
"power_GND" not found
"Device_C" not found
"Device_R" not found
"power_GND" not found
"Device_D_Schottky" not found
"power_GND" not found
"Device_R" not found
"Device_R" not found
"power_GND" not found
"Device_CP" not found
"power_+3V3" not found
"power_GND" not found
"Device_CP" not found
"Device_C" not found
"power_GND" not found
"Device_C" not found
"Connector_Conn_01x02_Male" not found
"Connector_Conn_01x02_Male" not found
"Connector_Conn_01x02_Male" not found
"Connector_Conn_01x02_Male" not found
"Device_R" not found
"Device_R" not found
"power_+3V3" not found
"Device_R" not found
"Device_R" not found

at least the last component seems to be present here:

~/Projects/esp8266-ebus/schema$ grep Device_R * -R
wiring-cache.lib:# Device_R
wiring-cache.lib:DEF Device_R R 0 0 N Y 1 F N
wiring-cache.lib:F1 "Device_R" 0 0 50 V V C CNN

@thejpster, can you advice how to fix this?

danielkucera commented 4 years ago

Okay, i fixed it. It was not loading any .lib file. When I run:

$ docker run --rm -v ~/Projects/esp8266-ebus/schema/:/tmp/ -w=/tmp eeshow eeplot -o schema.pdf wiring.sch wiring-cache.lib

It works! Thanks :)