<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Dispositivo Interface
 *
 * Used for the Real Python OOP in Java vs Python
 */
public interface Dispositivo {

   /**
    * getVoltage returns the current battery voltage
    */
   int getVoltaje();
}
</pre></body></html>