Re: Uno2 Availability question
ossandust
Of course no reason to apologize, re-reading my reply I notice it might have sounded different than intended. I just meant that I wouldn't accept pre-paid orders for something which cannot be shipped on short notice.
regards, Xavier
|
|
Re: Uno2 Availability question
Bobby Maestas
Thank you Xavier. I didn't mean any offense or disrespect. If I did either, I apologize - I assure you it wasn't intentional.
Thanks again, Bobby
|
|
Re: Uno2 Availability question
ossandust
On Mon, Jul 5, 2021 at 11:38 PM, Bobby Maestas wrote:
I’ve ordered and paid for merchandise that wasn’t in stockIf we don't have stock we don't accept orders (didn't happen the past 15 years...) regards, Xavier
|
|
Re: Uno2 Availability question
Bobby Maestas
Excellent! Thanks Roger!
|
|
Re: Uno2 Availability question
Bobby, you are likely to have an update very soon on the availability, from the author/vendor himself: ossandust
However, as I write this it's almost 0100 here in the UK and ossandust's location is 0200, so he's likely fast asleep (dreaming of new UnO2 orders)! -- Roger Colwell FCB1010_UnO Group Owner/Moderator
|
|
Re: Uno2 Availability question
Bobby Maestas
do with Uno?” That’s my question! Do you have information on that or is that just a guess?
|
|
Re: Uno2 Availability question
Bobby Maestas
“Why not just order?” Because over the last few months I’ve ordered and paid for merchandise that wasn’t in stock. All of them blamed back orders and shortages. I prefer to order when the item is in stock.
”most likely nothing to
|
|
Re: Uno2 Availability question
David Grosz
why not just order it instead of asking about a general shortage of chips most likely having nothing to do with UnO
On Monday, July 5, 2021, 11:32:37 AM PDT, Bobby Maestas <bobby.maestas@...> wrote:
Hello! I want to buy an Uno2, but I know there’s a chip shortage going on for many people. Does anyone know about the current status for Uno2? Thanks! Bobby
|
|
Uno2 Availability question
Bobby Maestas
Hello! I want to buy an Uno2, but I know there’s a chip shortage going on for many people. Does anyone know about the current status for Uno2?
Thanks! Bobby
|
|
Re: FCB1010 Uno Expression pedals oscillating between two values
ossandust
My guess is that you are using UnO firmware v.1.4. The problem can be solved by ordering an older version of the UnO firmware - v.1.3. The original firmware had a large "threshold" to avoid this kind of problem (possibly caused by excessive noise on the power supply, or by degraded capacitors on the power line which no longer filter out the noise sufficiently). The problem with the original firmware was that the expression pedals only start sending MIDI messages after moving the pedals quite a bit, making the pedal behavior unresponsive. Many complained about that, therefore in UnO v.1.4 that large threshold was removed, but on some units this can cause the issue which you describe.
|
|
FCB1010 Uno Expression pedals oscillating between two values
Hello All
The problem is really explained by the topic title. every so often when either of the expression pedals is in a certain position I can see that the display is oscillating between two values. This is a problem as these values are being sent via midi to Guitar Rig which is what I use. Anybody got any ideas as to how to cure this.? Best Regards Dave Abbott
|
|
Re: Portamento CC SWEEP question
#UnO2
rcharlier3
I was able to get this after stepping away for a day and reading more. This will turn Portamento ON and change the foot switches to CC's 5 and 84. When the switch is OFF the pedals return to CC's 4 and 74.
EFFECT_ON pPortamento =
{
SendMidi chOne CtrlChange 65 127
Pedal 1 = PortAmount
Pedal 2 = PortTime
}
EFFECT_OFF pPortamento =
{
SendMidi chOne CtrlChange 65 0
Pedal 1 = Foot
Pedal 2 = Brightness
}
|
|
Re: MONO ON / POLY ON keyboard midi help needed
rcharlier3
Thank you for the quick and accurate reply on this. I'm testing this on a Korg NS5R right now, but because of the MIDI standard this should work on almost anything.
I must have had the CC's flipped around because with this modification the pedal works exactly the way I want it to. Easier, one single pedal. When I press the pedal, the light goes ON, and I know that MONO is enabled. When the light is off, POLY is on. EFFECT_ON MonoPoly =
{
SendMidi chOne CtrlChange 126 0
SendMidi chOne CtrlChange 127 127
}
EFFECT_OFF MonoPoly =
{
SendMidi chOne CtrlChange 126 127
SendMidi chOne CtrlChange 127 0
}
|
|
Re: MONO ON / POLY ON keyboard midi help needed
You didn't say what synth you're using, so I'm guessing here:
EFFECT_ON MonoPoly =
{
SendMidi chOne CtrlChange 126 127
SendMidi chOne CtrlChange 127 0
}
EFFECT_OFF MonoPoly =
{
SendMidi chOne CtrlChange 126 0
SendMidi chOne CtrlChange 127 127
} First press turns MONO ON/POLY OFF Second press turns MONO OFF/POLY ON Let me know if it works.
|
|
Portamento CC SWEEP question
#UnO2
rcharlier3
New #UnO2 user. My first week with the device.
Midi+synth+keyboard person, not a guitarist.
I've made a pedal to turn PORTAMENTO ON or OFF. That works fine.
When PORTAMENTO is ON, I'm trying to change the sweep pedals 1 and 2 to PortTime and PortAmount.
The "SendMidi" commands work fine, turns Port ON and OFF, the light follows the status, all is good.
SWEEP PortTime = SendMidi chOne CtrlChange 5 0-127
SWEEP PortAmount = SendMidi chOne CtrlChange 84 0-127
PRESET pPortamento =
{
SendMidi chOne CtrlChange 65 127
Pedal 1 = PortAmount
Pedal 2 = PortTime
}
PRESET_RELEASE pPortamento = SendMidi chOne CtrlChange 65 0
and then later on in my setup I want to make my power on defaults for the switches to be Foot and Brightness. That works fine.
INIT_FCB =
{
Pedal 1 = Foot
Pedal 2 = Brightness
}
When I press the footswitch for Portamento ON/OFF, it does toggle that setting, but my pedals stay as Foot and Brightness and never change to PortAmount and PortTime.
What is the simple step that I am missing?
|
|
MONO ON / POLY ON keyboard midi help needed
rcharlier3
New #UnO2 user. My first week with the device.
Midi+synth+keyboard person, not a guitarist.
A few questions:
I had hoped to make a pedal to turn MONO ON (and poly off). If it is lit up, MONO is on, and if it is not lit up, MONO is off (and so POLY is ON).
Gave up on that for the moment and instead thought "I'll make a pedal that will just turn MONO ON and another pedal that will turn POLY ON. Having some trouble with that. Its been a long day so I'm missing something basic.
With TWO presses of this pedal I can get MONO ON. Further presses of the pedal do nothing. (and that's fine for now).
Note:
126 = CC for MONO
127 = CC for POLY
PRESET pMono =
{
SendMidi chOne CtrlChange 126 0
SendMidi chOne CtrlChange 127 0
}
PRESET_RELEASE pMono =
{
SendMidi chOne CtrlChange 126 127
SendMidi chOne CtrlChange 127 127
}
With TWO presses of this pedal I can get POLY ON. Further presses of the pedal do nothing. (and that's fine for now).
PRESET pPoly =
{
SendMidi chOne CtrlChange 127 127
SendMidi chOne CtrlChange 126 127
}
PRESET_RELEASE pPoly =
{
SendMidi chOne CtrlChange 127 0
SendMidi chOne CtrlChange 126 0
}
Why does this take two presses?
Any suggestions on the correct code to make one pedal "MONO ON when pressed and the light is lit, POLY ON if pressed again and the light is off"?
|
|
Re: Uno 2 and Ableton Live
#UnO2
mathesonewan@...
Haha no worries! I was a bit perplexed! Haha
I've been putting it all together today so I'll likely post mine at some point soon!
|
|
Re: Uno 2 and Ableton Live
#UnO2
EJ SHELDON
DOH!
Don't I feel stupid! Apparently, I never posted it, and had it in a local directory when my laptop went belly up! I still have the regular UNO version that I made, maybe over the weekend I'll convert it. Thanks for looking!
|
|
Re: Uno 2 and Ableton Live
#UnO2
mathesonewan@...
Not sure if I'm being really dense but I can't see it in there?
|
|
Re: Uno 2 and Ableton Live
#UnO2
EJ SHELDON
In the FILES section under EJ's UNO2, I posted a looper control file for Ableton.
I don't really use Ableton or looping on a regular basis, and I wrote the file more as a fun exercise than anything else. As you are a regular Ableton user, if you'd give it a try, I'd be interested in your opinion. Thanks!
|
|