Jump to content

boatman

Regular Members
  • Posts

    1,798
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by boatman

  1. If you are going with the arrow on a stick carried by a cast member then cover it with LED tape and make some running lights to simulate the forward motion.
  2. The Bluecom system was designed with a push-pull headphone amp and can be cranked up to a higher level than a standard Comms beltpack.
  3. boatman

    Bluecom

    Thanks, that seems to have fixed it.
  4. boatman

    Bluecom

    The file I uploaded is showing as available to me but none from anyone else. One for Bruce to try and sort it out I think.
  5. boatman

    Bluecom

    Sorry for the delay, two laptops have died in quick succession. Luckily most things were backed up and I have now found the latest zip file. I think I have the correct permissions to upload it. BluecomBeltpack1_4.zip
  6. boatman

    Bluecom

    Sorry, I don't have a working computer at the moment as two laptops have died within a week! However, I do have the files backed up on a USB drive and will upload them when I can get to a working computer. Keep an eye out here.
  7. A d0mest1c dimmer and a DMX servo board might work well too.
  8. All the bits which weren't dated April 1st I guess.
  9. I built a remote control servo using a couple of NRF24 modules and two Arduino Nano boards which worked fine. No error checking but that shouldn't be too hard to add. What is the end product you're trying to achieve?
  10. It's certainly outside my experience so, unless someone else has an interest, the answer is no.
  11. This YouTube video might help:
  12. I always used spiral cable wrap for this. Some self amalgamating tape around the ends stops it unwrapping. https://cpc.farnell.com/concordia-technologies/sw20mmblk10m/spiral-wrap-20mm-black-10m/dp/CB20507
  13. I noticed that the two filaments in that photo appear to be at different heights above the baseplate. It might be worth checking which one is correct.
  14. Sorry, coming late to the party. It's always a good idea to cast 8-bit byte values to 16-bit int before doing integer operations. So: int val = ((rxhigh_part&0x7F)<<7)|(rxlow_part&0x7F); should be: int val = (((int)rxhigh_part&0x7F)<<7)|((int)rxlow_part&0x7F);
  15. @cedd is your man for this sort of gadget.
  16. boatman

    LED Footlights

    If you are building your own dimming circuit with an Arduino, remember that 8-bit dimming is rubbish with LEDs and you need a 16-bit PWM to get a good curve.
  17. Another vote for JLB. PCBs are excellent quality, very cheap and delivery is very quick too.
  18. ... However, Bluecom was specifically designed to accommodate low impedance headphones and electret mics.
  19. Thanks for all the suggestions. We moved from a four bedroom house to a two bedroom flat during the first week of lockdown last year and I don't really have anywhere to keep a 3D printer (no garage, shed or huge walk-in loft any more). However, there is a Men's Shed in the city and I believe they have one. I'll just have to wait for it to reopen.
  20. Thanks, I'll try Tinkercad and I note your comment on the cost of third party printing.
  21. I know there are several members on here who do some 3D printing and I want to have a go myself. So I'm looking for recommendations for easy to use free 3D design software. I don't intend to purchase a 3D printer so ideas for contract printing houses as well please.
  22. Single sided PCBs from China are only marginally cheaper than double-sided but the latter makes for a much more compact design. What's going to make that board expensive is the fact that it's over 12" long. If you can adapt your design to only three LEDs (which will almost halve the length of the board) it will be much cheaper although you will of course need nearly twice as many boards
  23. If it's only 5 LEDs (and presumaby a connector of some sort) it shouldn't take more than half an hour to lay out on a PCB. If nobody else can help I'm happy to do it for you. Just send me a PM with the a photo of the sketch and the board dimensions.
  24. I never had a problem with the switch lining up with the hole in the front panel. If you have any suggestions for a better PTT switch let me know and I easily make version 1.5 with a different footprint! Of course it would mean prototyping a new front panel too.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.