Jump to content
Why become a member? ×

stoo

Member
  • Posts

    454
  • Joined

  • Last visited

Everything posted by stoo

  1. stoo

    Zoom B1 Four

    HX edit is free regardless (but is useless unless you have Helix hardware to control with it) Helix Native isn't free, but you get a big discount if you have a Helix device serial number registered to you - I paid $120 inc UK taxes... but it would have been 4 times that if I didn't have the HX stomp already.
  2. Another vote for the MMSR here. I put the 3 band 3 knob version in my USA SUB, and the 3 band 4 knob version in my 3EQ Stingray... my only regret is that I wish I'd gone for the 3 knob version on both as I prefer having the jack on the control plate rather than on the body edge..
  3. stoo

    Zoom B3 - HELP!

    More or less - but I think you'd still be going through the B3's input buffer and global volume control It's just a quicker way to skip past lots of presets at once. If you think of the letters as numbers instead, preset A0 becomes 00, A1 becomes 01, B0 becomes 10, B1 becomes 11 etc... so if you wanted to jump from preset 01 to preset 11 you could just go up a bank rather than going up 10 presets individually. I never had too much trouble with it, but I've got big feet. Not on the B3. The hardware would be capable of it - the G3 got a firmware update which let you have 6 effects in one patch, but they never updated the B3 in the same way. That's not what banks are for, no. You could just copy a preset with your clean amp sim sound to another preset, and then change the other effects within it though.
  4. Thanks - that's good to know. I've had a quick look at the Bounce2 library and I *think* the way I've done it should be pretty similar speed-wise... I know there's a couple of delay() calls in the setup phase, but once it hits the main loop everything should be done referencing millis() instead of using delay() It's probably just my clumsy feet then.... :D
  5. Sweet! It's really great to hear that this has been of use to someone. How are you finding the looper controls? I've never had much luck with mine and I'm not sure whether it's down to my lack of foot coordination, or the cheap footswitches I used, or lag in the code. I keep meaning to adapt the code to use pin change interrupts for button press detection, but I've got another project I want to get out of the way first before coming back to this one....
  6. I've got one of these and can recommend it too.
  7. I think the M on the side indicates that it's a momentary one - I've seen similar ones with an L on the side for latching type...
  8. Looks like it should work - Simple Pitch and Dual Pitch both let you use an interval of 0, and then tweak the pitch in 0.2 cent increments, as well as adding a delay from 0.1ms up to 100ms if you want that too. I guess you could even run it in stereo and run either side through different amp sims as long as the rest of the preset was simple enough that you don't run into block / dsp / routing limitations...
  9. Weird - I'd always perceived my OLP neck to be quite skinny. My OLP is one of the later models with 2 pickups though, so maybe they changed the profile at some point? Or maybe my hands are just lying to me I'll have to bring it back from the rehearsal room after next practice and measure them all up to see.
  10. Yep. Or straight into FOH and use the Headrush for your monitor mix from the desk. Or bin the headrush and just use the house monitors. Or send separate signals to the headrush and to FOH if you wanted a more amplike sound on stage but a cleaner feed to FOH. Or send clean and effected signals to FOH and then have whatever mix as required out front and in the monitors.. etc etc - It's pretty flexible
  11. It can be done, but the solution is a little more complex as the Zoom stuff only does MIDI over USB, and Zoom don't document the MIDI functionality. Hardware-wise you'll need to be able to communicate with the Zoom as a USB MIDI host - I bought an Arduino UNO with a USB host shield after seeing this video : https://www.youtube.com/watch?v=enK6Y30dAYs (there are links to github pages for the code in the video description) and was able to get it working fine on my B3 for basic patch selection as shown in the video. The fiddly bit is working out the MIDI messages you need. There's a a good thread on thegearpage - https://www.thegearpage.net/board/index.php?threads/midi-control-of-zoom-g3-video.1033719/page-3#post-19617949 - with a lot of useful information in. I spent a bit of time trying to map out the commands I'd need for my G3n to be able to switch each effect on and off regardless of whether they were visible on screen. Never quite got there before getting sidetracked by something else. I was intending to get back to it at some point, but then accidentally bought an HX Stomp instead
  12. Saving the data looks to be easy enough https://www.arduino.cc/en/Tutorial/EEPROMWrite I've got 3 different multi-fx boxes here with loopers on and I struggle to get anything useful out of any of them. The Zoom one on the B3 isn't too bad - You can get the drum machine going so you don't have to worry about getting the loop length right, but it seems I just don't have the foot coordination for doing it manually..... or maybe I just need to practice more! I don't know much about bluetooth on arduino, but it looks like many of them will use the serial bus for the bluetooth side of things which could add an extra layer of complexity if you're trying to send or receive midi with the same arduino unless it has multiple serial buses available. Could always use a separate Nano for reading the footswitches, sending midi, and triggering the bluetooth arduino that you've already got?
  13. I've got a couple of Arduino Megas here which I think have got a triple serial bus.... 😀 I'm not in any rush to redo the hardware just yet though. It does what I need it to well enough for now...
  14. Those screens look quite nice, but I'm already using the serial bus on the Nano to send the MIDI out.... Might be just the thing for a very different project I have in mind though...
  15. Just spotted another thread on here about another Arduino based MIDI foot controller by irvined. There's some interesting stuff in his code I want to take a closer look at when I'm not so tired, so I'm gonna stick the link here so I can find it again easily..
  16. Cool! I've recently had a go at an Arduino midi foot controller so I'll definitely be having a good pore over that code to see what I can learn from it.... already spotted a few things that could be useful but will try again with a fresher pair of eyes tomorrow. Some info on my one here in case you're interested...
  17. No worries - it's nice to be able to contribute something that's hopefully of use to others for a change!
  18. I should give credit to this page which got me started - https://www.instructables.com/id/Send-and-Receive-MIDI-with-Arduino/?fbclid=IwAR12ACoLLPoNWdAcU10XtLe20754FsPWR3Ffv_nYVFiUoo-TNrgJib0AnT4 If you want to understand more about how it all works, it's a good place to begin. I also got a fair bit from various pages on the arduino forum ( http://forum.arduino.cc/index.php ) which I didn't think to save as I went..
  19. I've stuck some more details in a separate thread so as to keep it all in one place and not to hijack this one too much..
  20. I've attached the code I'm using at the moment.... I make no claims to be a decent programmer in any shape, form or way - but so far it seems to work OK. If anyone else is into Arduino and can suggest improvements, I'm all ears! midiSwitcher4x2v0.2.ino
  21. No, I'm more than happy to share this... might as well do a full build list Microcontroller - Arduino nano clone - https://www.amazon.co.uk/gp/product/B00E87VWY4 (you don't need 5, but I'm copying and pasting the exact stuff I bought from my amazon order history to save time). Note that some of those don't come with the header pins pre-soldered in! If you want to minimise the amount of soldering you have to do, make sure to get one with pins, and then add a shield with screw terminals - maybe one like this - https://www.amazon.co.uk/gp/product/B01LOMZCSW Screen - https://www.amazon.co.uk/gp/product/B076PL474K - Again these are available either with pins pre-soldered, in which case you might want to use some pre-terminated jumper wires to make life easier for you ( https://www.amazon.co.uk/gp/product/B01EV70C78 ) or just solder directly to or instead of the pins. Footswitches - https://www.amazon.co.uk/gp/product/B073S49R71 MIDI socket - https://www.amazon.co.uk/gp/product/B00FX0DP22 Wire - https://www.amazon.co.uk/gp/product/B001IRVDV4 Vero stripboard - https://www.amazon.co.uk/gp/product/B07G2HFGS9 - This was probably a bit of overkill. I went this route because I wanted to test out how easy it is to solder up one of these... (I've got another more complicated project on the go which I've been struggling with using a through hole style stripboard which doesn't have the tracks - just holes and round solder pads) It works well enough, but the circuit for this thing is so simple it would make more sense just to use the screw terminal shield I mentioned earlier. A 220 ohm resistor. - https://www.amazon.co.uk/gp/product/B00X9HRKKY The ones in the link weren't the ones I used - mine came in an Arduino beginner kit. <EDIT> I just realised I forgot to mention the connectors I used - https://www.amazon.co.uk/dp/product/B07MD7GD6T - If you use the screw terminal board then you definitely won't need them, and they're optional even if you use a stripboard. One thing to note though - soldering the headers to the board is easy enough, but crimping the connectors to the wire has been a massive headache. For my early attempts I used a ratcheting crimper like this - https://www.amazon.co.uk/gp/product/B00HFQ7Z96 - and some random wire I had laying around which had quite thick insulation on it. I managed to get a decent crimp about one attempt in ten, and more often than not I ended up destroying the connector trying to pry it out of the crimper. Since switching to some manual crimpers - https://www.amazon.co.uk/gp/product/B002AVVO7U and the wire I linked above I get a much better success rate - probably 9 out of 10 work fine. I've attached the circuit diagram I used below. Bear in mind that if you do use a track style stripboard like I did, you'll need to cut the tracks which run underneath the Arduino so that the pins on each side aren't connected to each other
  22. At the moment all the button actions are hardcoded, so you'd need to use a PC to reprogram it. It would be possible to make it programmable from the footswitches, but that's not something I had in mind when I coded it up originally so it wouldn't be a totally trivial addition. It would definitely be a nice addition, but realistically I don't see myself wanting to reprogram it that much once I've settled on something I like. Bear in mind though, that with the HX stomp - and presumably other midi devices too - you could setup a page of switches to use some unused MIDI CC values, and then use the MIDI learn function on the stomp to program it to match the controller. I haven't looked into whether there are any limitations on what functionality you can control this way - the manual mentions it for Block Bypass and Parameter Control, but not for anything else that I can see at the moment.
  23. A few people have asked for a bit more info in the other thread - I'm going to try and keep it all here so it's easier for me to find any bits I've already answered. First up - before anyone else asks - I'd prefer to avoid getting into building them for other people if I can avoid it... I've deliberately built mine with the cheapest components I could find and while I'm not expecting any of it to fail, I wouldn't feel to great about sending one out to someone that wasn't able to replace a footswitch if one let go..... The good news is though - if your soldering skills are up to resoldering wires to the tags on a footswitch.... that's about as hard as any of the soldering stuff needs to get... You can get a breakout board for the microcontroller with screw terminals on, and so the only soldering required is for the wires at the footswitch end, and the midi socket. Oh, and also one resistor inline on the power leg of the midi socket - but again that's no trickier than any of the rest of it.... It's fully programmable, so pretty much everything! I've not really settled on a config yet, but so far I've got it set up with 3 pages - Page 1 is SW1 - snapshot 1 SW2 - snapshot 2 SW3 - snapshot 3 SW4 - tap tempo / long press for tuner SW5 - Preset mode SW6 - Stomp mode SW7 - emulates FS4 (which I currently have set to Preset Down) SW8 - emulates FS5 (set to Preset Up) Page 2 has the same for SW1-4, and SW5-8 directly jump to my favourite 4 guitar presets Page 3 has the same for SW1-4, and SW5-8 directly jump to my favourite 4 bass presets SW1+SW2 at the same time cycles page down, SW2 + SW3 cycles page up, SW7+SW8 is a panic reset type thing which changes the controller back to Page 1 and sets the Stomp to Preset 1 and puts it back into stomp mode. There's lots of options though - it can change anything which the HX allows control of over MIDI.... Preset and snapshot recall, block bypass, parameter control (possibly not that useful unless I add an expression pedal input). It can also expand the 1 switch looper so you get separate buttons for play / stop / overdub / record / play once / undo/redo / forward / reverse / full / half speed.... and anything else they add MIDI control for in future updates. In fact I think I'm going to add an extra page of looper controls and have a play with that just now.... >>> I've now done this and i'm not totally happy with it - I'm not sure if it's just me not being coordinated enough to use a looper properly or whether there's some lag/inconsistency in there that you just don't notice when using it for patch / setting changes... In all honesty, not much.... I've attached a couple of pics of the sort of thing mine is showing at the moment, but the screen I used was a tiny 0.96 inch OLED... They're really cheap, and I had a spare one lying around. It was fine for testing functionality while I was building the prototype on my desk....... But with the text size on there it's too small to be any real use while stood up. I'm going to play with using a bigger font to see if there's a better balance between quantity and readability of characters, but the obvious choice would be to just use a bigger screen. I reckon I'd be happy enough with just showing an indication of what page I'm on and then remembering what each button within each page does, but I'll see how I get on with it once I've had a chance to use it more. The other type of screen I considered using was one like this - https://www.amazon.co.uk/SainSmart-Serial-Module-Shield-Arduino/dp/B007XRHBKA which is closer to what Morningstar use. They use a fixed character size, so you need to make sure you have enough columns and rows available to display all you need.... the only ones I have here are 16x2 and 20x4, and neither of those seemed ideal for an 8 footswitch configuration. The 20x4 would probably work well enough for a 6 switch setup though.
  24. It's fully programmable, so pretty much everything! I've not really settled on a config yet, but so far I've got it set up with 3 pages - Page 1 is SW1 - snapshot 1 SW2 - snapshot 2 SW3 - snapshot 3 SW4 - tap tempo / long press for tuner SW5 - Preset mode SW6 - Stomp mode SW7 - emulates FS4 (which I currently have set to Preset Down) SW8 - emulates FS5 (set to Preset Up) Page 2 has the same for SW1-4, and SW5-8 directly jump to my favourite 4 guitar presets Page 3 has the same for SW1-4, and SW5-8 directly jump to my favourite 4 bass presets SW1+SW2 at the same time cycles page down, SW2 + SW3 cycles page up, SW7+SW8 is a panic reset type thing which changes the controller back to Page 1 and sets the Stomp to Preset 1 and puts it back into stomp mode. There's lots of options though - it can change anything which the HX allows control of over MIDI.... Preset and snapshot recall, block bypass, parameter control (possibly not that useful unless I add an expression pedal input). It can also expand the 1 switch looper so you get separate buttons for play / stop / overdub / record / play once / undo/redo / forward / reverse / full / half speed.... and anything else they add MIDI control for in future updates. In fact I think I'm going to add an extra page of looper controls and have a play with that just now....
  25. I posted about this in the HX stomp thread, but in case it's of wider interest I thought I'd best make a separate one. I wanted to add some more control options to my Stomp and was looking at controllers like the Morningstar MC6, but couldn't justify the £200 outlay.. so looked into making one myself - and it's turned out to be far easier and cheaper than I expected. Total cost for all the electronics and switches is about £25 -30 depending on how confident you are at slightly fiddly soldering... the extra few quid gets you a pre-soldered microcontroller and an adaptor board with screw terminals, so the only soldering you'd need to do is for the wires to the tags on the footswitches and on the MIDI socket. And then you'll need something to house it in. I made a 3d printed enclosure for mine, but any box you can buy/build/modify will do. If anyone's interested in making something similar for themselves, I'd be happy to share wiring diagrams and the code I used. I'm no electronic engineer or programmer, so no doubt there's plenty of room for improvement, but I've got it to work well enough to do what I need it to, and maybe it'll work for you too? I'm happy to help with tweaking it for slightly different configurations if you'd want a different layout. What it does: You press a footswitch, and it sends a MIDI message. The way I have mine setup is that it either sends a MIDI PC (Program Change) message to change preset patch on my HX stomp, or a MIDI CC (Control Change) message to change any of a number of other settings or parameters. It could potentially send MIDI notes as well if you wanted to use it as a pedal keyboard to play a synth with, I suppose. If you hold a footswitch down, it can send a different MIDI message (I only use this for activating the tuner by holding the tap tempo button so far, but it could be setup for any of the switches) If you press more than one footswitch down at once, it can do something else again depending on which ones you press. Mine is set so that pressing 1+2 or 2+3 switches through different pages / banks of button configurations, and pressing 7 + 8 is a sort of panic mode which resets the HX stomp to preset 1, and resets the controller back to the first page. What it can't do: It's not programmable from the unit. To change the way the buttons are configured you need to tweak the code and then re-upload it. There's probably a more elegant way to deal with this, but it works well enough for me as is - I don't expect to need to reconfigure it very often once I've got it set up. Right - I'm gonna stop there for now.... if no-one's interested then I'm just rambling into the void for nowt. If anyone is interested though, let us know and I can post more details. Or, if you know more than me and can spot where I've gone wrong or what I should have done better - lemme know and I'll try and improve it! Cheers, stoo
×
×
  • Create New...