ArrayArrayArrayArrayArrayArrayArray BrainModular BrainModular Users Forum 2019-03-13T16:46:17+02:00 https://brainmodular.com/forums/app.php/feed/topic/6413 2019-03-13T16:46:17+02:00 2019-03-13T16:46:17+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40946#p40946 <![CDATA[Rs232 send/receive?]]> Statistics: Posted by dmitriyc — 13 Mar 2019, 15:46


]]>
2019-03-08T08:59:36+02:00 2019-03-08T08:59:36+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40931#p40931 <![CDATA[Rs232 send/receive?]]>
do you already have the IR decoder ?

What I'll do, because i'm a DIY guy :
if I want the IR decoder far away from th computer : IR decoder, wiznet ethernet shield , arduino uno (OSC)
if the IR decoder is close to the computeur : IR decoder, teensy 2 (MIDI)

Statistics: Posted by oli_lab — 08 Mar 2019, 07:59


]]>
2019-03-08T01:39:29+02:00 2019-03-08T01:39:29+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40930#p40930 <![CDATA[Rs232 send/receive?]]>
https://www.workpro.es/products/lm-serial

Statistics: Posted by dmitriyc — 08 Mar 2019, 00:39


]]>
2019-03-05T19:52:31+02:00 2019-03-05T19:52:31+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40923#p40923 <![CDATA[Rs232 send/receive?]]>
If you were getting it for yourself, would you get the Teensy 2 or the IR, Oli_lab?
already done IR over OSC few years ago as all my interfaces can be connected on the same network

for a simpler use, I'll recommand teensy2 as USBMIDI AND the IR decoder connected to the Teensy.

What I wouldn't bother doing is using the IR decoder with a serial TTL to USB serial as it will be not very easy to reliably setting up.

with teensy USBMIDI, there is a trick to make each device with a different name : that is required to use more than one teensy on the same computer.

// To give your project a unique name, this code must be
// placed into a .c file (its own tab). It can not be in
// a .cpp file or your main sketch (the .ino file).

#include "usb_names.h"

// Edit these lines to create your own name. The length must
// match the number of characters in your custom name.

#define MANUFACTURER_NAME {'O','L','I','_','L','A','B'}
#define MANUFACTURER_NAME_LEN 7
#define MIDI_NAME {'M','E','L','E','C','1'} //changer ici le nom d'un teensy à l'autre
#define MIDI_NAME_LEN 6
#define SERIAL_NUM {'1'}
#define SERIAL_NUM_LEN 1
#define MIDI_PORT1_NAME {'V','i','d','e','o','_','c','o','n','t','r','o','l'}
#define MIDI_PORT1_NAME_LEN 13

// Do not change this part. This exact format is required by USB.

struct usb_string_descriptor_struct usb_string_manufacturer_name = {
2 + MANUFACTURER_NAME_LEN * 2,
3,
MANUFACTURER_NAME
};

struct usb_string_descriptor_struct usb_string_product_name = {
2 + MIDI_NAME_LEN * 2,
3,
MIDI_NAME
};


struct usb_string_descriptor_struct usb_string_serial_number = {
2 + SERIAL_NUM_LEN * 2,
3,
SERIAL_NUM
};


struct usb_string_descriptor_struct usb_string_midi_port1 = {
2 + MIDI_PORT1_NAME_LEN * 2,
3,
MIDI_PORT1_NAME
};

Statistics: Posted by oli_lab — 05 Mar 2019, 18:52


]]>
2019-03-05T19:15:08+02:00 2019-03-05T19:15:08+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40922#p40922 <![CDATA[Rs232 send/receive?]]> Statistics: Posted by Swofford — 05 Mar 2019, 18:15


]]>
2019-03-04T19:35:00+02:00 2019-03-04T19:35:00+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40921#p40921 <![CDATA[Rs232 send/receive?]]> There is a serial port module that just do that !
if you have a real serial port on your computer (usually PC tower do) that is easy.
If you're on a laptop, you'll need a good USB to Serial interface. Keep away from the cheap ones as they are not very reliable and stable. This one is a good pick : https://www.ebay.fr/itm/UGREEN-Cable-Se ... SwSidcPwut

as for IR command, you could use a teensy 2 and a IR receiver (both work with 5Volts)
https://www.ebay.fr/itm/Teensy-2-0-USB- ... :rk:1:pf:0

https://www.ebay.fr/itm/IR-Infrared-Sig ... rk:11:pf:0

the decoder will send to the teensy in TTL level serial then the Teensy will translate all that and send to the USB as MIDIUSB

For Ethernet, same decoder + arduino uno + wiznet
https://www.ebay.fr/itm/W5100-Ethernet- ... :rk:1:pf:0

Statistics: Posted by oli_lab — 04 Mar 2019, 18:35


]]>
2019-02-28T06:35:29+02:00 2019-02-28T06:35:29+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40915#p40915 <![CDATA[Rs232 send/receive?]]> Statistics: Posted by dmitriyc — 28 Feb 2019, 05:35


]]>
BrainModular BrainModular Users Forum 2019-03-13T16:46:17+02:00 https://brainmodular.com/forums/app.php/feed/topic/6413 2019-03-13T16:46:17+02:00 2019-03-13T16:46:17+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40946#p40946 <![CDATA[Rs232 send/receive?]]> Statistics: Posted by dmitriyc — 13 Mar 2019, 15:46


]]>
2019-03-08T08:59:36+02:00 2019-03-08T08:59:36+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40931#p40931 <![CDATA[Rs232 send/receive?]]>
do you already have the IR decoder ?

What I'll do, because i'm a DIY guy :
if I want the IR decoder far away from th computer : IR decoder, wiznet ethernet shield , arduino uno (OSC)
if the IR decoder is close to the computeur : IR decoder, teensy 2 (MIDI)

Statistics: Posted by oli_lab — 08 Mar 2019, 07:59


]]>
2019-03-08T01:39:29+02:00 2019-03-08T01:39:29+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40930#p40930 <![CDATA[Rs232 send/receive?]]>
https://www.workpro.es/products/lm-serial

Statistics: Posted by dmitriyc — 08 Mar 2019, 00:39


]]>
2019-03-05T19:52:31+02:00 2019-03-05T19:52:31+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40923#p40923 <![CDATA[Rs232 send/receive?]]>
If you were getting it for yourself, would you get the Teensy 2 or the IR, Oli_lab?
already done IR over OSC few years ago as all my interfaces can be connected on the same network

for a simpler use, I'll recommand teensy2 as USBMIDI AND the IR decoder connected to the Teensy.

What I wouldn't bother doing is using the IR decoder with a serial TTL to USB serial as it will be not very easy to reliably setting up.

with teensy USBMIDI, there is a trick to make each device with a different name : that is required to use more than one teensy on the same computer.

// To give your project a unique name, this code must be
// placed into a .c file (its own tab). It can not be in
// a .cpp file or your main sketch (the .ino file).

#include "usb_names.h"

// Edit these lines to create your own name. The length must
// match the number of characters in your custom name.

#define MANUFACTURER_NAME {'O','L','I','_','L','A','B'}
#define MANUFACTURER_NAME_LEN 7
#define MIDI_NAME {'M','E','L','E','C','1'} //changer ici le nom d'un teensy à l'autre
#define MIDI_NAME_LEN 6
#define SERIAL_NUM {'1'}
#define SERIAL_NUM_LEN 1
#define MIDI_PORT1_NAME {'V','i','d','e','o','_','c','o','n','t','r','o','l'}
#define MIDI_PORT1_NAME_LEN 13

// Do not change this part. This exact format is required by USB.

struct usb_string_descriptor_struct usb_string_manufacturer_name = {
2 + MANUFACTURER_NAME_LEN * 2,
3,
MANUFACTURER_NAME
};

struct usb_string_descriptor_struct usb_string_product_name = {
2 + MIDI_NAME_LEN * 2,
3,
MIDI_NAME
};


struct usb_string_descriptor_struct usb_string_serial_number = {
2 + SERIAL_NUM_LEN * 2,
3,
SERIAL_NUM
};


struct usb_string_descriptor_struct usb_string_midi_port1 = {
2 + MIDI_PORT1_NAME_LEN * 2,
3,
MIDI_PORT1_NAME
};

Statistics: Posted by oli_lab — 05 Mar 2019, 18:52


]]>
2019-03-05T19:15:08+02:00 2019-03-05T19:15:08+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40922#p40922 <![CDATA[Rs232 send/receive?]]> Statistics: Posted by Swofford — 05 Mar 2019, 18:15


]]>
2019-03-04T19:35:00+02:00 2019-03-04T19:35:00+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40921#p40921 <![CDATA[Rs232 send/receive?]]> There is a serial port module that just do that !
if you have a real serial port on your computer (usually PC tower do) that is easy.
If you're on a laptop, you'll need a good USB to Serial interface. Keep away from the cheap ones as they are not very reliable and stable. This one is a good pick : https://www.ebay.fr/itm/UGREEN-Cable-Se ... SwSidcPwut

as for IR command, you could use a teensy 2 and a IR receiver (both work with 5Volts)
https://www.ebay.fr/itm/Teensy-2-0-USB- ... :rk:1:pf:0

https://www.ebay.fr/itm/IR-Infrared-Sig ... rk:11:pf:0

the decoder will send to the teensy in TTL level serial then the Teensy will translate all that and send to the USB as MIDIUSB

For Ethernet, same decoder + arduino uno + wiznet
https://www.ebay.fr/itm/W5100-Ethernet- ... :rk:1:pf:0

Statistics: Posted by oli_lab — 04 Mar 2019, 18:35


]]>
2019-02-28T06:35:29+02:00 2019-02-28T06:35:29+02:00 https://brainmodular.com/forums/viewtopic.php?t=6413&p=40915#p40915 <![CDATA[Rs232 send/receive?]]> Statistics: Posted by dmitriyc — 28 Feb 2019, 05:35


]]>