Hi All, I'm new so please feel free to tell me I've messed up!
I've had my Arduino several months. worked through the projects then thought I would make something I could do with.
The code is slowly going in and the more I do the better I get on. Hardware I'm good with
My code below is for an environment controller to dry cure sausage, it has a DHT (humidity/temp) sensor, relays for heater, fridge and humidifier the code for this I achieved and works, my next development is to add weigh cells using analogue to digital converter (hx711). I copied and pasted the code as I thought best as I don't understand the part to alter the calibration value (lines 156-162) and it produces the error.
It's still in development as I like to get it working in stages.
I'm looking for guidance to make the code so far work and also suggestions if needed.
Many Thanks Noel
Using library DHT sensor library in folder: C:\Program Files (x86)\Arduino\libraries\DHT-sensor-library-master
Using library HX711-master in folder: C:\Users\Noel\Documents\Arduino\libraries\HX711-master (legacy)
Using library LiquidCrystal in folder: C:\Users\Noel\Documents\Arduino\libraries\LiquidCrystal
C:\Users\Noel\AppData\Roaming\Arduino15\packages\arduino\tools\avr-gcc\4.8.1-arduino2/bin/avr-g++ -c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10605 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR -IC:\Users\Noel\AppData\Roaming\Arduino15\packages\arduino\hardware\avr\1.6.2\cores\arduino -IC:\Users\Noel\AppData\Roaming\Arduino15\packages\arduino\hardware\avr\1.6.2\variants\standard -IC:\Program Files (x86)\Arduino\libraries\DHT-sensor-library-master -IC:\Users\Noel\Documents\Arduino\libraries\HX711-master -IC:\Users\Noel\Documents\Arduino\libraries\LiquidCrystal\src C:\Users\Noel\AppData\Local\Temp\build5886731554843320354.tmp\Fridge_Project1.ino.cpp -o C:\Users\Noel\AppData\Local\Temp\build5886731554843320354.tmp\Fridge_Project1.ino.cpp.o
Fridge_Project1.ino.ino: In function 'void loop()':
Fridge_Project1.ino.ino:160:26: error: lvalue required as left operand of assignment
Fridge_Project1.ino.ino:162:24: error: lvalue required as left operand of assignment
Multiple libraries were found for "LiquidCrystal.h"Used: C:\Users\Noel\Documents\Arduino\libraries\LiquidCrystal
Not used: C:\Users\Noel\Documents\Arduino\libraries\LiquidCrystal-I2C
lvalue required as left operand of assignment
Fridge_Project1.ino.ino (4.23 KB)