Cecile PacoretJean NoëlTom-Eliott FerrandThéodore Lecointe
Created June 2, 2024

Mag's Jewel

📞🤖 "Inclusive maker sprint project". School seminary for inclusion of people with disabilities. DISCOVER THE CREATION⬇️

Work in progress49
Mag's Jewel

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Grove - Relay
Seeed Studio Grove - Relay
×3
landline telephone
×1
Radio frequency home doorbell set
×1
LED (generic)
LED (generic)
×1
Optocoupler, 1 Channel
Optocoupler, 1 Channel
×1
Grove - Piezo Buzzer
Seeed Studio Grove - Piezo Buzzer
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free
Multitool, Screwdriver
Multitool, Screwdriver

Story

Read more

Custom parts and enclosures

Poc demo

Play It 🤙☎️

Schematics

How to connect the home doorbell rx receiver to the arduino ? ( More details in the plan file)

The way to connect will be different depending on the model, moreover the EU model we put in the documentation is not the one we use but a similar model.

How connect the phone with Arduino Uno ? First step >

I> Open the Phone

you should have a plate like this with the printed circuits corresponding to the phone buttons.

Wire connected to the phone for connection with the arduino. Second step >

II> Connect the wires to the button terminals to simulate the button being triggered via an electrical impulse.

The connection between the arduino and the landline phone will depend on the model you buy but here is the technique we used:
To connect the buttons to the relay then to the arduino we connected to the points where the phone button circuit begins.
In the photo the black, orange, green and brown wires are the wires connected to two pre-recorded number buttons.
The yellow wire is used to pick up the line (simulate picking up the handset or activating the loudspeaker).

Plan

Electronique circuit

🟠 Finite state machine Diagram

⚙️ This diagram represents the interactions between the states of the arduino state machine

3d design For the box

The box which will contain the entire electrical circuit of the button

Case for remote control circuit board

Case for remote control circuit board for 3d Impression

Sketchfab still processing.

Case square the size of the stack

box square the size of the stack for 3d impression

Sketchfab still processing.

Round case the size of the stack 1/2 (box)

round case the size of the stack for 3d impression

Sketchfab still processing.

Round case the size of the stack 2/2 ( lid)

Round case the size of the stack 2/2 ( lid) for 3d impression)

Sketchfab still processing.

Code

Finite state machine

C/C++
➡️ Code for Arduino Uno.
This code simulates a state machine. Find the states it manages in the finite state machine diagram 🟠.
#define switch_line 2
#define appel_1 3
#define appel_2 4
#define off_line 8 //  0 quand on a pris la ligne
#define tone_pin 10 // petiti buzzer
#define rx_pin A1 // tlcommande

int frequency = 500; // son sur le buzzer
int duration = 4000; 

int frequency_check = 2000; 


int numTel; // numro a appeler

//Variables de Timer 
unsigned long startTime; // Variable pour stocker le temps de dpart
const unsigned long timeOut = 5 * 60 * 1000; // Dure de 5 minutes en millisecondes

enum States {INIT, HANG_UP_CANCEL, TAKE_LINE, DELAY, HANG_UP_ABORT, CALL, HANG_UP_NEXT};

struct _FiniteStateMachine
{
  int State;
  int PreviousState;
  long Cycles;
  bool Change;
} FSM;
int cpt=0;

//*************************************************
void setup(void)
{
  Serial.begin( 9600 );
  Serial.println("Finite State Machine by JNL");
  Serial.println();
  pinMode(switch_line, OUTPUT);
  pinMode(appel_1, OUTPUT);
  pinMode(appel_2, OUTPUT);
  pinMode(tone_pin, OUTPUT);
  pinMode(off_line, INPUT);
  FSM_init();
}
bool rx_state()
{
  int rx_value = analogRead(rx_pin); 
  if (rx_value > 10){
    return(true); 
  } 
  else return(false);
}
  
//*************************************************
void loop(void)
{
  
  FSM_compute();
}
//*************************************************
//************************************************
void FSM_init()
{
  FSM.State = 0;
  FSM.PreviousState = -1;
  FSM.Cycles = 0;
  numTel = 0; 
}
int FSM_compute()
{
  if (FSM.Cycles < 4000000000) FSM.Cycles++;
  if (FSM.State != FSM.PreviousState) FSM.Change = true;
  else FSM.Change = false;
  FSM.PreviousState = FSM.State;
  if (FSM.Change)
  {
    Serial.print("=> State=");
    Serial.println(FSM.State);
    FSM.Cycles = 0;
  }

  switch (FSM.State)
  {
    case INIT: //---------------------------------------------------
      if (FSM.Change) //actions sur apparition de l'tat
      {
        Serial.println("apparition etat INIT");
        numTel= 1;
      }
       //actions sur franchissement de la transition
      if(rx_state() && digitalRead(off_line))
      {
        Serial.print("=> Take Line");
        FSM.State = TAKE_LINE;
      }

      else if(rx_state() && !digitalRead(off_line))
      {
        FSM.State = HANG_UP_CANCEL; 
      }
      break;
      
    case TAKE_LINE: //---------------------------------------------------
      if (FSM.Change) //actions sur apparition de l'tat
      {
        Serial.println("apparition etat TAKE_LINE");
        tone(tone_pin, frequency_check, 500);
      }
      // impulsion relais Ligne
      digitalWrite(switch_line, HIGH);
      delay(500);
      digitalWrite(switch_line, LOW); 
      
      Serial.print("transition => Delay");
      FSM.State = DELAY;
      
      break;
      
      case DELAY: //---------------------------------------------------
      if (FSM.Change) //actions sur apparition de l'tat
      {
        Serial.println("apparition etat DELAY");
        tone(tone_pin, frequency);
        while(rx_state())
        {
          delay(20);
        };
        
      }
       
      
      if(rx_state())
      {
        Serial.print("Annulation"); 
        FSM.State = HANG_UP_ABORT; 
        noTone(tone_pin);
      }

      delay(100);

      if(FSM.Cycles == 30)
      {
        FSM.State = CALL;
        noTone(tone_pin);
      } 

      break;

      case CALL:
      if(FSM.Change)
      {
        int appel;
        Serial.println("entree dans l'etat CALL");
        switch(numTel)
        {
        case 1:
                appel = appel_1;
        break;
        case 2:
                appel = appel_2;
        break;
        }
        digitalWrite(appel, HIGH);
        delay(500);
        digitalWrite(appel, LOW);
        cpt=0;

         //startTime = millis();
      }
      
      Serial.println(rx_state());
     
      if(rx_state()) cpt++;
      if(cpt >= 10) FSM.State = HANG_UP_NEXT;

      //time out
      /*if (millis() - startTime >= timeOut) {
        FSM.State = HANG_UP_ABORT; 
        startTime = millis();
      }*/

      break;

      case HANG_UP_NEXT :
      if(FSM.Change)
      {

        Serial.print("Apparition de l'tat Hang-up next"); 

        tone(tone_pin, frequency_check, 500);

        digitalWrite(switch_line, HIGH);
        delay(500);
        digitalWrite(switch_line, LOW);
        numTel++;
        if(numTel > 2) numTel =1;
      }

      delay(2000); 
      
      if(digitalRead(off_line)) FSM.State = TAKE_LINE;
      break;


    case HANG_UP_ABORT: 
    if(FSM.Change)
    {
      Serial.print("Apparition de de l'tat Hang up abort"); 

      tone(tone_pin, frequency_check, 500);

      digitalWrite(switch_line, HIGH);
      delay(500);
      digitalWrite(switch_line, LOW);

      numTel = 1; 
      cpt=0;
    }

    if(!rx_state()) cpt++;
    if((cpt >= 50) && digitalRead(off_line)) FSM.State = INIT;

   
    break; 

    case HANG_UP_CANCEL: 
    if(FSM.Change)
    {
      Serial.print("Appartion de l'tat Hang up cancel"); 

      tone(tone_pin, frequency_check, 500);

      digitalWrite(switch_line, HIGH);
      delay(500);
      digitalWrite(switch_line, LOW);
    }

    numTel = 1; 

    delay(2000); 

    FSM.State = TAKE_LINE; 
      
  }
  return (FSM.State);
}

Credits

Cecile Pacoret
2 projects • 0 followers
Contact
Jean Noël
13 projects • 36 followers
pedagogical director at L'école LDLC https://www.linkedin.com/in/jnlootsidebox/
Contact
Tom-Eliott Ferrand
1 project • 0 followers
Contact
Théodore Lecointe
1 project • 0 followers
Contact

Comments

Please log in or sign up to comment.