c_cpp PrimoCubettoOOBExample.ino

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp PrimoCubettoOOBExample.ino相关的知识,希望对你有一定的参考价值。

#include <SPI.h>
#include <CubettoLibrary.h>
#include <AccelStepper.h>
#include <aci.h>
#include <KickstarterBackers.h>

Cubetto           CubettoRobot; 
/** ************************************************************************************************************************************
 * @function   
 * @brief     
 ***************************************************************************************************************************************/
void setup() {

  SPI.begin(); 
  SPI.setBitOrder(LSBFIRST); 
  SPI.setDataMode(SPI_MODE0); 
  SPI.setClockDivider(SPI_CLOCK_DIV16); 

  CubettoRobot.begin();                                // Setup Robot
  CubettoRobot.startAdvertisingBluetooth(0, true);     // Start Advertising and Auto
}


/** ************************************************************************************************************************************
 * @function   
 * @brief     
 ***************************************************************************************************************************************/
void loop() {
    CubettoRobot.bluetoothTasks(); 
    if (CubettoRobot.checkForBluetoothMessage()==true)
    {
        CubettoRobot.decodeInterfaceInstructions (CubettoRobot.bluetoothMessageCommand); 
    }

    // Tasks to call every 1 second
    oneSecondLoop (); 

}

/** ************************************************************************************************************************************
 * @function   
 * @brief     
 ***************************************************************************************************************************************/
void oneSecondLoop (void)
{
  static uint32_t counter = 0;
  counter++; 
  if (counter>0xFFFF)
  {
    counter=0;
    CubettoRobot.updateBatteryLevel(); 
    CubettoRobot.sendBatteryLevelToBluetooth(); 
  }
}

以上是关于c_cpp PrimoCubettoOOBExample.ino的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *

c_cpp 54.螺旋矩阵