Android Question Front Door Intercom

tsteward

Well-Known Member
Licensed User
Longtime User
I am wanting to write an app where I can mount an old phone outside my front door connected to my WiFi.
  • Maybe use the proximity sensor to wake the display.
  • Show A doorbell button
  • Pressing the doorbell button will take a photo of the person and save it to dropbox.
  • Then automatically make a video call to my phone where ever I am. Perhaps using Skype or similar. Or direct video chat of some sort.
  • On completion of call the app must re appear with the door bell button.
Any ideas how I might achieve this or library's to use?
I know there is a Skype library but it is very limited.
 

Beja

Expert
Licensed User
Longtime User
Hi.. You didn't say what happens after the photo shot and video call.. Will you open the door, or the app is just takes the photo and show the guy on your phone?
 
Upvote 0

tsteward

Well-Known Member
Licensed User
Longtime User
No plans to open the door at this stage. Maybe in the future.

App is just to go back to waiting for the next button press. As per last point.

Perhaps person answering phone has choice of video or just audio call.
 
Upvote 0

tsteward

Well-Known Member
Licensed User
Longtime User
Ok for anyone wanting to know here is how to start a skype call. Now to move onto the rest of my app :)
B4X:
Sub Process_Globals
    Dim Sky As Intent
End Sub

Sub Globals
    Private Button1 As Button
End Sub

Sub Activity_Create(FirstTime As Boolean)
    Activity.LoadLayout("doorbell")
    Sky.Initialize(Sky.ACTION_VIEW, "skype:usersSkypeID?call&video=true")
    Sky.SetComponent("com.skype.raider")
    Sky.PutExtra("confirm","Yes")
End Sub

Sub Button1_Click
    StartActivity(Sky)
End Sub
 
Upvote 0
Top