Joggle

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Defusable Clock now available assembled/tested #905
    Joggle
    Member

    Is it possible to order one with two parts unassembled or are they pre-build?

    Regards,
    Joggle

    in reply to: voltage regulator heat problem? #904
    Joggle
    Member

    After 3 hours of work, i finally gave up on switching the chips. Good news: I have a new testplatform with everything but a Display, although i need a new defusable clock.

    Regards,
    Joggle

    in reply to: voltage regulator heat problem? #993
    Joggle
    Member

    ouch how embarrassing. I even read the other thread where somebody did the same mistake.
    Interestingly the noses of my chips are looking different then the one on the pictures. My long nose is on the left just like in the examples.
    Well, thanks a lot for helping me.
    I will try and return the favour by posting future modifications in the forum.

    in reply to: voltage regulator heat problem? #991
    Joggle
    Member

    Wow, that was a quick answer!
    Pictures send. I´m not the best in soldering, but as far as i can jugde it all connections are working. The area around the Alarmbutton is a little bit modified. The picture with flash looks too messy.
    The chips are in the right position. I checked the hardware by replacing the “loop code”with this:

    void loop() {

    while(Serial.available()==0);
    if(blank == true){
    blank = false;
    }
    int val = Serial.read() - '0';

    if(val == 0)
    {
    digitalWrite(LED_PM, LOW);
    digitalWrite(LED_ALARM, LOW);
    digitalWrite(LED_TOP, LOW);
    digitalWrite(LED_DET, LOW);
    Serial.println("All LED off");
    }
    else if(val == 1)
    {
    digitalWrite(LED_PM, HIGH);
    Serial.println("PM LED on");
    }
    else if(val == 2)
    {
    digitalWrite(LED_ALARM, HIGH);
    Serial.println("Alarm LED on");
    }
    else if(val == 3)
    {
    digitalWrite(LED_TOP, HIGH);
    Serial.println("Top LED on");
    }
    else if(val == 4)
    {
    digitalWrite(LED_DET, HIGH);
    Serial.println("Det LED on");
    }
    else if(val == 6)
    {
    Serial.println("Start listening");
    while(val != 5){
    if(buttonPressed(ALARM_BUTTON)){
    Serial.println("Alarmbutton");
    }
    if(buttonPressed(DET_BUTTON)){
    Serial.println("Detbutton");
    }
    if(buttonPressed(MIN_BUTTON)){
    Serial.println("Minbutton");
    }
    if(buttonPressed(HOUR_BUTTON)){
    Serial.println("hourbutton");
    }
    }

    }
    else if(val == 7){
    Serial.println("beeeep");
    beep(3800, 30);
    }
    else if(val == 8){
    Serial.println(hours);
    Serial.println(minutes);
    Serial.println(blank);
    }


    }

    Everything works except for the heat problem and the display.
    I have a multimeter and can maybe even get an adjustable powersupply.
    Waiting for instructions.

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