Tagged Questions
The uiaccelerometer tag has no wiki summary.
5
votes
2answers
185 views
Is there an iOS library to help me detect higher-level accelerometer gestures?
For example, let's say I want to detect if the user made a circle gesture so I can trigger something in my game. Is there a library that would allow me to just listen for some sort of ...
2
votes
1answer
214 views
horizontal and verticle shake count using accelerometer in iPhone/iPad
i want to count number of shake horizontally and vertically,i have referred to UIAcceleration
i have also referred to Motion Events
But couldn't come up with better approach.
Any kind of help is ...
2
votes
3answers
566 views
Using the Android Accelerometer without having the device flat
I've been playing around with the Android Accelerometer of late using the Android SDK and the Adobe AIR for Android SDK on my Motorola Droid. What I've noticed is that the accelerometer works just ...
2
votes
3answers
2k views
How to caluclate the G-Force value of a moving car using iPhone accelerometer values
I am working on app which is used to display the current G-Force value of a moving car on iPhone. I don't know how to calculate the G-force value using the iPhone accelerometer values. Also, I have to ...
1
vote
1answer
34 views
Which movements are managed by accelerometer on iOS?
The apple developer documentation explains the handled movement by this image :
I'm pretty confused now... because doing some tests i get that the Accelerometer doesn't handle translation on the ...
1
vote
0answers
41 views
How to get the pixel value from the acceleration of UIAccelerometer?
I've calculated the velocity from the acceleration of UIAcceleometer,
and I want to move the UIView in opposite of the distance which the device moves but same distance.
For example, if I move the ...
1
vote
1answer
167 views
Calibrate Accelerometer?
I see many apps on the app store that have a button like calibrate accelerometer (for example: Doodle Jump)
I am looking to implement a similar way to calibrate the accelerometer in my app.
I am ...
1
vote
1answer
445 views
Accelerometer Low Pass Filtering
Still on the BigNerdRanch iOS Development book.
In the Accelerometer chapter, they first implement accelerometer tracking but it's fairly jumpy. They then suggest to apply a low pass filter to it by ...
1
vote
1answer
356 views
Does iPad have accelerometer or gyro?
I have an iPhone app using these (via UIAccelerometer) - will it work on the iPad?
1
vote
1answer
296 views
Accessing iPhone Accelerometer using PyObjC
I want to access the Accelerometer of my iPhone through PyObjC.
Here is my Code:
@objc.signature("v@:@@")
def accelerometer_didAccelerate_(self, accelerometer, acceleration):
msgBox = ...
1
vote
0answers
181 views
iphone sdk stop Accelerometer
Hi i have an app i need to finish i have an image that moves around the screen and when you collide i need the freeze where it is at thnx
1
vote
3answers
860 views
Cocos2d shake/accelerometer issue
So I a little backstory. I wanted to implement a particle effect and sound effect that both last about 3 sec or so when the user shakes their iDevice. But first issue arrived when the build in UIEvent ...
1
vote
1answer
180 views
Getting level of rotation with UIAccleration
Games like FroggyJump for iPhone figure out the rotation of the iphone. I'm getting confused with the acceleration values. How do I calculate the level of rotation? I suppose I need to consider when ...
1
vote
1answer
199 views
UIAccelerometer and UIScrollView
I want to scroll a scrollview based on the UIAccelerometer values. What is the best way to accomplish this?
Initially I set the content offset to a value based on the accelerometer values I get. Then ...
1
vote
0answers
836 views
Using iphone accelerometer AND UIEventSubtypeMotionShake event simultaneousluy
I am using accelerometer to move/change things on the screen in my app.
I also need to detect UIEventSubtypeMotionShake in the view controller for some other animations.
As my app is a simple view ...
1
vote
2answers
792 views
iPhone accelerometer:didAccelerate: seems to not get called while I am running a loop
An accelerometer related question. (Sorry the formatting may not look right, its the first time I am using this site). I got the accelerometer working as expected using the standard code
...
1
vote
1answer
128 views
how to detect iphones loss of velocity
How can you use the accelerometer to detect if the phone has come to a halt.
In my case iw want to use it for, i'd like to detect whether its changed direction on the same axis ( a u-turn) which ...
1
vote
2answers
223 views
Possible to receive UIAccelerometer updates when app is inactive?
When my iPhone app resigns active status, the sharedAccelerometer singleton instance of UIAccelerometer stops sending accelerometer:didAccelerate: messages to my delegate.
Is it at all possible to ...
1
vote
2answers
375 views
UIAccelerometer doesn't send events to second delegate
I am developing a game that uses a different controller for each level. It needs to detect a shake via the accelerometer, so it registers itself as a delegate like so:
UIAccelerometer *accel = ...
1
vote
3answers
556 views
Multiple UIView instance doesn't work
I have subclass UIView class in a Bounce class with Accelerometer.
This Bounce class show an image and move it on the screen. When the iPhone device is moved, this image Bounce on the screen.
When I ...
1
vote
2answers
931 views
accelerometer range in iPhone
i have implemented following method in my application.
- (void)accelerometer:(UIAccelerometer *)acel didAccelerate:(UIAcceleration *)aceler {
if (fabsf(aceler.x) > 1.5 || fabsf(aceler.y) > 1.5 ...
0
votes
0answers
24 views
iOS 5 Detect Repeating/Continuous Shake
I am writing an app that will need to detect a users shake not only once but continuously. The idea is that a sound would play once on a single shake and the sound would loop if the device is ...
0
votes
0answers
25 views
How to achieve movement of ball on screen when the surface of the device is vertical?
I have implemented that the device aligned horizontal by using accelerometer. When the device is exactly horizontal that time the ball will be at center position. see how i have achieved it by below ...
0
votes
0answers
28 views
UIAccelerometer: Detect X, and Y movement
Can you please have a look at 1. My question is: How can I calculate how fast someone moves his device on the X- and Y-Direction? I have the x,y and z values from the accelerometer didAccelerate ...
0
votes
0answers
35 views
Ball Animation in Landscape mode for iPhone
I'm animating a ball on the screen in portrait mode using UIAccelerometer.
It's working fine, now I want the same to work in landscape mode. When I tried to use the same part of code (for portrait) ...
0
votes
0answers
82 views
Speed from UIAccelerometer
For my project I need to create an app that displays message based on how vigorously you shake the phone. It should register the maximum speed/g-force in let's say, 3 seconds.
I came up with the ...
0
votes
1answer
92 views
Is There any possibility to run accelerometer while call is activated?
Hi In my project I need to call accelerometer while call is activated I use this code for calling accelerometer during call.
- (void)applicationDidEnterBackground:(UIApplication *)application
{
...
0
votes
0answers
116 views
NSOperationQueue Blocking Main Thread, UIAccelerometerDelegate won't fire
I have a piece of code which calls [NSOperationQueue waitUntilAllOperationsAreFinished], in which the queue, I have placed a sensor detector for the Accelerometer.
The accelerometer delegate requires ...
0
votes
3answers
57 views
Detecting the device upside down
what are the correct values for detecting the device upside down?
I have the following and it starts detecting when the user has titled the device on its back.
I use the following values
float xx = ...
0
votes
1answer
29 views
Detecting the timeframe of accelerometer detected motion
How does one detect the amount of time the device has detected motion on the accelerometer?
If I wanted to detect continuous motion detection on the device such as 10 seconds of motion. How is this ...
0
votes
0answers
21 views
Do I need to use Y coordinate to calibrate UIAccelerometer?
I am trying to calibrate my UIAccelerometer and I have most of the code done, but I need to know if I need to use the Y Axis to calibrate it also. I got the X Axis working in the code below but I am ...
0
votes
0answers
49 views
Simulate sand movements on iPhone with UIacceleroemter
I am looking the best approach to try to simulate sand movements on iPhone.
IE.: let´s get some sand from the beach and put on a dish of food. If I incline a little to the right all the sand will ...
0
votes
1answer
224 views
how to effectively use 'deviceMotion' of CMMotionManager to force the ball to move inside circular boundary?
I am using Chipmunk Space Manager.
I have my space setup with one ball and a bunch of segments (512 in my case) joined together to make a circle.
My aim is to force the ball to move in that circle as ...
0
votes
1answer
27 views
UIAccelerometer called from subview not working
I have an "interesting" issue with the UIAccelerometer in an app for the iPad.
In my UIViewController I have a method that activates the Accelerometer. This is how it looks like:
-(void)startAcc{
...
0
votes
1answer
76 views
Detecting the direction of the accelerometer movement on the y axis
I currently detect movement on the y axis. How does one calculate the direction it moved on the axis?
I get the same values when moving up or down.
Is the Gyro needed for this?
0
votes
1answer
184 views
Maximum sampling rate for accelerometer in iphone
Does anybody know that what is the maximum sampling rate of the iphone accelerometer.
I want to have have high update rate. i set it to updateInterval to 1.0/ 300.0
But it seems that i am not getting ...
0
votes
1answer
269 views
Move CCSprite(cocos2d) object in landscape mode according to acceleration values
I am preparing one game for which I want to move one object according to acceleration values, Game is in landscape mode.
For game, I am using cocos2d framework, and I am changing sprite position as ...
0
votes
1answer
61 views
Is it possible for a web app to gather an iPhone's accelerometer data? If so, how?
Is it possible for a web app to gather an iPhone's accelerometer data? If so, how? I would think they might have in the Safari Web browser an API with such functionality.
If it is possible could ...
0
votes
1answer
82 views
UIAccelerometer, ViewControllers, and TabViewController, switching between tabs and MotionBegan not called
So I have an application that is based on a TabBarController and in one of my tabs Im using the UIAccelerometer. The problem Im seeing is that I can access and use the accelerometer just fine until I ...
0
votes
0answers
60 views
How do I create more instances of this 'BallView' class in iOS SDK?
I am using the sample code from the Apress book - Beginning iPhone 4 Development, from the chapter on Accelerometers. This code gives me a rolling marble.
I would like to create multiple such marbles ...
0
votes
1answer
129 views
Service and standby
I have a background Service that control with sensor accelerometer when the phone is upside down and if it's true phone sound. If I run the service and put my phone upside down it's ok but if I push ...
0
votes
0answers
203 views
Rotate UIImageView with accelerometer
i have got a UIImageView with a UIImage, i connect it with Interface Builder and all go fine, i have now one problem, I want the UIImageView remain in his position (where i put it in interface ...
0
votes
1answer
130 views
Swing the iPhone like a golf club
I understand that I have to use the UIAccelerometer to detect which angles that will exist in a regular golf swing.
The best equivalent that came to my mind is that I want to use the iPhone just like ...
0
votes
1answer
169 views
What does it mean when it says expected expression before UIAccelerationValue?
//this is the code that I've written. It says "expected expression before UIAccelerationValue" on the part where it says *accelerateValuesAll = UIAccelerationValue.
So, could anybody tell me what the ...
0
votes
1answer
401 views
how to find time and speed using iphone's accelorometer
Let me tell you my physics is very bad. I want to calculate time between two points. The situation here is - if an object is moved from say point x to point y with an acceleration which is not ...
0
votes
3answers
251 views
How to keep a UIView pointing in a certain direction regardless of device orientation?
I have a UIView that I want to always be facing up. So say you have an UIImageView that has an arrow, and no matter what way the device is being held, it's pointing up. Obviously I need the ...
0
votes
3answers
211 views
UIAccelerometer EXC_BAD_ACCESS crash on device
I am facing a bit strange problem with implementation of UIAccelerometer.
I have a UITableViewController where I don't wanna use UIAccelerometer, but after pressing on of the rows I wanna activated ...
0
votes
1answer
735 views
How can I calibrate the accelerometer?
I'm using the accelerometer to move an object on my screen.
It's only working when the iphone is flat.
If I use the iPhone in another position, the object is not moving like I want
(the Y axis is not ...
0
votes
2answers
155 views
UIAccelerometer and UIScrollView
I want to scroll a scrollview based on the UIAccelerometer values. What is the best way to accomplish this?
Thanks and Regards
0
votes
2answers
166 views
UIAccelerometer is Shaking
Hi
I want a functionality in which i want to detect if my device is being shaked.The problem is i can detect the shake with didAccelerate method of UIAcceleratorDelegate , but i dont know how to ...