The MAX6675 driver comes from https://github.com/adafruit/MAX6675-library, which is archived. Its manifest declares depends=LiquidCrystal (for an LCD example), pulling an unused display library into every env — worked around with lib_ignore in 82c0d7f, but the underlying dep won't be fixed upstream.
Evaluate a maintained replacement, e.g.:
- adafruit/Adafruit MAX31855 (if hardware ever moves to MAX31855)
- a maintained MAX6675 fork or a minimal in-tree SPI read (the protocol is a 16-bit read)
Then drop the lib_ignore workaround.
The MAX6675 driver comes from https://github.com/adafruit/MAX6675-library, which is archived. Its manifest declares
depends=LiquidCrystal(for an LCD example), pulling an unused display library into every env — worked around withlib_ignorein 82c0d7f, but the underlying dep won't be fixed upstream.Evaluate a maintained replacement, e.g.:
Then drop the
lib_ignoreworkaround.