the define section now look like this:
#define LEDPIN 13 // LED simulating heating element
#define LEDPIN 14 // LED simulating motor turning drum
#define LEDPIN 15 // LED simulating indicating drum turning reverse (used to distribute clothes)
#define ONE_WIRE_BUS 16 // Data wire from dallas chips
#define humidpin 17 // humidity sensor
#define waterpin 18 // watertank full
#define currentpin 19 // analog voltage input from current clamp
#define airflowpin 20 // analog voltage from airflow sensor
and part where i set if pin is output/input has changed to:
pinMode(13, OUTPUT); // heating element
pinMode(14, OUTPUT); // drum motor
pinMode(15, OUTPUT); // drum reverse
pinMode(16, INPUT); // DS18B20 one wire bus
pinMode(17, INPUT); // humidity sensor
pinMode(18, INPUT); // watertank full
pinMode(19, INPUT); // current clamp
pinMode(20, INPUT); // airflow