Questions tagged «android»



2
Raspberry PI 2作为屏幕镜像适配器
我需要将我的Android手机显示屏镜像到电视/显示器,此外我还需要RPi2。我可以在不购买任何其他设备,电缆或适配器的情况下实现此功能吗?转换协议对我来说并不重要。可能是Miracast,Samsung Allshare演员表等等。 我的设备是三星LPH-720(Galaxy S4)。 更新:在第一个答案中,VNC是作为屏幕广播的方式提供的。但是,我怀疑Wi-Fi带宽是否足以进行稳定的屏幕广播。另一个缺点是电池电量消耗大。有什么方法可以通过有线连接将电话连接到RPi?USB或GPIO连接器?

1
使用python和蓝牙进行通讯
我正在尝试编写一个简单的程序来在RPi和蓝牙手机之间进行通信。我使用了该教程:用于RPi的Bluetooth Python教程, 能够连接到手机,并且绑定正确。然后我写了这个python脚本: #! /usr/bin/python import serial from protocol import * from MotorControllerP import * def startBluetoothServer(): bluetoothSerial = serial.Serial("/dev/rfcomm1",baudrate=9600) print("Bluetooth connected") try: while 1: data = bluetoothSerial.readLine() if not data: break data = data.decode() print("Data received: "+data) if data[:3] == Client.INIT_HEY: print("Initiallizing connection") bluetoothSerial.write((Server.INIT_OK+"\n").enc$ print("Connection initiallized") elif data[:3] == …

2
使用UV4L驱动程序将视频从Raspberry Pi相机流式传输到Android手机
你好覆盆子的人! 我发布了一个新问题,因为我在raspberrypi.stackexchange上没有足够的代表才能对此帖子发表评论:https : //raspberrypi.stackexchange.com/questions/15000/stream-video-from-rpi-cam -to-android-phone可以解决我的问题,只有我无法使它起作用:( 简而言之,我想通过我的Android控制机器人,机器人内部是带有树莓派相机的树莓派。因此,对于初学者来说,我只想将视频从机器人流式传输到手机上的Java应用程序。 。 关于上述问题的第一条评论链接到该帖子,该帖子显示了如何使用PS眼睛作为摄像头将视频从Raspberry流式传输到Android手机。 “ alex”的第四个评论说,关于使用树莓派pi摄像头而不是PS摄像头摄像头: I've found the solution: I had to install the uv4l driver to use the RaspiCam as /dev/video0 and I had to modify the gst-server.sh : inserted videoscale !\ after ffmpegcolorspace !\ and it works :) 因此, 我按照本指南在树莓派上安装uv4l驱动程序:http : //www.linux-projects.org/modules/sections/index.php? op=viewarticle&artid …

1
通过蓝牙从Android接收文件?
所以我目前有一个通过蓝牙加密狗与我的pi配对的android应用程序。为了定期接收文件,我必须去手动接受发生的转移。 有办法绕过此步骤吗?还是所有传输都自动接受并存储在特定目录中?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.