Inside a Bluetooth RGB controller.

Поделиться
HTML-код
  • Опубликовано: 13 сен 2024
  • The star of this video is the XC610 SoC (system on chip) microcontroller, that is a reminder of how far things have evolved.
    With just a regulator, the chip and three MOSFETs it allows remote control of an RGB colour effect by an Android or Apple phone.
    Part of the work is being done by the phone app called Happy Lighting, which has to arrange connection, note the location for specific unit control, and provide a human control interface.
    The controller does appear to remember the last colour setting after a short delay. Probably to avoid making too many writes to the memory. So you could theoretically connect, set and forget if you wanted a specific colour.
    I'm not a huge fan of loading random apps on my phone in case of malware issues. I'm also aware that there are always security issues in any communication network that could allow a bluetooth device like a keyboard to self-run devious strings of keypresses (rubber ducky). Especially given the capabilities of the processors used in many wifi and bluetooth products.
    The processor datasheet can be found by searching for xinchip xc610
    There is a higher pin count version available, which explains the missing PWM1 module. From the datasheet there does seem to be a significant amount of memory on the chips. I wondered if it might just have been referring to an upper externally addressable range. I guess that's to support the use of more bloated library style code.
    The quiescent current of the chip with well written software that puts it into a proper sleep state is just 1uA - or 14uA in suspended mode.
    Pretty neat little controller. Very minimalist, and using the firmware to do the serious stuff.
    If you enjoy these videos you can help support the channel with a dollar for coffee, cookies and random gadgets for disassembly at:-
    / bigclive (extra streams and channel interaction)
    Or alternatively:-
    www.bigclive.co...
    This also keeps the channel independent of RUclips's advertising algorithms allowing it to be a bit more dangerous and naughty.
    #ElectronicsCreators

Комментарии • 242

  • @rjhornsby
    @rjhornsby 3 года назад +17

    The color coding on the diagrams/photos is great, makes it way easier to follow what’s happening and how seemingly random components are connected, giving them a visual context in the circuit’s design.

  • @gordonlawrence1448
    @gordonlawrence1448 3 года назад +114

    "Apples Air Biscuits" made me nearly spit out my beer. For those not in England "Air Biscuit" is slang for fart.

    • @jokerbassXD
      @jokerbassXD 3 года назад +5

      I'm English (from Middlesbrough) and I didn't know that 😂

    • @josephking6515
      @josephking6515 3 года назад +1

      Flight Attendants call it _Crop Dusting._ Spray and go.

    • @Eremon1
      @Eremon1 3 года назад +2

      I call them Brown Canyon Winds, Stepping on the Barking Spider or Air Raids. Air Biscuit is going in the toolbox now as well. One can never be too prepared for such events.

    • @whoopjohn
      @whoopjohn 3 года назад

      I'm from London, so we say Horse and Cart for fart. It goes neatly with Pony and Trap, crap. Especially if you follow through.

    • @lesliefranklin1870
      @lesliefranklin1870 3 года назад

      LOL! Yes, I caught that too. LOL! 😂

  • @zh84
    @zh84 3 года назад +83

    "Apple's new air biscuits", indeed! Louis Rossmann might like that joke - if he understood the British slang ;-)

    • @eightbit3342
      @eightbit3342 3 года назад +3

      Made me laugh for like 5 mins :P

    • @MUHAMMADYAWARIFRAHEEM
      @MUHAMMADYAWARIFRAHEEM 3 года назад

      Maybe after watching this lot of us people search for apple biscuits 😂they thinking that apple have it 😂

  • @ZeedijkMike
    @ZeedijkMike 3 года назад +31

    Hmm - did Clive sound a little impressed by that chip? :-)

  • @ehsnils
    @ehsnils 3 года назад +21

    Pulsating red - when you want to put a colorful surrounding on a device where there's a fault.

  • @frankowalker4662
    @frankowalker4662 3 года назад +4

    That's one hell of a Microcontroller. So much power. It puts my Spectrum to shame. LOL.

  • @johnmorgan1629
    @johnmorgan1629 3 года назад +6

    Nice little product, plenty of variations with either Bluetooth or little remotes if you prefer them too. Oh how lighting has changed, still remember when it was a colored glass bulb, or plate that was used to create a different light effects. Now the sky is the limit, it seems.

  • @IANF126
    @IANF126 3 года назад +11

    i didn't even get the british slang and i found air biscuits funny by itself lmao

    • @laserhawk64
      @laserhawk64 3 года назад

      Biscuits in the UK are cookies in the USA ;) if that helps. Even better... it's not slang, it's just differences in the language, like how they call a large truck (eg a semi truck or a box truck) a lorry.

    • @randomplayer6461
      @randomplayer6461 3 года назад

      @@laserhawk64 air biscuit is slang

    • @laserhawk64
      @laserhawk64 3 года назад

      @@randomplayer6461 True, in and of itself, but I don't think it's chiefly British/UK slang /per se/ -- one, I live in the USA, and I"m no stranger to that meaning for that term. Two, at least two of the replies to the comment by "Gordon Lawrence" below reference people who plainly live in Britain specifically (rather than other parts of the UK) and are distinctly unfamiliar. If I had to guess, I'd say it is known but not common there -- but I don't live there and I've not been since 2007, so I can't be 100% sure.
      Any blokes *actually* in the UK want to chime in and help settle this?

  • @HaralHeisto
    @HaralHeisto 3 года назад +38

    I'd say you're right to be a little concerned about the security. Looking at the datasheet for that SOC there's nothing that restricts it to any given bluetooth profile, and they even suggest it as being suitable as a HID (keyboard/mouse), so a malicious device could easily pretend to be a keyboard that auto-types some mischief.
    Recent versions of Android do tell you what the device you're connecting is representing itself as though, so if you see Input Device on something like this you know to steer clear.
    As for the random app, I suspect it'd be fairly easy to write a generic controller app for these (and make it open source for safety). There can't be too many different ways to control lights, I might acquire some and have a play.

    • @fluffycritter
      @fluffycritter 3 года назад +8

      Android has at least gotten better about sandboxing and limiting the really damaging stuff visible to apps, and iOS has always had a good track record of that.
      For the security of the Bluetooth stack itself I’d be less worried; the manufacturers of this cheap crap probably aren’t interested in attacking your phone (and keyboard-based attacks would be difficult to pull off due to the variety of UI layouts and lack of incoming feedback), and the attack surface for someone maliciously rewriting the controller code with a targeted attack requires someone to already have the sort of physical access to your stuff that means you have bigger problems.

    • @jonathanclark7444
      @jonathanclark7444 3 года назад +2

      look into wled, its open source software for esp32s and esp8266s

    • @rpavlik1
      @rpavlik1 3 года назад +5

      There's already RUclips videos and stuff about this protocol. It's the same as "Triones" which I think I found a nice protocol writeup on a git repo host online. I got a standalone battery powered single LED version called "Lumin+" - that's your search term to find at least one RUclips series reverse engineering the protocol - though not as completely as the writeup I found.
      I don't actually know how you start using a Bluetooth low energy hid device, mine are all high energy, but I suspect it's quite different than the very app-driven way of writing an attribute on this light. I mean, no reason the chip can't do both, but I don't think connecting for light purposes opens you to hid automatically.
      Edit: here's that page github.com/madhead/saberlight/blob/master/protocols/Triones/protocol.md

  • @peterzeboroff7448
    @peterzeboroff7448 3 года назад +1

    I love these type of videos,I started watching your videos many years ago because I greatly enjoyed all your tear downs and explanations on all the various led lights and the power supply circutry,even though switching power supplies now practically power everything,their operation is still a bit of a black art and watching videos such as the ones you make really show just how fast the rapid state of electronics and computer technology is truly progressing.

  • @LiLi-or2gm
    @LiLi-or2gm 3 года назад +4

    I slit a sleeve, a sleeve I slit, removed the slitted sleeve, I did!

  • @rjhornsby
    @rjhornsby 3 года назад +7

    The ramping red would be great if you wanted to pretend you lived at NORAD, or in the kids’ rooms to tell them it’s dinner time without having to yell across the house over their AirPod music.

  • @steverpcb
    @steverpcb 3 года назад +4

    The master of RGB is Daves Garage, a good starting point is his Tiki Fire Umbrella video

    • @james42519
      @james42519 3 года назад

      I always liked smart home solver videos

  • @mysock351C
    @mysock351C 3 года назад +2

    That default magenta color explains why I always see magenta LED strips in kids windows in the neighborhood. They probably buy these things, give up on the app, and just leave it the default color when they turn the lights on at night.

  • @chrislee1701
    @chrislee1701 3 года назад +5

    "Air biscuit" 😂

  • @blackcountryme
    @blackcountryme 3 года назад +12

    I have some TCP internet light bulbs, and last night they went yampy (haywire) started flashing on and off like a particularly boring disco (ask your granny), for hours on and off, my neighbor must have thought I had lost it, just flicking the switch on and off. I had to dig out some real bulbs. then at 20 past 12 last night they started working again. they said the server went down. not happy I didnt even think that they were being fed from somewhere other than the app on my phone. worrying tbh

    • @AgentWaltonSimons
      @AgentWaltonSimons 3 года назад +17

      The 'S' in 'IoT' stands for security!

    • @berndeckenfels
      @berndeckenfels 3 года назад

      My e.io smart socket plug failed yesterday for me as well

    • @blackcountryme
      @blackcountryme 3 года назад

      @@AgentWaltonSimons But it's bloody worrying, I use them for when I'm not home or coming home late, this place is a sh**hole, so they are essential.

    • @du42bz
      @du42bz 3 года назад +5

      Install an alternative firmware on it, if that's not possible then throw it away
      Something like this should never be connected to an server

    • @rexsceleratorum1632
      @rexsceleratorum1632 3 года назад

      @@blackcountryme Set up something like Home Assistant to control the lights instead of OEM controllers

  • @Freestila
    @Freestila 3 года назад +4

    The ble protocol for that is already reverse engineered mostly, so you could control it eg with an esp32 and esphome or so.

  • @janhumpolicek8373
    @janhumpolicek8373 3 года назад +1

    A couple of decoupling. That made me chuckle

  • @TechGorilla1987
    @TechGorilla1987 3 года назад +3

    "One moment....please."

  • @TerryLawrence001
    @TerryLawrence001 3 года назад +1

    Flash back to 2008 when my network controlled RGB pot lights had two double sided pcbs and thumbnail sized Mosfets! Wifi was a hassle back then and Bluetooth was flaky as hell. To quote Simon Whistler, "The past was way worse!"

  • @tweed532
    @tweed532 3 года назад +1

    Playing 'Snap' with this I've got the 'Industrial version' 5-24V DC @ 192W in the garden shed. Mind could do with an amplifier interface, keep frying it with way, way too many M's of LED tape along the soffits and pergola in the garden. It's cool if you use the music option, playing music hardily audible on the mobile, syncs in for disco style on BBQ nights! 👌👍😃

    • @charleslambert3368
      @charleslambert3368 3 года назад

      you might be able to solder on extra power wires to the +5v and ground halfway along the tape without it affecting the RGB controls

  • @Nono-hk3is
    @Nono-hk3is 3 года назад +4

    I have 12V strings surrounding upstairs windiws, driven by a custom-made circuitboard attached to Raspberry Pi Zeros. I program them in Python with colors and patterns suitable to the holiday, or on regular days inhave them go through a red-orange-yellow-blue-yellow-orange red fade cycle that is synchronized with the sunrise and sunset (as per sunrise-sunset.org).
    They also dimm at 6 pm and brighten up at 9 am so as to be conducive to sleep. And i have four identical sets that stay synchronized with each other via IP multicast over the built-in wifi. They also have web servers so i can change the color patterns from my tablet.

    • @albanana683
      @albanana683 3 года назад +3

      Someone kept themselves busy during lockdown. Or just avoiding the family? 😁

    • @diezgp
      @diezgp 3 года назад

      Any guide to do something like that? It sounds pretty cool

    • @rexsceleratorum1632
      @rexsceleratorum1632 3 года назад

      @@diezgp A better option might be to have a single Pi 3/4 (or even Pi Zero W) running Home Assistant as the controller, with multiple esp8266/esp32 boards running espHome connected to the LEDs.
      Pis are great but they run a full blown OS from an SD card that can be corrupted by power cycling, not my first choice if I have to deploy half a dozen.

  • @maicod
    @maicod 3 года назад +1

    I wanted Pink as it's such a nice colour

  • @weerobot
    @weerobot 3 года назад +1

    That Chip Insane...

  • @mr_sheen_asg
    @mr_sheen_asg 3 года назад +1

    Usually boot pin or boot button means the mcu has a serial bootloader inside so you can program the mcu using a usb to uart ttl adapter just like an arduino.

  • @d.t.4523
    @d.t.4523 3 года назад

    Add a set of relays in place of the LED strip and that could be a nice remote control for appliances or lighting. Not a bad little board you found! Congratulations! 👍

  • @davidrathbone6978
    @davidrathbone6978 3 года назад

    The WiFi RGB strip is also single chip and more open to making it do more than leds, e.g. power applications, Train sets, door opening and other phone remote functions.

  • @OpreanMircea
    @OpreanMircea 3 года назад

    I am constantly amazed by the technology we have today

  • @ATMAtim
    @ATMAtim 3 года назад

    I have no use for one of these but have wanted one for a year. Time to come up with justification to purchase some.

  • @turquoisesorcerer
    @turquoisesorcerer 3 года назад +1

    5:24 is why i watch this channel
    (i understand NOTHING about electronics)

  • @paulstubbs7678
    @paulstubbs7678 3 года назад

    Yes, the processing power is crazy. We used to do everything with an 8 bit micro based computers, these days not even good enough to run a LED or two

  • @robertpepperwolfe7256
    @robertpepperwolfe7256 3 года назад +2

    7:38, looks like it could be configured to be a 12vdc cigarette plug with the fat tabs for neg, and the central pos

  • @jamesbrown4092
    @jamesbrown4092 3 года назад +1

    I think the first computer I worked on had less computing power than that chip.

  • @dennissimmonds1354
    @dennissimmonds1354 Год назад

    Always entertaining and informative clive.
    I was wondering if its possible to construct a power supply to save buying batteries to use multiple e-cig batteries just to test kits when built. Probably 5 and 9 volts. Cheers, and keep up the good work

    • @bigclivedotcom
      @bigclivedotcom  Год назад +1

      You can get voltage boost circuits that could increase the voltage from a cell to a higher adjustable level..

  • @andymouse
    @andymouse 3 года назад

    I had never heard the term " Air Biscuit " until I watched the classic oldie 'Weird Science' and yeah, bugger all in stuff nowadays ...cheers.

  • @dcallan812
    @dcallan812 3 года назад +1

    Nice little driver but I prefer the ws2811 type LEDS and use my computer to drive them

  • @yeliab814
    @yeliab814 3 года назад +8

    any security risks would seem to mainly revolve around the app and what things it’s exactly doing. I’ve purchased some Chinese smart home devices whose companion apps force me to set up an account and grant location access just to work they won’t work without tha “cloud” feature , even when I’m only looking for a simple local control.
    in this instance , there just doesn’t seem to be enough functionality to warrant using a smart phone app; I would still favor the traditional versions that include an RF dedicated remote control that can do all the same things. they are typically super cheap as well; I bought them as stocking stuffers for Christmas 2020..

    • @ElvenSpellmaker
      @ElvenSpellmaker 3 года назад

      The remotes always end up breaking, not working, or just get lost too quickly I find.

    • @dekjet
      @dekjet 3 года назад +1

      Android requires the coarse location access permission from all apps that use Bluetooth. Sounds odd but Bluetooth can be used to reveal location information.

    • @ElvenSpellmaker
      @ElvenSpellmaker 3 года назад

      @@dekjet I always found that really weird, and tbh Android permissions aren't anywhere near fine-grained enough...

  • @thehappylittlefoxakabenji8154
    @thehappylittlefoxakabenji8154 3 года назад

    nice I liked the orange bit

  • @I_am_Allan
    @I_am_Allan 3 года назад

    I love my RGB strips that light my house (with 2x Sylvania WiFi LED bulbs) but it took a LOT of buys to get the same setup.
    First lights I bought were 12V/G/R/B. The next 3 sets were 12V/B/R/G and totally not useable in connection with what I had (I don't do soldering, since I was jabbed with a soldering iron and had molton tin splashed on me, in metal shop in 8th grade.) so I sent them each back one at a time.
    Took a month to get my second set that was 12V/G/R/B. I wish someone would slap the MFG's around, and set a single standard. LOL

  • @some_haqr
    @some_haqr 3 года назад

    Wow your s62 is really fairing better than mine Clive. I'm already on my second and this needs "a new screen"
    Wink wink 2 year warranty
    I am really interested in the possibilities for this controller thanks for the awesome video dude!

    • @bigclivedotcom
      @bigclivedotcom  3 года назад

      This is a BV9900 Pro (also has thermal camera.)

    • @some_haqr
      @some_haqr 3 года назад

      @@bigclivedotcom OoOoOo I thought it was the 62 cos of the angled corners
      I'll be sure to check it out thanks dude

  • @DrJALAGHARI
    @DrJALAGHARI 3 года назад

    Thanks for sharing this useful information.

  • @fromgermany271
    @fromgermany271 2 года назад

    I should have seen that video *before* I ordered the LED strip w/o BLE controller.

  • @rklauco
    @rklauco 3 года назад +1

    The bad news is - there seems to be no reasonable way to get some development kit or the chip itself :( Would be nice to have ability to program my own BLE button...

  • @swedish_brick_enjoyer
    @swedish_brick_enjoyer 3 года назад

    I have this app but I have some car headlights that use it. They have the exact same interface and everything. I think they are also worth the wiring

  • @Aaronrobins2
    @Aaronrobins2 3 года назад +1

    Hello Scott Manley here...

  • @elbiggus
    @elbiggus 3 года назад

    I just bought what must be the super-deluxe model of this - Bluetooth (very similar looking app), WiFi (works with Alexa and Google Home, although I've not tested this), an IR remote, wall wart, spare coin cell for the remote, spare 3M sticky tape should I want to move it, a couple of connectors for joining additional strips, the 5m LED strip, and (for some reason) an IPA soaked lens cleaning cloth - and it cost me less than a tenner from a "well known online retailer". I wonder what the profit margin on these things is?

  • @draconothese
    @draconothese 3 года назад

    would like to see some argb lights taken apart there a bit more interesting due to being able to make multiple effects on the same strip and have a better color range normally

  • @Robert_Wolf
    @Robert_Wolf 3 года назад

    Ive seen those those xc610 soc chips in cheap bluetooth audio boards from ebay. I have a sideline of retro fitting bluetooth audio into vintage boomboxes and just looked at one and yep a xc610.. yes therr is no security on these chips no pin codes anything can connect to it.

  • @MUHAMMADYAWARIFRAHEEM
    @MUHAMMADYAWARIFRAHEEM 3 года назад

    Very nice video Sir

  • @webmonkees
    @webmonkees 3 года назад

    oh that needs to go in my dinosaur sculpture.

  • @dougsteel7414
    @dougsteel7414 3 года назад

    These microcontrollers are way more advanced than my first computer

  • @MajorHavoc214
    @MajorHavoc214 3 года назад

    I have a similar set that also uses the same app. Though mine has a proper small circuit board. It also has an infrared remote.

  • @urugulu1656
    @urugulu1656 3 года назад

    and i thought that the BK2491/3231 was a ridiculous chip but no this is even more silly thank you.

  • @SianaGearz
    @SianaGearz 3 года назад

    Seems the datasheet is little more than an ad, there's no register set or programming manual or SDK.

  • @ElvenSpellmaker
    @ElvenSpellmaker 3 года назад

    _"Air biscuits"_
    LOVE IT. New word for the Clive dictionary. XD

  • @nigelworwood8530
    @nigelworwood8530 3 года назад

    Nice to think they wind the LED strips using old 1/4inch tape machines. Nostalgia is not what it was.

  • @stridermt2k
    @stridermt2k 3 года назад

    Thanks for helping me sane Clive

  • @peter.stimpel
    @peter.stimpel 3 года назад +3

    32MHz to drive some LEDs, tell this the people that went to the moon with kind of your pink pocket calculator :)

    • @bigclivedotcom
      @bigclivedotcom  3 года назад +4

      And my 4MHz PIC software that has to generate the 8-bit PWM on three channels in code because there weren't any PWM modules.

    • @urugulu1656
      @urugulu1656 3 года назад

      well i guess that is more for the bluetooth than for anything else. usb needs 48mhz usually for example.

  • @deelkar
    @deelkar 3 года назад

    The boot pin is probably the reason it comes up magenta every time. Because you don't need green for magenta, otherwise it would come up "white"

  • @SigEpBlue
    @SigEpBlue 3 года назад +2

    144 W? I think they forgot a decimal place.

    • @casemodder89
      @casemodder89 3 года назад

      Should be 144 leds i'd guess.

  • @GavinScrimgeour
    @GavinScrimgeour 3 года назад

    Hey Big Clive, have you been to the secret bunker near St Andrews? Would like your thoughts on the engineering there.

  • @RiderBlitz1.0
    @RiderBlitz1.0 3 года назад

    Gamers also love rgb color,i love to see when the color changes slowly, peaceful ✌️
    Btw wow your phone looks the CAT model,that has rigid strong body,and Sapphire display? maybe.

    • @bigclivedotcom
      @bigclivedotcom  3 года назад +1

      Bv9900 pro.

    • @RiderBlitz1.0
      @RiderBlitz1.0 3 года назад

      @@bigclivedotcom wow amazing,the specifications are awesome, saw the review you did,sorry didn't recognize the model

  • @vinferrante3676
    @vinferrante3676 2 года назад

    Great video as always. I have looked but an not find the particular bluetooth and LED strip you are exploring. I wanted to purchase a few. Do you have the name and location ?

    • @bigclivedotcom
      @bigclivedotcom  2 года назад

      It was an eBay listing. They tend to change over time.

  • @EsotericArctos
    @EsotericArctos 3 года назад +1

    Maybe the pulsing red or the pulsing red and blue would be good for an alarm system?
    Personally I am not one for too much flashing or strobing in my lights. I prefer lights to just do the job of creating light :)

    • @charleslambert3368
      @charleslambert3368 3 года назад

      ruclips.net/video/2IeU7Cck0hI/видео.html Someone has wired smart lights up to their alarm system

  • @RambozoClown
    @RambozoClown 3 года назад +2

    And the real amazing part is they probably sell that chip for a dime.

  • @robell1981
    @robell1981 3 года назад +1

    Air Biscuits are apples proprietary version of American cookies, complete with 5G. 😂😂😂😂😂😂😂

  • @james42519
    @james42519 3 года назад

    there are better quality light strips and apps too really to be fair a lot of these can use the same apps too instead of the one that came with them too. i have had good luck with tuya working with some different brands instead of the app they came with. all myi lights are wiz connected lights and the kitchen light strip has a controller called "songbird" i think but using tuya app. for me wifi is better then bluetooth because i can control it from outside the house too since they connect to alexa and google Assistant and stuff.
    got this from reddit page but sure there are other places that can tell you what is compatable with what too.
    "As a Chinese smart device manufacturer, I know which app the product uses depends on the communication module on the PCB. The products on Amazon are basically Tuya modules. So you can download Tuya, Smart Life, and Smart living. Of course, there are other customized ones, but it's better to use Tuya or Smart Life because these two are standard versions with high stability. "
    "Smartlife(Tuya), MagicHome(FluxLED) and eWeLink(Sonoff) are the main ones; most others are branches of those apps"

  • @jamiecranton
    @jamiecranton 3 года назад

    I have these lights they use the same app I really dig em just wish you could customise them more

  • @HitLeftistsWithHammers
    @HitLeftistsWithHammers 3 года назад

    Somebody get Clive a club laser to tear down.

  • @weerobot
    @weerobot 3 года назад

    Cool...

  • @jsecret9459
    @jsecret9459 3 года назад

    Clive normally films his tear downs at 02:15 AM!!

  • @SwapnilV
    @SwapnilV 3 года назад

    I think it may be a simple bluetooth serial communication. Can you share the link to the app!

  • @Frustratedfool
    @Frustratedfool 3 года назад

    If I could make a kind suggestion, could you use a dark or black background as I binge watch RUclips at night and other channels that use black are easier on the eyes. Happy to make a PayPal donation towards something suitable (and fireproof)! Just let me know. Thanks.

    • @idjtoal
      @idjtoal 3 года назад +1

      You've no idea how much history is invested in that bit of particleboard. The burns, the flux stains, the dremel marks... it's practically a member of the family. Probably sounds like I'm joking, but I'm really not.

  • @zxrenew5642
    @zxrenew5642 3 года назад

    Magenta and Cyan, very ZX Spectrum.............

  • @herr_barus
    @herr_barus 3 года назад +1

    ...but does it carbonate?

  • @phonotical
    @phonotical 3 года назад

    Did you measure the length of the antenna? I think you take the speed of light divided by the frequency you want and then divide that total by four

  • @RandomBogey
    @RandomBogey 3 года назад

    I have one, that uses that same app, on the back of my tv. It pulls too much power from the tv’s USB port that it makes the tv whine. It whines the loudest when the leds are red and the tv will just cut the power to the port if the leds brightness is above 80%

  • @spikeydapikey1483
    @spikeydapikey1483 3 года назад +1

    Air Biscuit...... Pharp!

  • @ElvenSpellmaker
    @ElvenSpellmaker 3 года назад

    _"all the colours"_
    Aww you should've said _"all the colours the tape can"_ like last time! XD

  • @KirstyTube
    @KirstyTube 3 года назад

    I was just cringing at the LED'S cooking each other on the coil 🙄
    I have read some of the BLE specification and it is a nightmare compared to standard Bluetooth and that is a pain compared to wifi.... yeah my coding sucks.
    Thanks Big Clive :)

    • @bigclivedotcom
      @bigclivedotcom  3 года назад +2

      Fortunately they don't run at full whack. I wouldn't leave them running on the coil for a long time.

    • @littlejackalo5326
      @littlejackalo5326 3 года назад

      They don't get anywhere near hot enough and he didn't run them anywhere near long enough to cause any problems. Why would you say "I cRiNgEd" instead of asking, "is it going to harm the strip if you have them on whole it's coiled up," if you don't know? I don't get why people do that. If you don't know, ask.

  • @ethanb4461
    @ethanb4461 3 года назад

    We need a big Clive builds a power wall

  • @EcoHamletsUK
    @EcoHamletsUK 3 года назад

    Those TX and RX pads make me want to wire up an FTDI board and reprogram it, so why can't they use something easy to hack like an ESP32? Firefox thinks the site with the datasheet is dangerous, so I'm not going there to find out if the XC610 can be programmed, and if there's any possibility of those of us who don't like leaving the safety of the Arduino IDE being able to do it!
    On the other hand, I don't understand why anyone would want multi-colour lighting. I just use lights to see what I'm doing, and so I don't trip over things when moving around, But I'm still curious and want to play with some!

  • @DTronicsUK
    @DTronicsUK 3 года назад +3

    i have some bluetooth controlled led tape lights as well, mains powered and the funny thing is that they are made by a company called MINGER, someone needs to tell the chinese what there name means in english :D

    • @blackcountryme
      @blackcountryme 3 года назад

      I think ugree was taken.

    • @morpheox
      @morpheox 3 года назад +1

      I, a Swede, could now tell you the story about the Honda Fitta... :D

    • @laserhawk64
      @laserhawk64 3 года назад

      That's not slang in the USA ;) although our English is arguably a bit rougher than that of the original source. Walk down nearly any street in any city or town (size doesn't matter here, sorry boys!), you'll hear what I mean...

  • @BoB4jjjjs
    @BoB4jjjjs 3 года назад +1

    Nice, I like it! :-))

  • @dfrach
    @dfrach Год назад

    I would like to use this RGB controller in a car. For the headlight halo ring. Does it hold the same RGB value/setting after car is parked overnight? Meaning few hours/ days of zero voltage on the controller? thanks!

    • @bigclivedotcom
      @bigclivedotcom  Год назад

      Features may vary between controllers. Some may hold the last setting.

  • @tmastersat
    @tmastersat 3 года назад

    They have a waning not to power it with led s on the spool like this

  • @ecospider5
    @ecospider5 3 года назад

    I wonder what else you could control with this driver. You have 3 mosfets controlled plus a 5v power rail. 3 dc motors and you might have an rc car. :)

    • @jpdemer5
      @jpdemer5 3 года назад

      As long as your motors don't draw more than an amp...

  • @berndeckenfels
    @berndeckenfels 3 года назад +1

    If it is BLE it’s probably easy to reverse, I did that a while ago with my Lampster using „LightBlue“ iPad app itblog.eckenfels.net/index.php?/archives/527-The-Lampster-Bluetooth-Details-BLE.html (and has zero security) . Unlike apples air bisquists (u1 chip)

  • @ianhosier4042
    @ianhosier4042 3 года назад

    Done it using an Arduino nano and it remote control - much safer than bluetooth

  • @markiangooley
    @markiangooley 3 года назад

    Can that chip emulate an LM3909, though? Probably not!

  • @shyguy2189
    @shyguy2189 3 года назад

    Why not use some in your streams as some nice backgrond light might look nice 😊😉

  • @qwaqwa1960
    @qwaqwa1960 3 года назад +1

    That's 144 Chinese watts, or about 40 normal watts...

    • @UltimateAlgorithm
      @UltimateAlgorithm 3 года назад

      Probably missing a decimal point there, I would say 1,44 watts a lot more realistic.

    • @rexsceleratorum1632
      @rexsceleratorum1632 3 года назад

      @@UltimateAlgorithm Actually 7.3 watts, Clive had a USB tester in there if you watched the video

  • @arduino12
    @arduino12 3 года назад +1

    Very nice! A year ago I reverse engineered the BLE protocol for a very similar controller that works with the same App:
    github.com/arduino12/ble_rgb_led_strip_controller
    Mine are 12V and the SoC name is blurred out, but have a 12MHz crystal- see PCB at the end of my repo.
    I wanted to use one main ESP32 to control 8 of them but ended up using ESP32 + 24CH DMX controller for better performance :)

  • @Jim-si7wz
    @Jim-si7wz 3 года назад

    wait what, so RGB doesn't make natural light, what do we need for natural light, thinking of plant's, could you let me know please Clive.

    • @bigclivedotcom
      @bigclivedotcom  3 года назад +1

      The hydroponics industry could answer that.

    • @Jim-si7wz
      @Jim-si7wz 3 года назад

      @@bigclivedotcom thats who sold me the red green and blue lights to raise the seedings

  • @elonmask50
    @elonmask50 3 года назад

    Hi Clive, why do you and Squeeky Dave call filter caps (in parallel with the load), de coupling caps (in series with the load), it’s very annoying.

    • @bigclivedotcom
      @bigclivedotcom  3 года назад

      en.wikipedia.org/wiki/Decoupling_capacitor

    • @elonmask50
      @elonmask50 3 года назад

      @@bigclivedotcom, thanks Clive, it was interesting read, but religion isn’t real just because lots of people believe it, they have always and will always be filter capacitors a pi filter for example, two caps and a choke.

    • @brendanrandle
      @brendanrandle 3 года назад

      if you pronounce the L in solder odds are you call them decoupling capacitors

    • @elonmask50
      @elonmask50 3 года назад

      @@brendanrandle, I also pronounce the p in pink, but what does the ability to English have to do with it?

    • @brendanrandle
      @brendanrandle 3 года назад

      Meant to imply that it's mostly Americans that refer to them as filtering capacitors

  • @duncanmcewan1049
    @duncanmcewan1049 3 года назад +1

    Hah - I can't believe i never realised you were an internet God now Clive ! Long time since terrorising drunks with laser pens from the top floor :p

    • @rexsceleratorum1632
      @rexsceleratorum1632 3 года назад

      Terrorizing people from the top floor looking down is a very godlike thing to do. Lightning, laser, what's the difference -- a fan of Clive from the depths of the mysterious Orient

    • @bigclivedotcom
      @bigclivedotcom  3 года назад

      Yeah, I didn't realise it was going to turn out like this.

    • @rexsceleratorum1632
      @rexsceleratorum1632 3 года назад

      @@bigclivedotcom Now you must want to deal with the skeletons in your closet. Do you want to outsource it to India? I already have his name

  • @rpavlik1
    @rpavlik1 3 года назад

    Oh cool! I recently repaired a compatible light ("Lumin+" Bluetooth mood light bought in a Five Below store here for $5 - just a single RGB led) using a collection of greatest hits in Chinese ic's: j3y, A5SHB, and the 662 ldo (at least for the non clones, the last letter is just a batch code). (Died by reverse voltage from my bench supply, colors of battery were backwards.) There's a fair bit of info online on the protocol, seems easy enough to hack. You just send the right handful of bytes over Bluetooth low energy. (There's a RUclips series on reverse engineering the lamp I have and controlling with an esp32 board.) This is also the same protocol (and app basically) as the Triones app and lights. I started writing a driver for esphome to easily connect it to my smart home stuff, but I haven't gotten that working yet.
    Protocol is here: github.com/madhead/saberlight/blob/master/protocols/Triones/protocol.md
    I do really wish the xc610 were available to folks like us, it seems really nice, and easy package to hand solder. The Lumin light has a really clever power button circuit I'm now quite familiar with: it starts the flow of current with a press, the micro can keep it on until it wants to turn itself off. While it's running, the button can also be used as a normal input button to the micro. (Schematic in the FCC filing was helpful)
    Apple air tags are nrf52840 (arm cortex m4, pretty beefy) plus other stuff. Western trackers often use nrf51 or 52 series chips.
    Location permissions are just to be able to use Bluetooth low energy, since your location could be inferred from the devices near you. Good to be safe like that, but leads to lots of bad reviews if devs don't explain "yeah we need location permissions to talk to this Bluetooth thing".

  • @markevans2294
    @markevans2294 3 года назад

    Does it have a data sheet or more of a book?

  • @maicod
    @maicod 3 года назад

    I also got that keyfob because I was curious if it had GPS functionality inside (sale descriptions made it look like that a bit) but all I am able to do is let my tablet miauw :D when the tracker is too far from tablet

    • @bigclivedotcom
      @bigclivedotcom  3 года назад +1

      The tracking function was probably based on it being a crude clone of the Tile trackers that require a phone with a matching app uploading a keyfob's location to a base computer. I doubt these will be more useful than just a close range key finder.

    • @maicod
      @maicod 3 года назад

      @@bigclivedotcom yea it was only 2 Euros and I got it out of curiosity.

  • @licensetodrive9930
    @licensetodrive9930 3 года назад

    Neat, but not something you'd want to install in a public place, anyone with the app could mess with the settings.
    I wonder if an immediate next door neighbour could mess with the settings through the walls(s)...

    • @james42519
      @james42519 3 года назад

      About all of them make you make a accout so you works need to figure out what app it uses then the login that the person set to even try and do that really. From. What i seen that don't let multiple accounts connect to same controller but can have same account on multiple devices to control from more them one phone so family can all have it on there phones and stuff to control lights too