v1.14.3: Fix switch entities not appearing (VIDITELNOSTPRIKONU)
Switch platform was re-calling get_entity_type()/is_writable() at setup time, both of which only check descriptor configs. Entities without descriptors (like VIDITELNOSTPRIKONU) always got 'sensor'/non-writable and were silently dropped.
Fix: switch.py now uses coordinator.get_entities_by_type('switch'), reading from the already-resolved coordinator.entities type map — identical to how sensor.py works. VIDITELNOSTPRIKONU and any other _BOOL_i entities without descriptors now correctly appear as switches.