-
Notifications
You must be signed in to change notification settings - Fork 6
/
BETABRITE.cpp
226 lines (202 loc) · 4.99 KB
/
BETABRITE.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/* BETABRITE class for Arduino
by Tom Stewart (tastewar.com)
This library provides definitions and functions
for interfacing with a BetaBrite sign through a
Serial port
The documentation for the protocol that this code
is based on is (was) available at the time at:
http://www.alpha-american.com/alpha-manuals/M-Protocol.pdf
(c) 2011
*/
#include <WProgram.h>
#ifdef DATEFUNCTIONS
#include "RTClib.h"
#endif
#include "BETABRITE.h"
#define BB_BETWEEN_COMMAND_DELAY 110
BETABRITE::BETABRITE ( uint8_t receivePin, uint8_t transmitPin, const char Type, const char Address[2] ) : NewSoftSerial ( receivePin, transmitPin )
{
begin ( 9600 );
_type = Type;
if ( Address )
{
_address[0] = Address[0];
_address[1] = Address[1];
}
else
{
_address[0] = '0';
_address[1] = '0';
}
}
BETABRITE::~BETABRITE ( void )
{
}
void BETABRITE::WriteTextFile ( const char Name, const char *Contents, const char initColor, const char Position, const char Mode, const char Special )
{
BeginCommand ( );
BeginNestedCommand ( );
WriteTextFileNested ( Name, Contents, initColor, Position, Mode, Special );
EndCommand ( );
}
void BETABRITE::WriteTextFileNested ( const char Name, const char *Contents, const char initColor, const char Position, const char Mode, const char Special )
{
print ( BB_CC_WTEXT );
print ( Name );
print ( BB_ESC ); print ( Position ); print ( Mode );
if ( BB_DM_SPECIAL == Mode ) print ( Special );
if ( initColor != BB_COL_AUTOCOLOR )
{
print ( BB_FC_SELECTCHARCOLOR );
print ( initColor );
}
print ( (char *)Contents );
}
void BETABRITE::WritePriorityTextFile ( const char *Contents, const char initColor, const char Position, const char Mode, const char Special )
{
WriteTextFile ( BB_PRIORITY_FILE_LABEL, Contents, initColor, Position, Mode, Special );
}
void BETABRITE::WritePriorityTextFileNested ( const char *Contents, const char initColor, const char Position, const char Mode, const char Special )
{
WriteTextFileNested ( BB_PRIORITY_FILE_LABEL, Contents, initColor, Position, Mode, Special );
}
void BETABRITE::CancelPriorityTextFile ( void )
{
BeginCommand ( );
BeginNestedCommand ( );
print ( BB_CC_WTEXT );
print ( BB_PRIORITY_FILE_LABEL );
EndCommand ( );
}
void BETABRITE::WriteStringFile ( const char Name, const char *Contents )
{
BeginCommand ( );
BeginNestedCommand ( );
WriteStringFileNested ( Name, Contents );
EndCommand ( );
}
void BETABRITE::WriteStringFileNested ( const char Name, const char *Contents )
{
print ( BB_CC_WSTRING );
print ( Name );
print ( (char *)Contents );
}
void BETABRITE::SetMemoryConfiguration ( const char startingFile, unsigned int numFiles, unsigned int size )
{
BeginCommand ( );
BeginNestedCommand ( );
print ( BB_CC_WSPFUNC );
print ( BB_SFL_CLEARMEM );
char sizeBuf[5] = "0100";
if (size <= 0xffff)
{
sprintf(sizeBuf, "%04x", size);
}
for (char c = startingFile; c < startingFile + numFiles; c++)
{
print ( c );
print ( BB_SFFT_TEXT );
print ( BB_SFKPS_LOCKED );
print ( sizeBuf );
print ( "FF00" ); // AlwaysOn for text file
}
EndCommand ( );
}
void BETABRITE::BeginCommand ( void )
{
Sync ( ); print ( BB_SOH ); print ( _type ); print ( _address[0] ); print ( _address[1] );
}
void BETABRITE::BeginNestedCommand ( void )
{
print ( BB_STX );
}
void BETABRITE::EndCommand ( void )
{
print ( BB_EOT );
}
void BETABRITE::EndNestedCommand ( void )
{
print ( BB_ETX );
}
void BETABRITE::DelayBetweenCommands ( void )
{
delay ( BB_BETWEEN_COMMAND_DELAY );
}
#ifdef DATEFUNCTIONS
void BETABRITE::SetDateTime ( DateTime now, bool UseMilitaryTime )
{
char dow, strbuff[3];
uint8_t hour, minute, month, day;
uint16_t year;
dow = now.dayOfWeek ( );
dow += '1';
hour = now.hour ( );
minute = now.minute ( );
month = now.month ( );
day = now.day ( );
year = now.year ( );
BeginCommand ( );
BeginNestedCommand ( );
DelayBetweenCommands ( );
print ( BB_CC_WSPFUNC );
print ( ' ' );
if ( hour <= 9 )
{
print ( '0' );
}
itoa ( hour, strbuff, 10 );
print ( strbuff );
if ( minute <= 9 )
{
print ( '0' );
}
itoa ( minute, strbuff, 10 );
print ( strbuff );
EndNestedCommand ( );
BeginNestedCommand ( );
DelayBetweenCommands ( );
print ( BB_CC_WSPFUNC );
print ( '\047' );
print ( UseMilitaryTime ? 'M' : 'S' );
EndNestedCommand ( );
BeginNestedCommand ( );
DelayBetweenCommands ( );
print ( BB_CC_WSPFUNC );
print ( '&' );
print ( dow );
EndNestedCommand ( );
BeginNestedCommand ( );
DelayBetweenCommands ( );
print ( BB_CC_WSPFUNC );
print ( ';' );
if ( month <= 9 )
{
print ( '0' );
}
itoa ( month, strbuff, 10 );
print ( strbuff );
if ( day <= 9 )
{
print ( '0' );
}
itoa ( day, strbuff, 10 );
print ( strbuff );
if ( year < 2000 ) print ( "00" );
else
{
year -= 2000;
if ( year <= 9 )
{
print ( '0' );
}
itoa ( year, strbuff, 10 ); // 2 digits for the foreseeable future, and positive
print ( strbuff );
}
EndNestedCommand ( );
EndCommand ( );
}
#endif
void BETABRITE::Sync ( void )
{
for ( char i=0;i<5;i++ ) print ( BB_NUL );
}