Gesture Sensor not working

Hello guys,
I am pretty new to Wio Link. And I am stuck where I am trying to read gesture sensor value connected to the Wio Link.
I have connected the sensor to the I2C port.
I am using python to retrieve the sensor value. But it always outputs 0.
Here is my code:

import json
import urllib2
var=1
url=“https://iot.seeed.cc/v1/node/GroveGestureI2C0/motion?access_token=b423ba1d57c0e60291b188118b0c99d3
while var==1:
data=json.load(urllib2.urlopen(url))
print data[‘motion’]

Am I doing something wrong here?

Same here, just from the API reading is 0… with many different gestures as shown in the video seeedstudio.com/depot/Grove- … -2463.html
Any suggestions??

I also have the same problem.

After adding the sensor to the i2c port using the app, I open up the device webpage.
There is a get button, which I pressed over and over again during I made some gestures. Unfortunately the result is alway {“motion”: 0}.

Same here.

@WIO Team:
Shouldn’t the gesture Grove trigger an event? Else it wouldn’t make much sense.

Cheers
Uwe

I’ve copied this thread to the Grove section viewforum.php?f=17
Maybe the chances are better to get an answer there.

It would be a much better idea to write a python code so that the gesture sensor scans the environment indefinitely.
Maybe the time period for scanning is too less when you run it through the webpage.
But anyhow, both ways are pretty much dead end for me.