Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
49 views

The intent of the code I created is that whenever the data from the Pedometer changes, the data is passed in real-time via the onSensorChanged() function. However, even though data is being collected ...
1 vote
0 answers
175 views

call of the function came from another file and here is some details: const options = { taskName: 'steps counter', taskTitle: 'Counting steps', taskDesc: 'Track your steps in the ...
0 votes
0 answers
36 views

I'm developing an indoor navigation application. I want to move the arrow sign in the field with the information I obtain from the device's sensor. If we think of the area as a room, as you move ...
2 votes
0 answers
186 views

I am currently developing a Application to track Steps. In order to track steps i am using the following Sensor of the phone: Sensor.TYPE_STEP_COUNTER This worked fine for all devices I tested it with....
3 votes
0 answers
416 views

I am simply developing a pedometer app with flutter backed by firebase. pedometer package is used for detecting steps but we need to update current steps to 0 at midnight. Using workmanager and ...
2 votes
0 answers
3k views

I need to count the steps a user does and the TIME for each step! I tried to use a pedometer from Flutter but I am facing already some problems. I can't restart the pedometer and the counter seems to ...
0 votes
0 answers
85 views

I'm working on a personal project on a pedometer integrated with firebase but I'm not so good with date. Don't know if you can help out with this... What I'm trying to achieve will be a situation ...
0 votes
0 answers
202 views

Hi everyone I'm trying to make an pedometer app. I installed theese packages. "react-native-pedometer": "^0.0.7", "react-native-pedometer-ios-android"//then i deleted it &...
1 vote
0 answers
238 views

I have created a simple android step counter in Java. I have the step counter working but for some reason when I boot up the application it starts off at 62000 steps. I have not hardcoded this value ...
2 votes
0 answers
168 views

I'm working on a health application with a step-counting feature. I'using pedometer 1.2.5 https://pub.dev/packages/pedometer/versions/1.2.5 the app is working just fine while the app is not terminated ...
0 votes
0 answers
2k views

I need to count steps using data from Accelerometer and Gyroscope from a cellphone. What algorithm can I use considering I have these data? Where my Accelerometer describes the velocity of the device,...
1 vote
0 answers
1k views

I am new to android and working on an application like pedometer. I have calculated total steps using Step Count Sensor , Now I want to calculate total time and calories burnt. Step count sensor ...
0 votes
0 answers
143 views

I'm trying to create a healthcare application and am using Core Motion's CMPedometer to obtain live step count. However, I wanted the step count to be uploaded in real time to Firebase, as well as to ...
2 votes
0 answers
519 views

I have built my app which includes a the expo pedometer app. The pedometer works in expo, but has issues when built/standalone. Knowing from the expo docs that I needed to configure OAuth for google ...
1 vote
0 answers
408 views

I query the CMPedometer, i've done lot of test with differents Date() and CMPedometer.queryPedometerData never return more than 9251 steps. For exemple if I query for each day (Date() to Date - 1, -...
1 vote
0 answers
205 views

I have an Xperia Z phone which runs Android 5.1 on. When checking the sensors that are present I get the below results: mSensorAccelerometer: {Sensor name="MPL Accelerometer", vendor="Invensense", ...
0 votes
0 answers
569 views

I want to calculate walking distance after click button.I used CMPedometer for application but I don't want to use CMPedometer. I will make it with location info. I used core location framework but I ...
1 vote
0 answers
594 views

I'm developing an app to detect and count the steps. I used TYPE_STEP_DETECTOR/COUNTER sensors. Everything works fine but when the screen turns off, no more step detects. I tried to solve this problem ...
2 votes
0 answers
386 views

Recently I face a problem which is rare to appear What I try to do is to get the number of steps per minute. In my code: let date = NSDate() for i in 0...1000 { dispatch_async(...