Android Tutorial Android Things - Getting Started

iCAB

Well-Known Member
Licensed User
Longtime User
Hi Toley

If I am not mistaken (if I understood Erel correctly), Android things support UI on PI 3.

What I would like to know is this:
Is the Non-UI thing a limitation of B4J or something else. After all, many of these boards have HDMI .

Thanks for your reply
 
Last edited:

iCAB

Well-Known Member
Licensed User
Longtime User
Hi Guys

I have one more question with regards to this.

Have any one tested how high of a frequency can be accurately read (without missing any pulses) using Pi3 with B4A, and is there a difference in performance whether we use B4A or B4J. Please note that I am referring to interrupt mode (listener) and not tight loop.

Thanks in advance
 

walterf25

Expert
Licensed User
Longtime User
Hi Erel, i'm playing with a raspberry pi 3 and i was able to load the development image on it, i'm having some problems understanding how to connect to it through ADB, i have a USB to TTL cable connected but i can't seem to get a connection, i just came across this post and noticed you mention that we can use ADB through wifi, how can we accomplish this, how can we install the B4ABridge on the raspberry pi in the Android Things image.

Regards,
Walter
 

walterf25

Expert
Licensed User
Longtime User
The steps are explained in the first post. You don't need to use B4A-Bridge as you will use ADB instead.
Hi Erel, thanks for your reply, i was having issues connecting to the raspberry pi through ADB for some reason i think the connection is being rejected on my network somehow, i was using my job's wifi connection.

I created a hot spot with my cell phone and connected both my laptop and raspberry pi to the hot spot and was able to connect just fine after that.

Regards,
Walter
 

Blueforcer

Well-Known Member
Licensed User
Longtime User
Just for your information.
It works fine with the official Raspberry 7" Touchscreen, incl Multitouch, out of the box!
Thanks for this tutorial!
 

fbritop

Active Member
Licensed User
Longtime User
Just for your information.
It works fine with the official Raspberry 7" Touchscreen, incl Multitouch, out of the box!
Thanks for this tutorial!

Can you provide me the link to the Touch LCD please...

Thanks
FBP
 

Rafael Ruiz

Member
Licensed User
Longtime User
Hello all.
I have an issue, I added the code to the manifest editor to start my program after boot, but the program doesn't start, what can i do? Thanks in advance
 

Tareq Khan

Member
Licensed User
Longtime User
The manifest editor code posted in the 1st post to make the program automatically start after boot did not work for me.

The following code worked.

B4X:
AddActivityText(Main,
<intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.HOME"/>
        <category android:name="android.intent.category.DEFAULT"/>
    </intent-filter>
)
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…