Home  /  Tools Apps  / Telecam on Windows Pc

Telecam on Windows Pc

Developed By: NUDGE ME

License: Free

Rating: 3,7/5 - 7 votes

Last Updated: April 18, 2024

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 4
Size 1.7 MB
Release Date October 15, 18
Category Tools Apps

App Permissions:
Allows an application to write to external storage. [see more (8)]

What's New:
- Menu button added.- Bluetooth disconnect function added.- Capture, menu and timer icon added.- Camera and storage permission request added. [see more]

Description from Developer:
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 p... [read more]

App preview ([see all 23 screenshots])

App preview

About this app

On this page you can download Telecam and install on Windows PC. Telecam is free Tools app, developed by NUDGE ME. Latest version of Telecam is 4, was released on 2018-10-15 (updated on 2024-04-18). Estimated number of the downloads is more than 500. Overall rating of Telecam is 3,7. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 7 users, 2 users had rated it 5*, 4 users had rated it 1*.

How to install Telecam on Windows?

Instruction on how to install Telecam on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Telecam on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Telecam using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Telecam" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Telecam on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Telecam" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 4.

Download Telecam 4 on Windows PC – 1.7 MB

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.
- Menu button added.
- Bluetooth disconnect function added.
- Capture, menu and timer icon added.
- Camera and storage permission request added.
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.