Home  /  Education Apps  / Expeyes remote server on Windows Pc

Expeyes remote server on Windows Pc

Developed By: CSpark Research

License: Free

Rating: 3,3/5 - 4 votes

Last Updated: December 27, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.1
Size 488 KB
Release Date January 25, 23
Category Education Apps

App Permissions:
Allows applications to open network sockets. [see more (1)]

Description from Developer:
This App creates and binds a listening socket on port 8080.

External clients on the same network can connect to
and read/write to it.

Ensure that the device running this app, a... [read more]

App preview ([see all 5 screenshots])

App preview

About this app

On this page you can download Expeyes remote server and install on Windows PC. Expeyes remote server is free Education app, developed by CSpark Research. Latest version of Expeyes remote server is 1.1, was released on 2023-01-25 (updated on 2023-12-27). Estimated number of the downloads is more than 1,000. Overall rating of Expeyes remote server is 3,3. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 4 users, 2 users had rated it 5*, 1 users had rated it 1*.

How to install Expeyes remote server on Windows?

Instruction on how to install Expeyes remote server on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Expeyes remote server 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 Expeyes remote server 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 "Expeyes remote server" 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 Expeyes remote server 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 "Expeyes remote server" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.1.

Download Expeyes remote server 1.1 on Windows PC – 488 KB

This App creates and binds a listening socket on port 8080.

External clients on the same network can connect to
and read/write to it.

Ensure that the device running this app, and your client device are on the same network.
-One way is to connect both to a WiFi router.
-Another is to create a WiFi hotspot on this device, and connect your client to it.

All standard expEYES commands are supported, and a 'read' command
is used to fetch various data.
Also responds to '*IDN?' query

Here's an example python script to get you started

#-------Example.py-------------
import socket
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('',8080))
s.send('get_voltage(1)\n')
s.send('read(value)\n') #Arguments can be t1,ch1,t2,..ch4,timestamp,value
print s.recv(100)
#--------------------------------------

#-----------example2.py---------

import socket
from pylab import *
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('',8080))
f = s.makefile()

ion()
figure, ax = subplots()
lines, = ax.plot([],[])

for m in range(10):
s.send('capture(1,1800,5)\nread(t1,ch1)\n') #capture points
#s.send('read(t1,ch1)\n')
x=f.readline()
y=f.readline()
a=[float(i) for i in x.split(',')] #float array from ASCII string
b=[float(i) for i in y.split(',')]
lines.set_xdata(a)
lines.set_ydata(b)
ax.relim()
ax.autoscale_view()
draw()
#-----------------------------------------------------
Allows applications to open network sockets.