Search:

Type: Posts; User: DA93

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    545

    I know it would be really obvious if it was...

    I know it would be really obvious if it was voltage measured but it's constant serial data, I'm just unsure that why when I observe my data, there is a significant period of time where the signal is...
  2. Replies
    3
    Views
    545

    Another 'related oscilloscope question'

    Hi I have confirmed I am getting the right data from my oscilloscope(a query I had in a previous question), I just never realised until I wrote down the 1's and zeros and though about it, the...
  3. sending gps commands with the arduino serial monitor and reflect it on an osciloscope

    I have a gps module, its data sheet is:
    http://datasheet.octopart.com/28146-Parallax-datasheet-13529329.pdf



    I would like to enter GPS commands into the arduino's serial monitor(at least i...
  4. Replies
    11
    Views
    1,137

    thanks. i'll give it a try and get back to you, i...

    thanks. i'll give it a try and get back to you, i wont be able to try it just yet so but i will let you know
  5. Replies
    11
    Views
    1,137

    @ megafiddle There is surerly a pattern to my...

    @ megafiddle There is surerly a pattern to my wavform in /raw but i went through "singe" 20 times yesterday, and wrote all the 0's amd 1's and no pastern was found
  6. Replies
    11
    Views
    1,137

    Could you explain your code. and when (if when)...

    Could you explain your code. and when (if when) it will get the data from the module. My main objective is to request the data.
    So somehow i will do something to make my arduino manually extract the...
  7. Replies
    11
    Views
    1,137

    why when I connect the declared tx pin 3 to the...

    why when I connect the declared tx pin 3 to the declared rx pin 50 together, serial transition stops? I read somewhere they have to be connected for smart mode on modules with RX and TX sharing the...
  8. Replies
    11
    Views
    1,137

    code used n raw mode #define RXPIN 50...

    code used n raw mode


    #define RXPIN 50
    #define TXPIN 3
    #define GPSBAUD 4800
    TinyGPS gps;
    SoftwareSerial uart_gps(RXPIN, TXPIN);
  9. Replies
    11
    Views
    1,137

    what will the c command be then....

    what will the c command be then. Serial.read/write? Serial.print would just print on the terminal..
    or do I use "BYTE" and char?
    and yes my oscilloscope does have a single trigger button, however...
  10. Replies
    11
    Views
    1,137

    GPS data on an Osciloscope

    to reiterate my previous thread to make it a little easier on what I want to achieve. I have this GPS module and this is its datasheet.
    ...
  11. Thread: GPS data arduino

    by DA93
    Replies
    0
    Views
    945

    GPS data arduino

    Hi, I am having trouble sending commands to my GPS module using arduino, my module works fine in /raw but when i remove /raw to obtain data manually it doesn't seem to work properly. the problem is...
  12. Hey that does work thanks, however my version...

    Hey that does work thanks, however my version probably worked anyway, my program still doesn't work with millis or interrupts, after having a google I found that whilst using the software serial...
  13. Replies
    2
    Views
    457

    Using interrupts with software serial

    Hi
    I'm using Software Serial library to constantly receive data, however I want the data to received to be displayed(and update in real time) for a certain length of time. I tried using millis but...
  14. unsigned long currentMillisA= millis(); ...

    unsigned long currentMillisA= millis();
    unsigned long currentMillisB = millis();
    unsigned long currentMillisC = millis();


    if(x==0 && y==1 && z==1)
    {
    ...
  15. couple of reasons, while has its limitations. ...

    couple of reasons, while has its limitations.
    It is bad practice to have the condition to break out of the while loop the same as the condition to enter my second if statement.

    And i have...
  16. interupts/millis/timers on arduion help needed

    I have a issue: essentially I want a function(s) to run for a certain time but without a delay and to constantly update for that interval.

    First I have 2 if statements, 1 with an idle condition if...
  17. Replies
    11
    Views
    4,247

    hi, is the following what is intended: if I...

    hi, is the following what is intended:

    if I enter "9.8.44"
    when I multiply by two it prints""error-19.6"
    another example:
    "-3.8-5"
    prints "Error 7.60"
  18. Replies
    11
    Views
    4,247

    Something like this? if something is wrong is...

    Something like this?
    if something is wrong is just displays "0.00..."
    is that correct?
    on another note, do you know why by default without the 5 for decimal places, it is by default 2 decimal...
  19. Replies
    11
    Views
    4,247

    Hi, thanks for the advice, I'll give it a go,...

    Hi, thanks for the advice, I'll give it a go, could you please explain why the function "atof" appears to work fine, I had a look around and the only disadvantage I could find was to do with strange...
  20. Replies
    11
    Views
    4,247

    if (customKey == 'B') { int x; float...

    if (customKey == 'B')
    {
    int x;
    float y;
    lcd.clear();
    lcd.print("nmbrs prsd were:");
    lcd.setCursor(0,1);
    sscanf(lonarray, "%d", &x);
    y=(2*x);
    lcd.print(y);
  21. Replies
    11
    Views
    4,247

    Thanks, I knew it was something simple, is there...

    Thanks, I knew it was something simple, is there an easier more sound way of turning an array into an integer without using the "atoi" function? I would like it perform some sort of mathematics with...
  22. Replies
    11
    Views
    4,247

    need help storing input values into an array

    Hi, I need some urgent help with arrays please, the purpose of the program is to check for a key pressed and store it into an empty array. And then print the entered sequence on the LCD after 'A' is...
  23. Replies
    0
    Views
    3,768

    16x2 lcd with 4x4 keypad matrix

    Hi
    I have a small problem. I am trying to display characters on my 16x2 LCD shield with a 4x4 keypad connected to an arduino uno. When I press the keypad buttons, the corresponding character prints...
  24. Vart, replacing the b with a 4 worked thanks ^^...

    Vart, replacing the b with a 4 worked thanks ^^
    Just 3). to clear up now, I'm sure the solution will be pretty simple, and involve a similar process to when I used the enter key to confirm rather...
  25. Thanks, i'll give that a try, and the reason for...

    Thanks, i'll give that a try, and the reason for that is, say for example if I want to control the system remotely where the system is in another building a 5 minute drive away. if I enter the wrong...
Results 1 to 25 of 40
Page 1 of 2 1 2