Can-Bus 与 Android Studio

问题描述 投票:0回答:1

我是新手,我对这个主题做了很多研究,但我找不到有用的资源。我想在 Android Studio 上创建一个应用程序,该应用程序侦听 Can-Bus 线路,并且仅在后台运行,没有用户界面。我需要为此使用 J1939 库,但我不知道如何确保通信。如果您有帮助,我会很高兴。谢谢。

CanBusService.java;

package com.example.j1939_android3;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class CanBusService extends Service {

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d("CanBusService", "Service created");
        // Initialize CAN bus communication here
        // Add your CAN bus communication logic
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d("CanBusService", "Service started");
        // Start listening to the CAN bus
        startListeningToCanBus();
        return START_STICKY;
    }

    private void startListeningToCanBus() {
        // Implement CAN bus listening logic here
        // This method will run in the background
    }

    @Override
    public IBinder onBind(Intent intent) {
        // Return null because this service is not meant to be bound
        return null;
    }
}

CanBusHandler.java:

package com.example.j1939_android3;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class CanBusService extends Service {

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d("CanBusService", "Service created");
        // Initialize CAN bus communication here
        // Add your CAN bus communication logic
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d("CanBusService", "Service started");
        // Start listening to the CAN bus
        startListeningToCanBus();
        return START_STICKY;
    }

    private void startListeningToCanBus() {
        // Implement CAN bus listening logic here
        // This method will run in the background
    }

    @Override
    public IBinder onBind(Intent intent) {
        // Return null because this service is not meant to be bound
        return null;
    }
}

CanBusApplication.java:

package com.example.j1939_android3;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class CanBusService extends Service {

    @Override
    public void onCreate() {
        super.onCreate();
        Log.d("CanBusService", "Service created");
        // Initialize CAN bus communication here
        // Add your CAN bus communication logic
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.d("CanBusService", "Service started");
        // Start listening to the CAN bus
        startListeningToCanBus();
        return START_STICKY;
    }

    private void startListeningToCanBus() {
        // Implement CAN bus listening logic here
        // This method will run in the background
    }

    @Override
    public IBinder onBind(Intent intent) {
        // Return null because this service is not meant to be bound
        return null;
    }
}

Android 清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <uses-feature android:name="android.hardware.usb.host" />
    <uses-permission android:name="android.permission.USB_DEVICE" />

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.J1939_Android3"
        tools:targetApi="31">

        <activity android:name=".CanBusApplication"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <service
            android:name=".CanBusService"
            android:exported="false">
        </service>
    </application>

</manifest>
java android-studio can-bus j1939
1个回答
0
投票

我想听can消息,如何找到J1939相关的库?

你能帮我解决这个问题吗?

© www.soinside.com 2019 - 2024. All rights reserved.