Telecam Application icon

Telecam 4

1.7 MB / 5+ Downloads / Rating 3.7 - 7 reviews


See previous versions

Telecam, developed and published by NUDGE ME, has released its latest version, 4, on 2018-10-15. This app falls under the Tools category on the Google Play Store and has achieved over 500 installs. It currently holds an overall rating of 3.7, based on 7 reviews.

Telecam APK available on this page is compatible with all Android devices that meet the required specifications (Android 1.6+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: nudge.me.tcam

Updated: 6 years ago

Developer Name: NUDGE ME

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Telecam on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

3.7
Total 7 reviews

Reviews

1 ★, on 2020-09-19
Time west onle

Previous Versions

Telecam 4
2018-10-15 / 1.7 MB / Android 1.6+

About this app

Use this app to act like a 'CCTV' for you; but in handy and photos-only format. Let this app point to a site you want to monitor, activate the timer and just wait for the photos to be taken and sent directly to your Telegram Messenger. Then use any device that compatibles to open the messenger, namely Android, iPhone/iPad, WP, PC/Mac/Linux/macOS and others. You will see the photos taken by the app wherever you are, as they are sent over the internet. For example, monitor your kids in their room to know their activities, or your pets in the backyard or your stove remotely when you are cooking. You also can use Arduino to trigger the app to capture photos, which this function is useful when you need a presence-detection style, to detect burglar, trespassers, wild animal sightings and many more.

Installation procedure:
1. Install Telegram Messenger on your phone or PC.
2. Search for myTelecam_bot.
3. Telecam_bot will be found. Select the bot. Click START or send /start command.
4. Bot will respond by replying a Telegram Chat ID. Copy the Chat ID given by the bot.
5. Open Telecam app into your phone. The app will display your phone’s camera window on the screen.
6. Tap on Menu icon (located on the top left of the screen, below the Camera icon). A series of buttons and text fields will appear on screen.
7. Enter the Telegram Chat ID obtained in step 4.
8. Click Return icon located at the top right of your phone’s screen, or your phone's back key.
9. Click on the Camera icon. Check your Telegram Messenger to see the photo which the Telecam app has sent.
10. Click on Timer icon if you want the photos to be captured periodically. You can set the capture interval through the Menu, which 15s is the default interval.

Remote control via another phone
1. Install Bluetooth Serial Terminal app (https://play.google.com/store/apps/details?id=com.nudge.me.TermFree) on another phone.
2. Open your phone's Bluetooth setting and pair both phones.
3. On Telecam app, tap on the Menu icon. You will see Bluetooth icon on the right of the screen. Press the icon and connect to the Bluetooth Serial Terminal app.
4. On Bluetooth Serial Terminal app, go to Settings menu and change the menu “2. Text Size (U/L)” to 17 and 14 to make the welcome text fit to be displayed on the screen.
5. Follow the instruction from the welcome text shown on the screen. Send Capture, Flash, Front, Main, Timer, Stop and Help sequentially and see what happens (all commands are case insensitive).

Remote control via Arduino
1. Connect a Bluetooth module (such as HC-05 or HC-06) to the Arduino (connect TX pin of BT module to Arduino's A2 and BT's RX pin to Arduino's A3 pin, VCC to 3.3V and GND to GND).
2. Connect a digital infrared sensor (like this one: https://www.cytron.io/p-sn-e18-b03n1) to Arduino (VCC to 5V, GND to GND and OUT to pin 2 of Arduino).
3. Upload this code to the Arduino:

#include
SoftwareSerial mySerial(A2, A3);

void setup() {
mySerial.begin(9600);
pinMode(2, INPUT);
}

void loop() {
int buttonState = digitalRead(2);
if (buttonState == 0)
{
mySerial.println("capture");
delay(4000);
}
delay(1);
}

(or you can download the above code here: https://goo.gl/3ctMHH)

4. Open Telecam app. Connect the app to the Bluetooth module through the Menu and Bluetooth icon.
5. When the connection is successfully established, try to block the sensor. The above code will make the Arduino send the word "capture" to the app via Bluetooth connection.
6. The app that receives the "capture" word will take a photo and send it to your Telegram Messenger.
7. Open Telegram Messenger app and check the photos received.

For the sake of enjoying project R&Ds, this app does not have ads and it is totally free. Thank you.

New features

- Menu button added.
- Bluetooth disconnect function added.
- Capture, menu and timer icon added.
- Camera and storage permission request added.

App Permissions

Allows an application to write to external storage.
Allows applications to open network sockets.
Allows applications to connect to paired bluetooth devices.
Allows applications to discover and pair bluetooth devices.
Allows using PowerManager WakeLocks to keep processor from sleeping or screen from dimming.
Required to be able to access the camera device.
Allows access to the vibrator.
Allows an application to read from external storage.