Como Programar Descalcificador Cillit Data [cracked] Online
void loop() // 1. Read current hardness (could be from an inline sensor or manual input) hardness_raw = read_user_hardness_setting(); // 2. Calculate consumed capacity float consumed = total_flow_m3 * 1000 * hardness_raw; // in grams equivalent
Since Cillit softeners are rebranded versions of BWT / Judo / Grünbeck technology (common in Europe), the programming logic applies to any . Programming a Cillit Water Softener: The Control Logic Modern Cillit softeners use a microcontroller (often a 16-bit PIC or STM) that tracks water flow, regenerates resin, and manages salt consumption. Below is the pseudo-code and logic blocks for programming the device. 1. Core Variables (EEPROM stored) // Cillit Softener Parameters float capacity_total = 1200.0; // Total hardness removal capacity (grains or °dH * liters) float flow_rate_lpm = 0.0; // Instant flow from turbine sensor (L/min) float total_flow_m3 = 0.0; // Cumulative water since last regeneration (m³) int hardness_raw = 25; // Inlet water hardness (set via installer menu, e.g., 25 °fH) int residual_hardness = 0; // Target residual (usually 0 for soft) int regeneration_time_hour = 2; // Regenerate at 2:00 AM 2. Hardness Capacity Calculation The system calculates how many liters it can treat before regeneration is required.
volatile unsigned int pulse_count = 0; void hall_sensor_ISR() // Interrupt on each magnet pulse pulse_count++; if (pulse_count >= PULSES_PER_LITER) // e.g., 450 pulses/L total_flow_m3 += 0.001; // add 1 liter pulse_count = 0; como programar descalcificador cillit data
if total_flow_m3 * 1000 >= available_capacity_liters * 0.85: # 85% threshold reached – schedule regeneration trigger_regeneration(immediate=False) The Cillit turbine (Hall effect sensor) counts pulses per liter.
void check_faults() if (flow_rate_lpm > 0 && hall_sensor_pulses == 0) display_error("E1 – Flow meter stuck"); if (brine_tank_empty_sensor == HIGH) display_error("E2 – Salt low"); trigger_led_flash(RED); if (motor_current > 1.5A) display_error("E3 – Valve jammed"); stop_motor(); void loop() // 1
def calculate_remaining_capacity(): # Remaining softening capacity (liters) # capacity_total = resin volume (L) * exchange capacity (eq/L) / hardness (eq/L) available_capacity_liters = capacity_total / hardness_raw
void save_installer_settings() eeprom_write(ADDR_HARDNESS, new_hardness); eeprom_write(ADDR_PERSONS, new_persons); // Recalculate capacity_total based on persons and hardness capacity_total = new_persons * 70 * new_hardness; // 70L/person/day estimate Programming a Cillit Water Softener: The Control Logic
// Step 2: Brine draw (pull salt water from brine tank) move_valve_to(BRINE_DRAW); delay_minutes(60); // typical Cillit: 45-90 min depending on model