Arduino program help needed (Serial LED FLASH, NO Delay)

  • Thread starter Deleted User
  • Start date
  • Views 810
  • Replies 0
D

Deleted User

Guest
OP
Hi all, hopefully someone can help me with this.

I recently got an Arduino, and have been having some fun playing around with it, but I cannot for the life of me understand, or get, Millis() working with Serial commands.

Here's what I'm trying to do:

I want to send a letter/number over serial usb to the ARduino, in order to flash an LED. However, what I have in mind requires as little lag as possible due to timing, so I cannot use Delay(). Instead, I must use Millis(). The flash needs to be fast, but it can only be 1 single flash per each time I send a command, it cannot be a "toggle" command.

Where I've come to the problem, is that I can get it to turn on the led, but only after sending my command twice. Furthermore, It does not automatically turn off, i, again, must send the same command, twice, which is exceptionally odd.

If someone is willing to tell/help me in whatever way possible, I'd greatly appreciate it, as the Arduino forums haven't been of any help, and it's been about 2 days worth of googling now and I'm getting quite fedup.

Below is my code, but its only 1 of the variants I've tried.

Code:
const int ledPin = 3;
const int interval = 250;
unsigned long startMillis;
unsigned long currentMillis;

void setup() {
  pinMode(ledPin, OUTPUT);
  Serial.begin(9600);
  while (!Serial);
}

void loop(){
  startMillis = millis();
  int state = Serial.parseInt();
 
  if (Serial.available()){
   
      if (state == 2) {
      digitalWrite(3, HIGH);
      currentMillis = millis();
          if(currentMillis - startMillis >= interval) {
          digitalWrite(3, LOW);
          startMillis = currentMillis;
      }
    }
  }
}

Thanks in advanced for any help! I seriously appreciate it, brain is fried at this point!
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • Xdqwerty @ Xdqwerty:
    updated ship of harkinian, gonna install some hd texture pack
  • Xdqwerty @ Xdqwerty:
    I might download rayman revolution for my ps3
  • BigOnYa @ BigOnYa:
    I may try the new ram site, and download more RAM to my Switch. Not sure if ddr3 is the right ram
    for it tho. Edit- no it uses floppy Ram, just like @AncientBoi
    +1
  • Xdqwerty @ Xdqwerty:
    aeiou
  • BigOnYa @ BigOnYa:
    And sometimes Z
  • SylverReZ @ SylverReZ:
    @K3Nv2, MAGA supporters be wearing tin foil hats lol.
    +1
  • Xdqwerty @ Xdqwerty:
    @SylverReZ, whats maga?
  • BigOnYa @ BigOnYa:
    It stands for Maniacs Against General Acceptance
    +1
  • Xdqwerty @ Xdqwerty:
    @BigOnYa, people rejecting general consensus about stuff?
    +1
  • BigOnYa @ BigOnYa:
    Yup, nuh its really just Trump followers
  • Xdqwerty @ Xdqwerty:
    @BigOnYa, im not american so i dont care about trump
    +1
  • Xdqwerty @ Xdqwerty:
    or us elections
  • BigOnYa @ BigOnYa:
    Me niether, us north Koreans don't care
  • Xdqwerty @ Xdqwerty:
    good night
  • BakerMan @ BakerMan:
    i don't care either, even if i'm american
  • BakerMan @ BakerMan:
    truth be told, i agree with psi, i dislike both candidates, but i'd probably vote trump simply because the economy was better during his presidency
    +1
  • AngryCinnabon @ AngryCinnabon:
    Just be careful, if trump ends up winning and using project 2025 America might really change...for the worse.
  • AngryCinnabon @ AngryCinnabon:
    I'm not american and even that sends shivers down my spine.
  • AngryCinnabon @ AngryCinnabon:
    anything that offers trump an opportunity to become an actual dictator
    is bad in my book, i could care less if it wasn't for that...
  • K3Nv2 @ K3Nv2:
    Canada: America's Russia
  • NinStar @ NinStar:
    people are so dramatic that I can't even tell if they are being serious
  • Psionic Roshambo @ Psionic Roshambo:
    Why so serious!
  • Psionic Roshambo @ Psionic Roshambo:
    @BakerMan, yeah that's about the only reason I would vote for Trump over Biden.
  • Psionic Roshambo @ Psionic Roshambo:
    In my opinion on all other factors they are pretty much the same.
    Psionic Roshambo @ Psionic Roshambo: In my opinion on all other factors they are pretty much the same.