Browse Source

starting with output

led
wiebel 8 years ago
parent
commit
4917bb57d6
  1. 89
      src/CANNode.cpp
  2. 11
      src/CANNode.h

89
src/CANNode.cpp

@ -16,7 +16,18 @@
#define N_EVENTS 64 // size of events array #define N_EVENTS 64 // size of events array
#define N_SWITCHES 64 // size of switch array #define N_SWITCHES 64 // size of switch array
#define DEBUG 0 // 1 for noisy serial #define DEBUG 0 // 1 for noisy serial
#define LED 13 #define LED 17
#define RELAY1 0
#define RELAY2 1
#define RELAY3 23
#define RELAY4 22
#define RELAY5 17
#define RELAY6 16
#define RELAY7 9
#define RELAY8 10
// Metro ticks in ms // Metro ticks in ms
#define METRO_CAN_tick 1 #define METRO_CAN_tick 1
#define METRO_OW_read_tick 20 #define METRO_OW_read_tick 20
@ -41,8 +52,14 @@
#define DS2406_BUF_LEN 10 #define DS2406_BUF_LEN 10
// Definitions // Definitions
static OW_switch_t switches[N_SWITCHES]; static OW_switch_t switches[N_SWITCHES] PROGMEM=
static event_t events[N_EVENTS]; {
{ 1, { 0x12, 0x5b, 0x27, 0x50, 0x0, 0x0, 0x0, 0x26 }, { 0x01, 0x02 } }
};
static uint8_t switches_state[N_SWITCHES];
static tx_event_t tx_events[N_EVENTS];
// Initialisation // Initialisation
@ -77,7 +94,7 @@ int txCount,rxCount;
unsigned int txTimer,rxTimer; unsigned int txTimer,rxTimer;
// Functions ------------------------------------------------------- // Functions ------------------------------^-------------------------
void PrintBytes(uint8_t* addr, uint8_t count, bool newline=0) { void PrintBytes(uint8_t* addr, uint8_t count, bool newline=0) {
for (uint8_t i = 0; i < count; i++) { for (uint8_t i = 0; i < count; i++) {
Serial.print(addr[i]>>4, HEX); Serial.print(addr[i]>>4, HEX);
@ -91,7 +108,7 @@ void DEBUG_Bytes(uint8_t* addr, uint8_t count, bool newline=0) {
for (uint8_t i = 0; i < count; i++) { for (uint8_t i = 0; i < count; i++) {
Serial.print(addr[i]>>4, HEX); Serial.print(addr[i]>>4, HEX);
Serial.print(addr[i]&0x0f, HEX); Serial.print(addr[i]&0x0f, HEX);
} }
if (newline) if (newline)
Serial.println(); Serial.println();
#endif #endif
@ -127,30 +144,30 @@ void setup(void)
{ {
// Misc // Misc
// Most clumsy way later to be put in eeprom or s/th // Most clumsy way later to be put in eeprom or s/th
switches[0].nick = 1; // switches[0].id = 1;
switches[0].addr[0] = 0x12, // switches[0].addr[0] = 0x12,
switches[0].addr[1] = 0x5b; // switches[0].addr[1] = 0x5b;
switches[0].addr[2] = 0x27; // switches[0].addr[2] = 0x27;
switches[0].addr[3] = 0x50; // switches[0].addr[3] = 0x50;
switches[0].addr[4] = 0x0; // switches[0].addr[4] = 0x0;
switches[0].addr[5] = 0x0; // switches[0].addr[5] = 0x0;
switches[0].addr[6] = 0x0; // switches[0].addr[6] = 0x0;
switches[0].addr[7] = 0x26; // switches[0].addr[7] = 0x26;
switches[0].event_id[0] = 0x01; // switches[0].event_id[0] = 0x01;
switches[0].event_id[1] = 0x02; // switches[0].event_id[1] = 0x02;
events[0].id =0x01; tx_events[0].id =0x01;
events[0].telegram.id = 0x0102DEAD; tx_events[0].telegram.id = 0x0102DEAD;
events[0].telegram.len = 2; tx_events[0].telegram.len = 2;
events[0].telegram.buf[0] = 0xDE; tx_events[0].telegram.buf[0] = 0xDE;
events[0].telegram.buf[1] = 0xAD; tx_events[0].telegram.buf[1] = 0xAD;
events[1].id =0x02; tx_events[1].id =0x02;
events[1].telegram.id = 0x0204BEEF; tx_events[1].telegram.id = 0x0204BEEF;
events[1].telegram.len = 4; tx_events[1].telegram.len = 4;
events[1].telegram.buf[0] = 0xDE; tx_events[1].telegram.buf[0] = 0xDE;
events[1].telegram.buf[1] = 0xAD; tx_events[1].telegram.buf[1] = 0xAD;
events[1].telegram.buf[2] = 0xBE; tx_events[1].telegram.buf[2] = 0xBE;
events[1].telegram.buf[3] = 0xEF; tx_events[1].telegram.buf[3] = 0xEF;
//{ 0x02040608, 2, { 0xbe, 0xef }}}; //{ 0x02040608, 2, { 0xbe, 0xef }}};
@ -194,9 +211,9 @@ void loop(void)
if (METRO_OW_read.check() ) { if (METRO_OW_read.check() ) {
bool action[2]; bool action[2];
readout = read_DS2406(switches[0].addr); readout = read_DS2406(switches[0].addr);
if (switches[0].state != readout) { if (switches_state[0] != readout) {
tmp = readout ^ switches[0].state; tmp = readout ^ switches_state[0];
switches[0].state = readout; switches_state[0] = readout;
action[0] = tmp & 0x04; action[0] = tmp & 0x04;
action[1] = tmp & 0x08; action[1] = tmp & 0x08;
} }
@ -223,14 +240,14 @@ void loop(void)
} }
} }
if ( txmsg.len == 0 && trig_event != 0 ) { if ( txmsg.len == 0 && trig_event != 0 ) {
if ( events[event_idx].id == trig_event ) { if ( tx_events[event_idx].id == trig_event ) {
txmsg.id = events[event_idx].telegram.id; txmsg.id = tx_events[event_idx].telegram.id;
txmsg.len = events[event_idx].telegram.len; txmsg.len = tx_events[event_idx].telegram.len;
for (uint i=0;i<txmsg.len;i++){ for (uint i=0;i<txmsg.len;i++){
txmsg.buf[i] = events[event_idx].telegram.buf[i]; txmsg.buf[i] = tx_events[event_idx].telegram.buf[i];
} }
} }
if ( events[event_idx].id == 0) { trig_event = 0; } if ( tx_events[event_idx].id == 0) { trig_event = 0; }
event_idx++; event_idx++;
} }
// if not time-delayed, read CAN messages and print 1st byte // if not time-delayed, read CAN messages and print 1st byte

11
src/CANNode.h

@ -1,5 +1,7 @@
#include <Arduino.h> #include <Arduino.h>
enum out_type {gpio, pwm, ow, i2c, spi, ws2811, dmx};
typedef struct CAN_telegram_t { typedef struct CAN_telegram_t {
uint32_t id; uint32_t id;
uint8_t len; uint8_t len;
@ -9,11 +11,16 @@ typedef struct CAN_telegram_t {
typedef struct OW_switch_t { typedef struct OW_switch_t {
uint8_t nick; uint8_t nick;
uint8_t addr[8]; uint8_t addr[8];
uint8_t state;
uint8_t event_id[2]; uint8_t event_id[2];
} OW_switch_t; } OW_switch_t;
typedef struct event_t { typedef struct tx_event_t {
uint8_t id; uint8_t id;
CAN_telegram_t telegram; CAN_telegram_t telegram;
} event_t; } event_t;
typedef struct outputs_t {
uint8_t id;
out_type type;
uint8_t address;
} outputs_t;

Loading…
Cancel
Save