osd-contiki/examples/osd/lgb-train/sketch.pde

119 lines
3.6 KiB
Plaintext
Raw Normal View History

2017-07-20 10:33:19 +02:00
/*
* Sample arduino sketch using contiki features.
* We turn the LED off
* We allow read the moisture sensor
* Unfortunately sleeping for long times in loop() isn't currently
* possible, something turns off the CPU (including PWM outputs) if a
* Proto-Thread is taking too long. We need to find out how to sleep in
* a Contiki-compatible way.
* Note that for a normal arduino sketch you won't have to include any
* of the contiki-specific files here, the sketch should just work.
*/
extern "C" {
#include "arduino-process.h"
#include "rest-engine.h"
#include "net/netstack.h"
extern resource_t res_led, res_battery, res_cputemp;
uint8_t led_pin=4;
uint8_t led_status;
2017-07-20 15:14:45 +02:00
2017-07-20 10:33:19 +02:00
}
2017-07-20 15:14:45 +02:00
// Merkurboard and BB-L298 connected to it.
// |---------------------------------------------------------------------------|
// | The connections were as follows: |
// |--------------------------------|------------------------------------------|
// |Connector at Merkurboard Grove 4| Connector at BB-L298 |
// |--------------------------------|------------------------------------------|
// | Power<3>, 3V | CTRL<1>, +5V |
// | Power<4>, GND | CTRL<8>, GND |
// | Power<5>, GND | PWR<2>, GND |
// | Power<6>, VIN(@12VDC) | PWR<1>, VIN |
// | DIGITAL<3>, D3 | CTRL<5>, Enable_B |
// | DIGITAL<17>, D17 | CTRL<6>, IN3 |
// | DIGITAL<18>, D18 | CTRL<7>, IN4 |
// |--------------------------------|------------------------------------------|
#define BB_Enable_B 3
#define BB_IN3 17
#define BB_IN4 18
#define IN3_L digitalWrite(BB_IN3, LOW);
#define IN3_H digitalWrite(BB_IN3, HIGH);
#define IN4_L digitalWrite(BB_IN4, LOW);
#define IN4_H digitalWrite(BB_IN4, HIGH);
2017-07-25 20:16:55 +02:00
#define button 7
2017-07-20 14:03:42 +02:00
#include <Grove_LED_Bar.h>
Grove_LED_Bar bar(9, 8, 1); // Clock pin, Data pin, Orientation
2017-07-20 10:33:19 +02:00
void setup (void)
{
2017-07-20 15:14:45 +02:00
// BB-L298
2017-07-21 13:31:44 +02:00
arduino_pwm_timer_init ();
2017-07-20 15:14:45 +02:00
pinMode(BB_IN3, OUTPUT);
pinMode(BB_IN4, OUTPUT);
IN3_L;
IN4_L;
analogWrite(BB_Enable_B, 0);
2017-07-25 20:16:55 +02:00
// button
pinMode(button,INPUT_PULLUP);
//pinMode(button,INPUT);
2017-07-20 10:33:19 +02:00
// switch off the led
pinMode(led_pin, OUTPUT);
digitalWrite(led_pin, HIGH);
led_status=0;
2017-07-20 14:03:42 +02:00
// led bar
bar.begin();
2017-07-20 10:33:19 +02:00
// init coap resourcen
rest_init_engine ();
2017-07-20 14:03:42 +02:00
#pragma GCC diagnostic ignored "-Wwrite-strings"
2017-07-20 10:33:19 +02:00
rest_activate_resource (&res_led, "s/led");
rest_activate_resource (&res_battery, "s/battery");
rest_activate_resource (&res_cputemp, "s/cputemp");
2017-07-20 14:03:42 +02:00
#pragma GCC diagnostic pop
2017-07-20 10:33:19 +02:00
// NETSTACK_MAC.off(1);
2017-07-20 14:03:42 +02:00
// mcu_sleep_set(128);
2017-07-20 10:33:19 +02:00
}
void loop (void)
{
2017-07-20 15:14:45 +02:00
static int vbar = 0;
2017-07-20 16:26:38 +02:00
static int speed = 0;
2017-07-25 20:16:55 +02:00
static int direction = 1;
int buttondir = digitalRead(button);
2017-07-20 15:14:45 +02:00
int sensorValue1 = analogRead(A4);
int sensorValue2 = analogRead(A5);
2017-07-20 10:33:19 +02:00
2017-07-20 16:26:38 +02:00
vbar = (1023-sensorValue2)/100;
if (vbar > 10){
2017-07-20 15:14:45 +02:00
vbar=0;
2017-07-20 14:03:42 +02:00
}
2017-07-20 16:26:38 +02:00
bar.setLevel(vbar);
2017-07-20 10:33:19 +02:00
2017-07-20 16:26:38 +02:00
speed = (1023-sensorValue2) >> 2;
2017-07-25 20:16:55 +02:00
//direction
if (speed == 0){
direction = buttondir;
}
if (direction == 1){
IN3_L; IN4_H; analogWrite(BB_Enable_B, speed);
}
if (direction == 0){
IN3_H; IN4_L; analogWrite(BB_Enable_B, speed);
}
analogWrite(led_pin, 255-speed);
printf("x: %d , y: %d bar: %d speed: %d bdir: %d direc.: %d\n",sensorValue1 ,sensorValue2, vbar, speed, buttondir, direction);
2017-07-20 15:14:45 +02:00
2017-07-20 10:33:19 +02:00
}