Kogoro Mouri

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Programation Defusable Clock V2 #2236
    Kogoro Mouri
    Member

    Hello, Some news, the problems with configuration of the countdown time is resolved by the new Firmware ,

    I have also found for make more long the “Beeps” of alarm stargting countdown and alarm for detonation:

    (normaly, the line is: “for(int i=0;i<8;i++) {" I have chanto 8 to 60 for the detonation alarm)

    void detonate() {
    for(int i=0;i<60;i++) {
    digitalWrite(LED_DET, HIGH);
    beep(5000, 50, false);
    delay(25);
    digitalWrite(LED_DET, LOW);
    delay(25);
    }

    This is for the Programable timer countdown starting:

    (I have change to 16 and 250 to 150 )


    }
    if (alarmMode == ALARM_DET) {
    for(int i=0;i<16;i++) {
    beep(3900, 150, false);
    delay(250);

    I have also found on the forum how to set the detonate wire :


    detPin = WIRE_1; // or whatever you choose
    defusePin = detPin;
    // now find a random value for defusePin that is not detPin.
    while (defusePin == detPin) {
    defusePin = random(WIRE_1, (WIRE_4+1));
    }

    Now i serach how to make (for Ex: wire 3 acellerate the timer, and Wire 4 stop the timer for 1-2 seconds and after restart the countdown) every one can help for programming this?

    in reply to: Countdown Problems #2235
    Kogoro Mouri
    Member

    Hello, Thanks for this updated firmware, it have fully resolve my problems, it’s now working fine as when i have bought them 🙂

    in reply to: Countdown Problems #2233
    Kogoro Mouri
    Member

    Hello, i have tried this, but it seem change nothing, normally when reset or install new firmware, it will “Reset” the custom coutdown (e: i have set 0:05 Seconds) normally, if i reset or update firmware, it will be set default countdown?

    If i try reset or firmware uploading its doesent change anything, after 5 seconds countdown end, it restart countdown (now at an another number)

Viewing 3 posts - 1 through 3 (of 3 total)