Carro de la compra

No hay artículos en el carro

No hay artículos en el carro

NOYITO Módulo de relé USB de 1 canal Interruptor de control inteligente USB Interruptor USB (USB de 1 canal)

Envío gratis en pedidos superiores a Mex $600.00

Mex $422.53

Mex $ 215 .00 Mex $215.00

En stock

Acerca de este artículo

  • Chip microcontrolador de alto rendimiento integrado. Chip controlador USB CH340 integrado. LED de alimentación integrado y LED de edo de relé.
  • Relé integrado de 5 V, 10 A/250 VAC, 10 A/30 V CC, vida útil del relé de tracción continua larga 100.000 veces.
  • Módulos de relé con protección contra sobrecorriente y protección de diodos de rueda libre.
  • NOYITO Módulo de relé micro USB de 8 ces ASIN: B09RGTSHHW
  • NOYITO Módulo de relé micro USB de 4 ces ASIN: B09RGVQXXT. Módulo de relé micro USB de 2 cales ASIN: B081RM7PMY


Productos similares: Módulo de relé micro USB de 8 canales ASIN: B09RGTSHHW. Módulo de relé micro USB de 4 canales ASIN: B09RGVQXXT. Módulo de relé micro USB de 2 canales ASIN: B081RM7PMY Copia el ASIN en el cuadro de búsqueda y búsqueda. Características Chip microcontrolador de alto rendimiento integrado. Chip controlador USB OnBoard CH340. LED de alimentación integrada y LED de estado del relé. Relé integrado de 5 V, 10 A/250 VAC, 10 A / 30 V CC, duración del relé de tracción continua larga 100.000 veces. Módulos de relé con protección contra sobrecorriente y protección contra diodos de rueda libre. Descripción de la interfaz: NC: Relé interfaz normalmente cerrada. COM: Interfaz común de relé No Relé normalmente abierto interfaz. Velocidad de baudios de comunicación predeterminada del interruptor USB: 9600BPS. Protocolo de comunicación con interruptor USB Datos (1) --- indicador de inicio (el valor predeterminado es 0xA0) Datos (2) --- códigos de dirección de cambio (0x01 el primer interruptor) Datos (3) --- datos de funcionamiento (0x00 está "apagado", 0x01 está "encendido") Datos (4) --- código de verificación Por ejemplo: Enciende el interruptor del relé: A0 01 01 A2 Apaga el interruptor del relé: A0 01 00 A1 Descripción de uso: 1. Conecta el módulo de relé USB a la computadora e instala el controlador de chip USB CH340 a serie 2. Abre el software de depuración en serie, selecciona la tasa de baudios de 9600, en forma hexadecimal (hexadecimal) envía A0 01 01 A2 abre el relé; envía hexadecimal (hexadecimal) A0 01 00 A1 apaga el relé Puedes elegir enviar manual o automáticamente. Paquete incluido: 1 módulo de relé USB NOYITO de 1 canal.


Jesse Lackey
Comentado en los Estados Unidos el 29 de abril de 2024
First off, follow the CH340 drivers install help webpage documentation from sparkfun, and you must not forget the step to uninstall existing drivers. And these are (I think) unsigned drivers from a chinese company, for those concerned with IT security. To cut costs, they did not use the effectively universal FTDI chips, with drivers already installed in all OSes for the last 10 years.Secondly, don't overlook that the command example is hex bytes, as they say several times in the product description. How you send them from a terminal program for testing depends on that program.
Some guy that doesn’t usually review things
Comentado en los Estados Unidos el 3 de agosto de 2023
//made on a C# windows forms app, forgive the sloppy nature- just wanted to hear it click//added NuGet package in Visual Studio for System.IO.Ports (right click solution, manage NuGet Packages for solution, browse)//made 2 buttons - open and close relay//get your COM port from device manager after you plug it in// myPort.Write(new byte[] { 0xA0, 0x01, 0x01, 0xA2 }, 0, 4); -- OPEN// myPort.Write(new byte[] { 0xA0, 0x01, 0x00, 0xA1 }, 0, 4); --CLOSE----------------------------------------------------------------------------------------------------------------------using System;using System.Drawing.Text;using System.IO.Ports;namespace SingleChannelNoyitoTest{public partial class Form1 : Form{public static SerialPort myPort = new SerialPort("COM3", 9600, Parity.None, 8, StopBits.One);public Form1(){InitializeComponent();}private void Form1_Load(object sender, EventArgs e){}private void btnCloseRelay_Click(object sender, EventArgs e){myPort.Open();myPort.Write(new byte[] { 0xA0, 0x01, 0x00, 0xA1 }, 0, 4);myPort.Close();}private void btnOpen_Click(object sender, EventArgs e){myPort.Open();myPort.Write(new byte[] { 0xA0, 0x01, 0x01, 0xA2 }, 0, 4);myPort.Close();}}}
Simon P. Larson
Comentado en los Estados Unidos el 5 de julio de 2022
I bought a couple of these for a project I was working on, involving a small automated lock, and while they were easy to use and initially did what I wanted, none of them lasted more than a couple of weeks before they stopped consistently working. I was setting them open/close through powershell, and inevitably they start ignoring the code occasionally and they only get worse over time. Not a good long term board. Will be looking for a beefier version or more stable alternative.
StevenBB
Comentado en los Estados Unidos el 11 de diciembre de 2022
I created a very simple linux script: while [ 1 ]; do echo "starting test now" `date`; echo -en "xa0x01x01xa2" > /dev/ttyUSB0; sleep 3; echo "starting test now 2" `date`; echo -en "xa0x01x00xa1" > /dev/ttyUSB0; sleep 3; doneAll the script did was to toggle the relay every 3 seconds. It would toggle about 4 or 5 times and freeze up. I would then run the command stty -F /dev/ttyUSB0speed 9600 baud; line = 0;-brkint -imaxbelBut... other times at random it would respond with: stty -F /dev/ttyUSB0speed 9600 baud; line = 0;-brkint -imaxbelSorry, but this relay IS TOTALLY UNSTABLE. I tried it on Linux Mint X64 and Rasberry Pi Zero. 2 Different operating systems and hardward. It relay would freeze up for no real reason.
Robert C
Comentado en los Estados Unidos el 2 de septiembre de 2021
This is a Relay that you can control over USB. I purchased this to make a "smart" plug that I can control from software for a personal project. Read the description, the seller tells you everything you need to know to control this device. You'll need a driver to make the USB device show up as a serial port. Once that's there, you can either use a serial debugger to test it out, or write half a dozen lines of code to send the on/off commands over the serial port.It looks like we've got a relay, a arduino USB contoller, and a IC that turns the relay on and off in a convenient package. Well-made and no complaints!
Productos recomendados

Mex $206.55

Mex $ 103 .00 Mex $103.00

5.0
Elegir

Mex $169.00

Mex $ 89 .00 Mex $89.00

5.0
Elegir

Mex $434.85

Mex $ 195 .00 Mex $195.00

4.5
Elegir

Mex $115.47

Mex $ 61 .00 Mex $61.00

5.0
Elegir