Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature currently requires accessing the site using the built-in Safari browser.
if (usb_kbhit(1)) // Si hay un paquete de datos en el buffer lo tomamos y guardamos en la variable recibido
{
usb_get_packet(1,recibido, 8);
switch(recibido[0])
{
case '0':
alternar(LED_VERDE);
break;
case '1':
alternar(LED_ROJO);
break;
case '2':
alternar(LED_ROJO);
alternar(LED_VERDE);
break;
default:
apagar(LED_ROJO);
apagar(LED_VERDE);
break;
}
enviado[0]=recibido[0];
usb_put_packet(1,enviado,8,USB_DTS_TOGGLE);
Moyano Jonathan dijo:Si si se puede , igual haciendo averiguaciones la cantidad de corriente está un poco más limitada que 500mA, algo así como 300mA y un poco más aunque en algunos mother's eso se agrande hasta los 500mA. Igual es cuestion de probar...