Capacitive Touch Switch

Hello! I ought to preface this by saying I love the channel, and it’s great to see a forum like this for all manner of brainstorming!
Now, onto the struggles.

I want to automate my Philips 3300 Series LatteGo using the Design Challenge #1 modules.
I have soldered together a couple of units based on the latest video in the series, on an etched copper plate.

When I have a piece of copper tape over a button on the 3300 panel, I can touch the tape to activate the button, capacitive touch works through and across the tape.

The moment I stick on the module however, it more or less (tests with loose bits of tape and large fingers can be somewhat tough to reliably reproduce) doesn’t react to my finger at all. Tapping the tape over the button, the tape bridging the gap, the tape on the module, nothing.

If I tap the tape WITH the module itself as I hold it, it will only activate if I hold across the copper of the module, bypassing the circuit, but if I hold on the in-out pins of the module, it more or less never activates from a tap.

I tried wiring the module up to GND and digital pin 5 on an Arduino UNO R4, which I plugged via usb-c to the wall. Running the code:

void loop() {
  pinMode(triggerPin, OUTPUT);
  digitalWrite(triggerPin, HIGH);
  delay(350);
  pinMode(triggerPin, INPUT);
  delay(3000); 
}

The LED on the module blinks just fine, but it does absolutely nothing to trigger any manner of capacitive touch, and this has been tried with various lengths and widths of copper tape. With conductive adhesive, of course, 3M #1181.

Is the parasitic capacitance of the circuit/PCB as a whole too high, making the 3300 simply ignore the input, or not register it? I have 3 modules, all of which I’m pretty sure I soldered correctly, and again, LED activates on all of them just fine.

Any and all help would be appreciated! I would LOVE for this to work!

The modules themselves for additional reference.

Are those boards double-sided?
If so, the copper on the back might be introducing a lot of extra parasitic capacitance.

1 Like

They are! Theoretically I don’t believe the top later and bottom layer of copper is connected in any way, but if the back either touches the capacitive panel or somehow touches the tape, yeah, that could probably be it…

I’ll sand the backs down and give it another shot!
Got in touch Phillips technical, but they sadly are unwilling to disclose the exact type and specs of the control panel… But I’m not willing to give up yet! Thanks for the input!

Yeah the back copper is “diluting” the change in capacitance, by greatly increasing the parasitic capacitance to ground.

Ideally, you want that node between the diodes to be very small and only connected to the active stimulus electrode, over the button. In this configuration, you maximize the “delta-C” - the change in capacitance that the sensor detects.

1 Like