Leds work simultanously. Version 3.1

Dependencies:   HCSR

Dependents:   bertl_led bertl_led bertl_led bertl_led ... more

Fork of Bertl by Bertl_Team_PE

BULME HTL Graz-Gösting

FSST - Hardwarenahe Programmierung

Created by Prof.Dr. Franz Pucher

Inhalt

Inhalt

Start mit folgendem Code in main.cpp eines neuen Projektes mbed_blinky:

#include "mbed.h"
#include "const.h"
#include "Robot.h"

Robot bertl;
    
int main()
{
    bertl.NibbleLeds(0x0F);
    wait(1);
    bertl.NibbleLeds(0x00);
    
    while(1)
    {
        if(bertl.IsButtonPressed(BTN_BL))
        {
            bertl.TurnLedOn(LED_BL1);
        }
        if(bertl.IsButtonPressed(BTN_BR))
        {
            bertl.TurnLedOff(LED_BL1);
        }
    }
}
Revision:
12:cedc088eaf05
Parent:
11:155ce3832f01
Child:
13:3ce84646fd74
--- a/const.h	Fri Apr 24 09:16:40 2015 +0000
+++ b/const.h	Sun Apr 26 20:04:47 2015 +0000
@@ -1,6 +1,6 @@
 /*! \file const.h
 \brief A Documented file.
-* name:   const.h    Version: 2.0 \n
+* name:   const.h    Version: 2.2 \n
 * author: PE HTL BULME \n
 * email:  pe@bulme.at \n
 * description:
@@ -9,9 +9,10 @@
 */
 #ifndef CONST_H
 #define CONST_H
-#define TIME
-const int MOVE=500;
-const int TURN=300; 
+#define TIME  /**< if defined Bertl uses the time and not motor encoder*/
+const int MOVE=500;     /**< ms move forward or backward */
+const int TURN=500;     /**< ms TurnLeft or TurnRigth (nearly 90 degree) */
+const int STEPTIME=20;  /**< ms turn left or right for adjusting moves for TurnLeft or TurnRigth */
 
 /*! \var int ULTRASONIC_DISTANCE
 \brief Bertl Ultrasonic Distance Sensor from 1 to n; 5 is ok for nearly 5 cm.
@@ -28,7 +29,7 @@
 /*! \var int ANGLE
 \brief 12 is nearly 90 degree turn left.
 \warning maybe the number has to be adjusted */
-const int ANGLE = 4;      /*  nearly 90 degree turn left */
+const int ANGLE = 12;      /*  nearly 90 degree turn left */
 
 const int BTN_FLL = 0x80;   //  button front left outer 
 const int BTN_FL  = 0x04;   // button front left