WindRose 1.0
Custom Hardware , Firmware and Software for Robotic Cellular Automata Experiments
WRMux.h
Go to the documentation of this file.
1
9#ifndef WRMux_h
10#define WRMux_h
11
12#include "Arduino.h"
13#include "WindRose.h"
14
20class WRMux
21{
22 private:
24 uint8_t MUX_A = 5;
26 uint8_t MUX_B = 6;
28 uint8_t MUX_C = 7;
30 uint8_t INB = 8;
32 uint8_t current = 0;
33 public:
34
39 void init(){
40 pinMode(this->MUX_A, OUTPUT);
41 pinMode(this->MUX_B, OUTPUT);
42 pinMode(this->MUX_C, OUTPUT);
43 pinMode(this->INB, OUTPUT);
44 }
45
47 void enable(){
48 digitalWrite(this->INB, LOW);
49 }
50
52 void disable(){
53 digitalWrite(this->INB, HIGH);
54 }
55
60 void setDir(uint8_t dir){
61 this->current = dir;
62 uint8_t code_mux = 0b111 - dir; // 0b111 - dir = (0bCBA)
63 //0b111 - N -> 0b111 - 0b000 = 0b111
64 //0b111 - E -> 0b111 - 0b001 = 0b110
65 //0b111 - S -> 0b111 - 0b010 = 0b101
66 //0b111 - W -> 0b111 - 0b011 = 0b100
67 digitalWrite(this->MUX_A, code_mux & 1); // set A
68 digitalWrite(this->MUX_B, (code_mux>>1) & 1); // set B
69 digitalWrite(this->MUX_C, (code_mux>>2) & 1); // set C
70 }
71
76 uint8_t getDir(){
77 return this->current;
78 }
79
81 char getdirchar(){
82 char dirs[4] = {'N', 'E', 'S', 'W'};
83 return dirs[this->getDir()];
84 }
85
89 void next(){
90 this->current++;
91 if(this->current > 3){
92 this->current = 0;
93 }
94 this->setDir(this->current);
95 }
96};
97
98#endif
This file defines the WindRose's board class WRBoard (the body).
The class for the WindRose Multiplexer Control.
Definition: WRMux.h:21
char getdirchar()
Returns the current direction of the mux as a string.
Definition: WRMux.h:81
void init()
Initializes the WRMux class by seting the control pins as OUTPUT.
Definition: WRMux.h:39
void enable()
Unsets the inhibit pin and enable the mux.
Definition: WRMux.h:47
void next()
Sets the mux from the current to the next direction as N,S,E,W.
Definition: WRMux.h:89
void disable()
Sets the inhibit pin and disable the mux.
Definition: WRMux.h:52
uint8_t getDir()
Returns the current direction of the mux.
Definition: WRMux.h:76
void setDir(uint8_t dir)
Sets the mux to the direction specified.
Definition: WRMux.h:60