The board Blueduino, which includes both the bluetooth chip CC2540 and the ATmega32U4 chip, is not yet supported by Blynk. It looks like supporting it can be easy as it supports UART transparent transfer.
The problem is that the app doesn’t find the device during scanning.
UUID RX_SERVICE_UUID = 0000fff0-0000-1000-8000-00805f9b34fb
UUID RX_CHAR_UUID = 0000fff2-0000-1000-8000-00805f9b34fb
UUID TX_CHAR_UUID = 0000fff1-0000-1000-8000-00805f9b34fb
See
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aprilbrother.blueduino;
import android.app.Service;
import android.bluetooth.BluetoothAdapter;
This file has been truncated. show original
We are filtering supported boards during the scan. Unfortunately, this uart is not in our list of supported hardware. @vshymanskyy could you comment?
We have a working prototype, but it needs additional testing (has stability issues)