Winkelwagen is nog leeg.
Winkelwagen is nog leeg.Productbeschrijving
Heli Rodriguez
6 juli 2025
No indica drivers y no funcionan los drivers que pudieran ser indicados en internet. El proveedor no responde en el tiempo adecuado..
G.
19 april 2025
Es war ziemlich mühsam an Informationen zu kommen, um das Board zu steuern, aber das größte Problem ist, dass die Karte beim anstecken oder Neustart des Rechners anfängt wahllos Relais ein- und auszuschalten, was das Board unbrauchbar für sämtliche Anwendungen macht.
JMT
28 maart 2025
J'ai mis à peine 3 car contrairement à ce qui est annoncer dans le détails du produit, aucun exemple de programmation n'est présente dans le package.Il est presque impossible d'avoir des données sur ce produit.Il doit être pas mal mais comment s'en servir, ça c'est une autre histoire.Je suis bien évidemment preneur d'informations pouvant nous permettent d'utiliser ce produit.C'est inconcevable de mettre sur le marché des produits sans aucune documentation.
Lucio Anderlini
13 december 2024
Collegato con successo. Pilotato con una applicazione per Windows che ha riconosciuto la board correttamente. Purtroppo non ho fatto in tempo a testare tutti i relais perché quando ho chiuso il terzo, un chip sulla scheda è esploso.
Damien Gregory
19 november 2024
Driver : CDM20802_SetupAfter install plug it in, device will be recognised.even after installing most coding efforts i tried i failed to get comms.until i did this one in python:__________________________import ftd2xxfrom tkinter import Tk, Label, Button, OptionMenu, StringVar, messageboxdef list_ftdi_devices():"""List all FTDI devices."""devices = ftd2xx.listDevices()if devices is None:return ["No FTDI devices found"]return [str(dev) for dev in devices]def toggle_relay(device_index, relay_index, state):"""Toggle a relay on/off using FTDI."""try:# Open the device by indexdevice = ftd2xx.open(device_index)# Set device parametersdevice.setBaudRate(921600) # Set baud ratedevice.setDataCharacteristics(8, 2, 0) # 8 data bits, 2 stop bits, no parity# Build relay commandrelay_command = state device.write(bytes([relay_command])) # Send command to the devicemessagebox.showinfo("Success", f"Relay {relay_index + 1} turned {'ON' if state else 'OFF'}.")device.close()except Exception as e:messagebox.showerror("Error", f"Failed to communicate with the device: {e}")# GUI setuproot = Tk()root.title("FTDI Relay Controller")root.geometry("500x400")Label(root, text="Select an FTDI Device:").pack(pady=10)# Dropdown for devicesdevice_var = StringVar(root)ftdi_devices = list_ftdi_devices()if ftdi_devices:device_var.set(ftdi_devices[0])else:ftdi_devices = ["No devices found"]device_var.set(ftdi_devices[0])device_menu = OptionMenu(root, device_var, *ftdi_devices)device_menu.pack(pady=10)# Relay control buttonsLabel(root, text="Relay Controls:").pack(pady=20)for i in range(8): # Assuming 8 relaysrelay_index = iButton(root,text=f"Relay {relay_index + 1} ON",command=lambda idx=relay_index: toggle_relay(ftdi_devices.index(device_var.get()), idx, 1),bg="green",fg="white",).pack(pady=5)Button(root,text=f"Relay {relay_index + 1} OFF",command=lambda idx=relay_index: toggle_relay(ftdi_devices.index(device_var.get()), idx, 0),bg="red",fg="white",).pack(pady=5)# Quit buttonquit_button = Button(root, text="Quit", command=root.quit)quit_button.pack(pady=20)root.mainloop()# with this you can ask chatgpt to convert it to any coding language as you need.
Aanbevolen producten