Expeyes remote server Apk

Expeyes remote server Apk

Latest version 1.1
25 Jan 2023

Older Versions

Apk Infos

Version1.1
Rating3.3/5, based on 4 votes
Size‎488 KB
Requires AndroidAndroid 4.0+ (Ice Cream Sandwich)

About Expeyes remote server APK

Expeyes remote server APK Download for Android
Expeyes remote server APK Download for Android

Description

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

How to install Expeyes remote server APK on Android phone or tablet?

Download Expeyes remote server APK file from ApkClean, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (com.expeyesserver-v1.1-ApkClean.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

Older Versions

1.1 (3)488 KB

Questions & Answers

Q: What is an APK File?

A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.

Q: If I install an APK from this website, will I be able to update the app from the Play Store?

A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.

Q: Why ApkClean.net can guarantee APK 100% safe?

A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.

Q: What are Android App permissions?

A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.

Don't hesitate to contact us if you have any questions or concerns.

(*) is required