Page 3 of 5

Re: Meek Wifi Wall Switch

Posted: Tuesday 10 April 2018 23:04
by poudenes
Great to see this product and it is possible to buy!!

I have some switches that have 2 in 1. So i can turn on and off 2 bulbs within 1 wall module.
Is it possible to program the switch to turn on both bulbs separate?

1 touch is turn on bulb 1
2 touches turn on bulb 2
3 touches turn off bulb 1
4 touches turn off bulb 2

or hold the your finger on the panel turn off both

How far can you program the switch :)

Re: Meek Wifi Wall Switch

Posted: Wednesday 11 April 2018 8:38
by Meek
poudenes wrote: Tuesday 10 April 2018 23:04 Great to see this product and it is possible to buy!!

I have some switches that have 2 in 1. So i can turn on and off 2 bulbs within 1 wall module.
Is it possible to program the switch to turn on both bulbs separate?

1 touch is turn on bulb 1
2 touches turn on bulb 2
3 touches turn off bulb 1
4 touches turn off bulb 2

or hold the your finger on the panel turn off both

How far can you program the switch :)
Thank you for the shown interest!
We’re in discussion with several parties to start mass producing these switches. On our website, we will announce they availability date.

The 1 touch button version, can be equipped with 3 outputs (Meek MM). It’s fully programmable, so the user can decide how the Wifi switch acts once an input is received.
For instance, the input could be programmed as: long press, 2 short presses, …
Also, we will have a Meek MT2 (2 touch-inputs & 2 outputs) & Meek MT3 (3 touch-input & 3 outputs) available soon. With these switches, you can directly control 2 or 3 light bulbs directly.
MeekMT3.jpg
MeekMT3.jpg (326.78 KiB) Viewed 4495 times
The programmability is fairly easy the “ESPEasy Rules” function. We will also make some templates rules available, that you could easily adapt to your own wishes.

Re: Meek Wifi Wall Switch

Posted: Sunday 29 April 2018 23:57
by Meek
Just uploaded a video with the progress of the Meek MD1 Wi-Fi dimmer module.

Re: Meek Wifi Wall Switch

Posted: Wednesday 02 May 2018 6:48
by tontze
Do you feel button circles (are they carved)?

Re: Meek Wifi Wall Switch

Posted: Friday 11 May 2018 19:47
by Meek
You do not feel the circles, the front panel is from tempered glass, so you have a smooth surface.
On the back side (inner side of the glass panel), a coating is applied with the exception of the circles.
So on the inner side, you can see thru the circles.

If you’re looking for feedback, we can provide auditory feedback.
The Meek MT1 & Meek MP1 can be equipped with a piezo speaker where you can play RTTTL tone or music on.

Re: Meek Wifi Wall Switch

Posted: Friday 11 May 2018 21:35
by Onrust
Wow! Just WOW! This is really such a cool project! Although you can't just call it a 'project' anymore. I really love it when someone puts an idea or dream into reality like you do.

Well, all superlatives aside, I really hope these switches will become available soon. I bought some Sonoffs Touch recently but now I see you are going to create a dimmer, I might as well wait until I can buy Meeks and have everything in the same design.

Re: Meek Wifi Wall Switch

Posted: Saturday 16 June 2018 20:37
by Meek
Herewith a picture of the latest revisions Meek MP1 switches.
20180616_194832.jpg
20180616_194832.jpg (334.81 KiB) Viewed 4020 times
We’re currently assembling these to distribute them to a select group of tester.
The Meek MP1 is a :
• Wi-Fi enabled light switch
• With a Doppler presence detector
• Audi visual feedback with a RGB addressable LED and a RTTTL Speaker
• Fully programmable timers a functions

This switch operates out of the box even without a Wi-Fi connection.
Once connected to Wi-Fi you can control it with any device that has a browser (Phone, TV, Smart Watch,…) or by speech recognition enabled devices (Google Home, Alexa, Siri,..).

Ongoing, we’re expanding the functions of these devices.
For instance :
• Alarm Function ; you can “arm” the device, so whenever a movement is detected, the Meek MP1 will sound and alarm and blink the light continuously until the user disarms it.
• Doorbell ; (we will develop a doorbell in the future) if you have “Smart Doorbell”, whenever the doorbell is pressed, the Switch will mimic a doorbell and blink the lights.
• Night Modus : the presence detection will only switch the lights, if it’s in the Night Modus.

As we’re developing several other Meek devices, that will seemingly interact with each other, to truly create a smart house !

The possibilities are endless as the community is able to contribute and able to add extra functionality to our devices !

Re: Meek Wifi Wall Switch

Posted: Friday 27 July 2018 14:30
by poudenes
Hi All,

Im testing this great switch now and i love it!!! Here a nice example of script i use inside the switch.
Tap 1 turn on light
Tap again turn off light
hold the touch 3 seconds for a 3rd action

Actions are publish and SendToHTTP to activate devices inside domoticz, turn on light and turn on virtual switch.

Code: Select all

on Touch#Button=1 do
rtttl,5:d=8,o=5,b=999:9d.

     timerSet,1,1
     timerSet,2,1
     timerSet,3,5

endon

on rules#timer=1 do
     if [Touch#Button]=0 and [StatusMode#LightStatus]=0
          TaskValueSet 6,3,1 // on
          Publish domoticz/in,{"command": "setcolbrightnessvalue", "idx": 444, "hex": "ffffff", "brightness": 100 }
          Publish domoticz/in,{"command": "switchlight", "idx": 444, "switchcmd": "Set Level", "level": 100 }
          SendToHTTP 192.168.100.18,8081,/json.htm?type=command&param=udevice&idx=471&nvalue=1&svalue=0
          neopixel,1,0,255,0 // Green
     else
          TaskValueSet 6,3,0 // off
          Publish domoticz/in,{"command": "switchlight", "idx": 444, "switchcmd": "Off" }
          SendToHTTP 192.168.100.18,8081,/json.htm?type=command&param=udevice&idx=471&nvalue=0&svalue=0
          neopixel,1,255,0,0 // Red
     endif
endon

on rules#timer=2 do
     if [Touch#Button]=1
          SendToHTTP 192.168.100.18,8081,/json.htm?type=command&param=discomodenum9&idx=444  
          SendToHTTP 192.168.100.18,8081,/json.htm?type=command&param=udevice&idx=471&nvalue=1&svalue=0  
         neopixel,1,0,0,255 // Blue
         endif
endon

on rules#timer=3 do
     neopixel,1,255,0,255 // Pink
endif
endon

on SwitchOn do
     TaskValueSet 6,3,1
     Publish domoticz/in,{"command": "setcolbrightnessvalue", "idx": 444, "hex": "ffffff", "brightness": 100 }
     Publish domoticz/in,{"command": "switchlight", "idx": 444, "switchcmd": "Set Level", "level": 100 }
     neopixel,1,0,255,0 // Green
     timerSet,3,5
endon

on SwitchOff do
     TaskValueSet 6,3,0
     Publish domoticz/in,{"command": "switchlight", "idx": 444, "switchcmd": "Off" }
     neopixel,1,255,0,0 // Red
     timerSet,3,5
endon

Feedback action when you turn on virtual switch in Domoticz, so the Meek Switch go on as well and status will be on as well

those lines put in virtual switch at On Action and Off Action

http://192.168.100.112/control?cmd=event,SwitchOn
http://192.168.100.112/control?cmd=event,SwitchOff

in Meek Switch you have a second Rule 2:

Code: Select all

on SwitchOn do
  TaskValueSet 6,3,1
  Publish domoticz/in,{"command": "setcolbrightnessvalue", "idx": 444, "hex": "ffffff", "brightness": 100 }
  Publish domoticz/in,{"command": "switchlight", "idx": 444, "switchcmd": "Set Level", "level": 100 }
  neopixel,1,0,255,0 // Green
  //timerSet,3,5
endon

on SwitchOff do
  TaskValueSet 6,3,0
  Publish domoticz/in,{"command": "switchlight", "idx": 444, "switchcmd": "Off" }
  neopixel,1,255,0,0 // Red
  //timerSet,3,5
endon

on rules#timer=3 do
  neopixel,1,255,0,255 // Pink
endif
endon

Re: Meek Wifi Wall Switch

Posted: Friday 03 August 2018 20:10
by Meek
Hello poudenes, it’s great to see what you have accomplished and also a big thanks for sharing this info!

Herewith a small update with regards to the development of the Meek switches :

We’ve just finalized the design process of several Meek switches and the PCB’s are send for production.

The current estimate is that we will start assembling the switches within 2 weeks.
After the thorough internal test procedures, we will deliver a small quantity to our 1’st line of testers (1’st degree Meekers :D ).

After this testing period, we will issue the 1’st batch for commercial deployment.

A very rough estimate is that we will have a small batch ready for commercial deployment somewhere end September.

Re: Meek Wifi Wall Switch

Posted: Thursday 27 September 2018 20:44
by Meek
A brief update: attached you’ll finds a few pictures of the final versions that are currently been tested:
meek.jpg
meek.jpg (32.9 KiB) Viewed 3384 times
As announced earlier, we have the intension to release the switches end September in small quantities.
The first available versions will be the :
• Meek MT1 (Meek Touch with 1 Touch input/output)
• Meek MP1 (Meek Presence with 1 Touch input/output)

In October, we’ll add the :
• Meek MT2 (Meek Touch with 2 Touch input/output)
• Meek MT3 (Meek Touch with 3 Touch input/output)


In the 4’th quarter, the Meek MM1 (Meek Motor for “mechanical home ventilation systems”) will be added to the product range.

The development of the Meek Wi-Fi Dimmer “Meek MD1” still continues and in our test environment, it’s already showing pretty good results!
On the hardware side it’s nearly completed but we still need to deploy some enhancements on the software side to ensure flawless operations in various conditions. We expect them to be commercially available in 2019.

Our website ( www.meek-ha.com )is also undergoing some transformation with information about the switches itself but also how to integrate them in various automations systems.

Just to tickle the imagination and show the endless possibilities with these devices, as proof of concept, we’ve imbedded a light sensor in the switch.
LDR-sensor270918.jpg
LDR-sensor270918.jpg (14.63 KiB) Viewed 3383 times
In the near future we will bring you more groundbreaking and exiting new devices!

Re: Meek Wifi Wall Switch

Posted: Thursday 27 September 2018 22:44
by heggink
What price level do you have in mind?

Re: Meek Wifi Wall Switch

Posted: Thursday 27 September 2018 22:45
by heggink
Forgot: his fast do they switch from domoticz (latency)?

Re: Meek Wifi Wall Switch

Posted: Friday 28 September 2018 5:58
by poudenes
I'm testing 1 of the switches include presence sensor. Its fast. presence is fast and very sensitive!
I created a 2 way config. You can turn on/off a bulb with Meek Switch directly (wired), i don't use that.

When i switch on the Touch Switch it sends command to Domoticz to turn on a bulb.
When i switch a bulb on inside domoticz it sends command to switch to turn it on as well (led color chance)

Re: Meek Wifi Wall Switch

Posted: Friday 28 September 2018 22:11
by Meek
heggink wrote: Thursday 27 September 2018 22:44 What price level do you have in mind?
Price will be announced within couple of days on our website.

Re: Meek Wifi Wall Switch

Posted: Friday 28 September 2018 22:11
by Meek
heggink wrote: Thursday 27 September 2018 22:45 Forgot: his fast do they switch from domoticz (latency)?
That depends mainly on your network capabilities. In my situation, on average it’s way below 100ms.

Re: Meek Wifi Wall Switch

Posted: Friday 05 October 2018 9:10
by Boredcat
I really like you project and the price level is good. To bad it won't fit in my current house setup since my switch are located in a 3 of 4 flush surround plate.
Do you have plans to release a MEEK switch which can be connected (behind) a normal rock switch or push switch.

Re: Meek Wifi Wall Switch

Posted: Saturday 06 October 2018 13:18
by Ronker
Do you think you can get this certified? and if you can when could this happen? I am searching for something like this.

Re: Meek Wifi Wall Switch

Posted: Wednesday 10 October 2018 21:14
by Meek
Boredcat wrote: Friday 05 October 2018 9:10 I really like you project and the price level is good. To bad it won't fit in my current house setup since my switch are located in a 3 of 4 flush surround plate.
Do you have plans to release a MEEK switch which can be connected (behind) a normal rock switch or push switch.
Thank you for your kind words!

With regards to ; “which can be connected (behind) a normal rock switch or push switch”, at this stage we do not have any project ongoing for this user case(yet).
What we do have on our to-do list, is to find a manufacturer/supplier for a 2- and 3 socket(perhaps even 4!) casings and matching glass panel with touch and/or outlet socket possibilities.

Re: Meek Wifi Wall Switch

Posted: Wednesday 10 October 2018 21:23
by Meek
Ronker wrote: Saturday 06 October 2018 13:18 Do you think you can get this certified? and if you can when could this happen? I am searching for something like this.
At the current development stage and limited resources, we did not apply for a CE and FCC certification yet.

As quoted on our website :
-------------------------------------------------------
On our priority list, besides safety, affordability is a main driver and at the current development stage, we don’t have the resources to apply for a CE & FCC certification yet. As safety is the first and most important driver, during the entire design process, we adhered to operate within the regulatory limits, to deliver a safe and reliable product.
-------------------------------------------------------

That’s one of the reasons why we use the HLK-PM01 and a pre-assembled- CE and FCC certified ESP chip.

Re: Meek Wifi Wall Switch

Posted: Wednesday 10 October 2018 22:10
by MarceldeJongNL
Meek wrote: Wednesday 10 October 2018 21:14

With regards to ; “which can be connected (behind) a normal rock switch or push switch”, at this stage we do not have any project ongoing for this user case(yet).
I would be extra interested if you could make them build in like the https://shelly.cloud switch, but with your excellent domoticz support!