how to upgrade pepper robot from naoqi 2.5.10 to 2.9 - pepper

Any way to upgrade naoqi 2.5 to naoqi 2.9 os for pepper robot 1.8a? cant reach softbank technical support with email. Would like to use qi sdk with pepper.

It is possible for Pepper 1.8a to be upgraded to run the new Android NAOqi version (2.9). But this process can't be completed by users - you'll need to get in touch with your local Softbank Robotics support team for this.
The specific details vary so I can't say much more sorry.

Related

Install Via USB not working - on 7.0 device

I have red mi note 4 devices after update device with miui version 9 attempt to enable installation via application via USB, it doesn't work and shows "This device is temporarily restricted". The solution I found didn't work.
Without that feature, I can't develop an application.
Model redmi note 4
miui version: 9.0.5.0
I faced the same issue. I was not able to enable Install Via USB option, however, I found a solution that actually worked.
Here are the steps to enable it.
Install PlexVPN app on your mobile phone
Open PlexVPN then set VPN to China (e.g China-Shanghai) and connect
Go to Developer Options and enable Install Via USB option
Enjoy :)
For me, the only solution that worked is to toggle on OEM unlocking
Only then I could enable Install via USB and other options that previously restricted
yes the solution is VPN you need chinese serevr for proxy , should is buy vpn or i can do it for free , follow the links below
i faced the problem before so here is answer

Is there a way to run Android TV in VirtualBox?

I want to try out Android TV and possibly develop an app for it. I want to see the OS first though. Is there a way to run Android TV in as a virtual machine, for instance with VirtualBox?
As mentioned in a comment to the OP, your best bet is to install the Android SDK and fetch the Android TV system images. Then, create an Android Virtual Device (AVD) with the TV image and run the emulator.
You won't have any of the apps that are preinstalled in, say, a Nexus Player, but you will get the idea around how this version of Android runs and what it is capable of.
[PRO TIP: if you're on OSX, using the x86 one results in HAXM acceleration enabled --> the emulator runs really smooth]

Azure Connection on Intel Galileo

I'm looking to connect an Intel Galileo to Azure through The Windows 8 version for the Internet of things.
I'm looking to store sensor data such as temperature and humidity in Azure, and have some form of message passing from an app on a phone to the service in Azure and on to the board (and back again).
There are plenty of examples doing this for apps etc, but I can't find anything on doing it with the Galileo. I'm pretty novice when it comes to Azure. Any suggestions would be appreciated.
Cheers!
You can use AMQP 1.0 and Azure Service Bus (Event Hubs or Topics). Apache Qpid Proton can be runned on Intel Galileo and Windows 8.
Please, consult Connect The Dots project and its pull requests for more examples.

Google Glass and BLE (Bluetooth 4.0, BluetoothSmart)

Does Google Glass SDK (GDK) support BLE yet? I would like to connect and communicate with a Bluegiga BLE113 module.
Thanks.
Yup! It was added with the upgrade to Kit Kat in XE16.
The feature request was closed as fixed when that release was pushed out.
According to this article with the FCC filing, yes, it does. However, Android 4.0.4 does not natively support BLE, so unless the Glass Team built a BLE library for Glass, no, it doesn't. I'd suggest testing (if you have Glass). If not, I can test for you to check, if you have a way.
Actually, according to Android doc it is available from API Level 18 (4.3). I can't wait to see an Android update for Google Glass.

How to send stream data via Bluetooth from an iPhone/iPod Touch to a Windows C++ application?

I need to develop an iPhone/iPod Touch application that creates a server to send some data stream (characters or bytes) to a Windows C++ application via Bluetooth. I'm thinking of creating a TCP connection, but don't know where to start.
What iPhone API should I use do to something like this? Does anyone knows some code examples that i can use to do this?
And in Windows, what should I use to support this kind of communication?
Thanks
Yes. From what it looks like you can use the PAN bluetooth profile (the same profile used for tethering) with everything except the original iPhone.
Here's an article doing bluetooth over iPhone/iPad using GameKit. The article notes that you would need at least 2 iPhone/iPad devices running iPhone OS 3.0, but I wouldn't take that as an impossibility to talk to any other bluetooth capable device.
Update
This forum indicates that the iPhone is only capable of headset pairing. It could be that the iPhone is "picky" about what you can pair it with.
"The iPhone only recognizes the "headset" profile. Another well thought out idea from Apple. No A2DP profiles, no OBEX."
-sapporobaby
Update 2
As jamone as indicated iPhone 3.0 supports A2DP. How nice is that?
Here's a table listing of iPhone/iPad bluetooth supported profiles
I'm pretty sure third-party developers don't have sufficient access to the Bluetooth stack to do this via published APIs (i.e. via an app you publish to the App Store).
Is using WiFi an option? That's what most developers seem to be using for client/server communications. If that's the case, see if you can distribute Apple's Bonjour runtime with your app. If you search the developer site for Bonjour, they have code samples (though probably no Windows examples).