40 pinMode(this->MUX_A, OUTPUT);
41 pinMode(this->MUX_B, OUTPUT);
42 pinMode(this->MUX_C, OUTPUT);
43 pinMode(this->INB, OUTPUT);
48 digitalWrite(this->INB, LOW);
53 digitalWrite(this->INB, HIGH);
62 uint8_t code_mux = 0b111 - dir;
67 digitalWrite(this->MUX_A, code_mux & 1);
68 digitalWrite(this->MUX_B, (code_mux>>1) & 1);
69 digitalWrite(this->MUX_C, (code_mux>>2) & 1);
82 char dirs[4] = {
'N',
'E',
'S',
'W'};
83 return dirs[this->
getDir()];
91 if(this->current > 3){
94 this->
setDir(this->current);
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