C :: How To Use Accelerometer To Simply Light Up LED At Certain Angle

Mar 17, 2014

I want to use an accelerometer to simply light up an LED at a certain angle. I want to use all three axis each corresponding to a different LED.

I am however getting no change in the LEDs. My code is below.

Code:

#pragma config FOSC = INTIO67, FCMEN = OFF, IESO = OFF // CONFIG1H
#pragma config PWRT = OFF, BOREN = SBORDIS, BORV = 30 // CONFIG2L
#pragma config WDTEN = OFF, WDTPS = 32768 // CONFIG2H
#pragma config MCLRE = OFF, LPT1OSC = OFF, PBADEN = ON, CCP2MX = PORTC // CONFIG3H
#pragma config STVREN = ON, LVP = OFF, XINST = OFF // CONFIG4L

[Code]...

View 6 Replies


ADVERTISEMENT

C :: Parse Data Coming From Razor AHRS Accelerometer?

Oct 4, 2013

I am working on a quadcoppter and am having trouble trying to parse the output that I am getting from the sensor. This is the code that I am trying to get to work but the Arduino compiler is saying that i can't convert and int to a string unfortunatley I am trying to get the string to convert to an int.

Code:

//string that will be processed is this
//Ax=-209 Ay=5 Az=1116 | Gx=7 Gy=0 Gz=7 | -31 233 -433 Headings 100.20
void setup() {

[Code].....

View 5 Replies View Related

C# :: Mvvm Light Constructor Not Being Called

Dec 6, 2014

I can't get my 'Front End' view model's constructor to be called. If i remove my dependency from the mvvm-light framework and use MSDN mvvm paterns then the constructor is called. What am i doing wrong. It seem like there is a data context binding issue between my XMAL and my view model backing.

ViewModelLocator.cs
using GalaSoft.MvvmLight.Ioc;
using Microsoft.Practices.ServiceLocation;
using Point_Of_Sale.Model;
using System.Collections.Generic;
namespace Point_Of_Sale.ViewModel {
public class ViewModelLocator

[Code] ......

View 1 Replies View Related

C/C++ :: Flow Meter - Count Certain Quantity Of Fluid Then Light Up Corresponding LED

May 6, 2014

I am attempting to write some code for a flow meter and LEDs using my Arduino. I need the flow meter to count a certain quantity of fluid, then light up an LED which corresponds to that quantity. I found this code on the internet and it was exactly what I needed but when I opened up the serial monitor to see if it worked it didn't. I have finally fixed the issue with it not counting anything at all, but it is still acting as if it was measuring the rate. how it counts and keeps track of how much fluid in total has passed through the flow meter ?

volatile int NbTopsFan; //variable to accumulate the number of pulses
float Calc = 0; //the volume flowed since measurement started, liters
void pulse() //This is the function that the interupt calls
int hallsensor = 2; //The pin location of the sensor

const int led1Pin = 3; //pin for LED corresponding to volume1
const int led2Pin = 4; //pin for LED corresponding to volume2

[Code] .....

View 13 Replies View Related

C++ :: Simply Converting Character Array To A Short Int

Feb 14, 2013

Any function of simply converting character array to a short int?For example. char array[4]={'0','2','f','f'}; to short int 767?

View 3 Replies View Related

C :: How To Simply Input CSV File Into Universal Variable 2D Array

Mar 6, 2015

I am working in an assignment and part of this assignment is to input a CSV file with floats such as this:

8.5, 10.5, 90.5
49.5, 99 ,97
88, 70, 100
78, 2, 10

into an universal variable array.I just want to figure out a way to simply input the CSV file into a 2D variable array.The values in the array will be later use in functions that I'm trying to figure out but I can't do that until I store these values in the array. I think is just a matter of figuring out how to tell fscanf to ommit spaces and commas, but I don't know how. This is what I have done

Code:
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
float grades[1001][101];
int main(int argc, char* argv[]){

[Code] ....

The output is this

Assignment 1 of student 1 = 8.5 Assignment 2 of student 1 = 10.5 Assignment 3 of student 1 = 0.0 Assignment 1 of student 2 = 90.5

I think I'm close to solve it but something is missing the output should look like this

Assignment 1 of student 1 = 8.5 Assignment 2 of student 1 = 10.5 Assignment 3 of student 1 = 90.5 Assignment 1 of student 2 = 49.5

View 1 Replies View Related

C++ :: Count Numbers Of Words In A Sentence Simply By Counting Spaces

Jan 22, 2014

I wrote a code that counts numbers of words in a sentence, simply by counting spaces... but instead of showing a true number it shows a wrong number.

#include <iostream.h>
#include <conio.h>
int check(char eh[10000]) {
int he=0;
for (int i=0; i<=10000 ;i++) {

[Code] ....

View 8 Replies View Related

C++ :: Angle Between Two Points

Apr 19, 2014

i'm working on a robotics project, to move the robot from it's current position to target position i need to calculate the angle first before i can move the robot.this the code I use to calculate the angle:

double cal_angle ( int current_x , int current_y , int tar_x , int tar_y )
{
return atan2(tar_y - current_y, tar_x - current_x);
}
int main ()

[code]....

as u can see the angle between x4,y4 to x1,y1 should be 3.14 (180)however , the result are correct as long as the distance from the current position to target position > 1 (not sure actually).

View 2 Replies View Related

C++ :: Calculate The Angle Between Two Vectors

Feb 20, 2014

My question is not in c++ programing , but because my aim is to make code that calculate the three angles between two vector i ask my question here

So as the title i have three point that create two vector and I want to get the angles in x,y and z of the point2

I used crosproduct that give me one angle without axe , I don't know in which axe this angle

My aim is the three angles for the 3 axes ....

View 7 Replies View Related

C++ :: Finding Angle From 3 Points

Nov 10, 2013

I am making a game and I am trying to rotate an image so that it is always pointing at the player. I have two lines, the first point of both of them is on the image and the second point of one line is on the last position of the player, and the second point of the other one is on the current position of the player. To rotate the image I need to get the angle between the two lines. how I can get that angle with only the points from the lines?

View 7 Replies View Related

C++ :: Get Angle Of Bullet After Bouncing?

Jun 30, 2014

I'm trying to make a bullet bounce after it hits a wall. I think bouncing on the top and bottom wall works perfectly, but it won't bounce off of the left and right walls. How would I get it to bounce? This is how I get the direction the bullet it going whenever I shoot.

player.dir = GetAngle(player.mouseX, player.mouseY, player.x, player.y);
float GetAngle(float x1, float y1, float x2, float y2) {
return atan2(y1 - y2, x1 - x2);
}

Also what I was trying to do to make the bullet bounce.

if (bullets[i].x < 10 || bullets[i].x > screenWidth - 10 ||
bullets[i].y < 10 || bullets[i].y > screenHeight - 10) {
if (bullets[i].type == 8)
bullets[i].dir *= -1;
}

View 3 Replies View Related

C++ :: Hypotenuse For ONE Side And ONE Angle?

Dec 7, 2014

On a right angled triangle, if the user inputs only ONE side length (not the hypotenuse) and only ONE angle, what code is required to work out the hypotenuse? I know how to work out the final side and the remaining angle once I have this.

View 4 Replies View Related

C++ :: Testing Cos - Why Angle Is Not 45 Degrees

Apr 25, 2012

I developed this simple sample program to test cos():

Code:
#include <cmath>
#include <iostream>
using namespace std;
int main() {
const float radiansToDegrees = 180.0f / 3.141592653589793f;
float c = sqrt(2.0f);
float a = 1;
float angleRadians = cos(a/c);
float angle = radiansToDegrees*angleRadians;
}

I expected angle to be 45 exactly, but it's value is: angle = 43.558804

Why is the angle not 45 degrees? What did I do wrong?

View 4 Replies View Related

C/C++ :: Find Angle And Radius Of Given Point Of A Circle

Oct 7, 2013

Let (x,y) be the center of the circle. (x,y) will not be (0,0). I have radius of the circle. Now i want to find the angle and radius of the given point inside the circle.

View 2 Replies View Related

C++ :: How To Predict New Compass Angle Of Object With Information

Apr 16, 2012

In a cartesian coordinate system, I want to be able to predict a compass angle of an object. So I have a base position of (0,0) and then a distance and compass angle to an object. This object also has a heading and a speed. How can I predict the new compass angle of the object with that information?

my coordinate system is like this:

Code:
0 y
|
|
270-------------- 90 x
|
|
180

I think the first step would be to compute the cartesian coordinates of the object:

float degs_to_rads = 3.141592653589793 / 180.0;
x = distance * sin(angle*degs_to_rads);
y = distance * cos(angle*degs_to_rads);

then the next step would be to compute the predicted x and y from the speed and heading of the object:

predictedx = ??
predictedy = ??

then finally convert back to an angle, and distance:

newDistance = sqrt(predictedx^2 + predictedy^2);
newAngle = atan2(predictedy, predictedx);

fill in the blanks?? Are my other things correct?

View 10 Replies View Related

C++ :: Calculate Angle Value In Form Of Trigonometric Functions - Loops And Void

Jul 24, 2013

This is an assignment which the purpose is to calculate an angle value in form of trigonometric functions. These are the codes that I've wrote so far.

#include <iostream>
#include <cstdlib>
using namespace std;
void menu(double &value) {
system("cls");
cout<<"*****Trigonometry Program*****"<<endl;

[Code] ....

I have completed the codes for the interface part. Before I proceed with the formula for the trigonometric functions, I would like to make sure the program is Error-free, which if there is accidental invalid input from the user, the program would the user to enter another input until it is a valid response.

The only problem I have encountered for this matter was in menu(value)

If I enter an integer, the program will proceed without error. However, If I enter a character, the program will slip into an endless loop which constantly shows this

*****Trigonometry Program*****
Please enter an angle value => Is the angle in Degree or Radian?
Type D if it is in Degree
Type R if it is in Radian
Your response=> 0 //my initial input for value

Do you want to continue?
Type Y to continue
Type any other key to stop
Your response =>

Where is the source of the problem? I'm pretty sure it's the loop, but I don't know what to do.

View 2 Replies View Related

C++ :: Make Object Coordinates Moving In Straight Line With Angle Have A Sinus?

Sep 22, 2013

I want to make an object, which moves from x1,y1 to x2,y2 in a straight line, also make a sinus over the line (so the x,0 is the line itself, and cux,cury is the object. So the object will move as a sinus over the line. How do I do this in c++?

View 3 Replies View Related

Visual C++ :: Detect And Find Rotation Angle If Skeleton Tracked Turned 180 Degree To Kinect

Sep 25, 2013

I m developing an application using kinect.The IDE I use is Visual studio 2012 and kinect SDK 1.8.I m developing using vc++

I want to overlay an image on the person tracked when the person turns 180 degress to kinect. ie the person is not facing the kinect.

how do i track the rotation angle of the person as he/she turns away from kinect.

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved