Expeyes remote server Application icon

Expeyes remote server 1.1

488 KB / 10+ Downloads / Rating 3.3 - 4 reviews


See previous versions

Expeyes remote server, developed and published by CSpark Research, has released its latest version, 1.1, on 2023-01-25. This app falls under the Education category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 3.3, based on 4 reviews.

Expeyes remote server APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.0+). 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: com.expeyesserver

Updated: 2 years ago

Developer Name: CSpark Research

Category: Education

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing Expeyes remote server 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.3
Total 4 reviews

Previous Versions

Expeyes remote server 1.1
2023-01-25 / 488 KB / Android 4.0+

About this app

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()
#-----------------------------------------------------

App Permissions

Allows applications to open network sockets.