/**
 * Dispositivo Interface
 *
 * Used for the Real Python OOP in Java vs Python
 */
public interface Dispositivo {

   /**
    * getVoltage returns the current battery voltage
    */
   int getVoltaje();
}
