Home  /  Education Apps  / Talking Display Shield (Free) on Windows Pc

Talking Display Shield (Free) on Windows Pc

Developed By: NUDGE ME

License: Free

Rating: 4,4/5 - 7 votes

Last Updated: December 24, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 7
Size 451.5 KB
Release Date August 02, 17
Category Education Apps

App Permissions:
Allows applications to connect to paired bluetooth devices. [see more (6)]

What's New:
Problems on some devices resolved. [see more]

Description from Developer:
This display shield just acts as the hardware LCD Shield but in smarter way.

This shield outputs 2 line of text, which each text's properties are customizable in realtime.

To... [read more]

App preview ([see all 25 screenshots]  /  [view video])

App preview

About this app

On this page you can download Talking Display Shield (Free) and install on Windows PC. Talking Display Shield (Free) is free Education app, developed by NUDGE ME. Latest version of Talking Display Shield (Free) is 7, was released on 2017-08-02 (updated on 2023-12-24). Estimated number of the downloads is more than 1,000. Overall rating of Talking Display Shield (Free) is 4,4. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 7 users, 1 users had rated it 5*, 6 users had rated it 1*.

How to install Talking Display Shield (Free) on Windows?

Instruction on how to install Talking Display Shield (Free) on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Talking Display Shield (Free) 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 Talking Display Shield (Free) 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 "Talking Display Shield (Free)" 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 Talking Display Shield (Free) 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 "Talking Display Shield (Free)" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 7.

Download Talking Display Shield (Free) 7 on Windows PC – 451.5 KB

This display shield just acts as the hardware LCD Shield but in smarter way.

This shield outputs 2 line of text, which each text's properties are customizable in realtime.

To use this shield, connect this app to Arduino using BT connection via BT module (such as HC-06) and just send the appropriate commands. Or to simply play around with this app, just use BT Serial Terminal app (also from me), establish the Bluetooth connection and send the commands through the app.

The app is default run in console view that displays Command String, Text-to-speech and Text-to-display fields. To switch into display mode, just press the 'Run LCD' button at the bottom of the screen.

To start displaying texts, you may send the commands in serial string format through the established Bluetooth connection. For example, to display text on the first line, send '$first' first (without the punctuation marks) then send any text you like (preferably short text, without the '$' symbol) and the text will be displayed on the middle of the app.

To switch to second line, just send '$second' followed by the text you want to display (without the '$' symbol). The text will be positioned below the first line of text that the app have previously displayed.

Example:
$first
Temp:
$second
40˚C

Each of the command will be responded by the app to the sender. For example, from the code above, you will see that the BT Serial Terminal app receives 'First line selected' and 'Second line selected' that are sent by the Display Shield app.

If you are using the Arduino, you can get the same result by using Serial.println command. For example:

Serial.println("$first");
Serial.println("Temp:");
Serial.println("$second");
Serial.println("40˚C");

To make the app speak or voice out the text you want, begin the text with '*' symbol. For example:

Serial.println("*Hello, how are you? I am your friend");

Next, you can separately alter the appearance of the text for both lines such as the text size, text color, text angle and even the background color using these commands (case sensitive):
$tc - First line's text color
$TC - Second line's text color
$ts - First line's text size
$TS - Second line's text size
$bc - background color

For example:
- To set the first line's text color to Yellow, send '$tc9' to the app (without the punctuation marks).
- To set the second line's text color to green, send "$TC4" to the app.
- To set the background color to purple, send "$bc11" to the app.
- To set the first line's text angle to 25˚, send '$ta25' to the app.
- To set the second line's text angle to 60˚, send '$TA60' to the app.

You can find the full list of color reference at the Settings page using the 'Settings' menu or just send '$list' to the app using BT Serial Terminal app to receive the list via the returned serial strings.

The other available commands are '$clear' to clear the texts, '$reset' to reset all styles to default, '$time' to show the current time, '$date' to show the current date, '$buzz' to play buzzer sound and '$delay' to set some amount of delay in ms before the speech is performed.

Example (try this in BT Serial Terminal app - just use copy paste function):

No: 69
$second
Counter 4
$ts40
$TS80
$tc6
$TC0
$bc9
$buzz
$delay2000
*Number 69 counter 4

Or try this using Arduino code:

void loop()
{
Serial.println("$first");
Serial.println("$time pm");
Serial.println("$second");
Serial.println("$date");
Serial.println("$ts70");
Serial.println("$TS70");
Serial.println("$tc7");
Serial.println("$TC11");
Serial.println("$bc9");
}

You can find the list of commands and examples in the 'Settings' menu at the 'Cheatsheet' section.

This Free version does not contain any ad; it is however restricted to 5 minutes of time per session.

You can run this app in portrait (default) or landscape mode using the options from the menu.

Consider to purchase the Full version if you find this app is useful. Thank you!
Problems on some devices resolved.
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.
Allows applications to open network sockets.
Allows applications to access information about Wi-Fi networks.
Allows applications to access information about networks.