-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathSparkFunSX1509.cpp
860 lines (734 loc) · 23.4 KB
/
SparkFunSX1509.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
/******************************************************************************
SparkFunSX1509.cpp
SparkFun SX1509 I/O Expander Library Source File
Jim Lindblom @ SparkFun Electronics
Original Creation Date: September 21, 2015
https://github.com/sparkfun/SparkFun_SX1509_Arduino_Library
Here you'll find the Arduino code used to interface with the SX1509 I2C
16 I/O expander. There are functions to take advantage of everything the
SX1509 provides - input/output setting, writing pins high/low, reading
the input value of pins, LED driver utilities (blink, breath, pwm), and
keypad engine utilites.
Development environment specifics:
IDE: Arduino 1.6.5
Hardware Platform: Arduino Uno
SX1509 Breakout Version: v2.0
This code is beerware; if you see me (or any other SparkFun employee) at the
local, and you've found our code helpful, please buy us a round!
Distributed as-is; no warranty is given.
******************************************************************************/
#include <Wire.h>
#include "Arduino.h"
#include "SparkFunSX1509.h"
#include "util/sx1509_registers.h"
SX1509::SX1509()
{
_clkX = 0;
}
SX1509::SX1509(uint8_t address, uint8_t resetPin, uint8_t interruptPin, uint8_t oscillatorPin)
{
// Store the received parameters into member variables
deviceAddress = address;
pinInterrupt = interruptPin;
pinOscillator = oscillatorPin;
pinReset = resetPin;
}
uint8_t SX1509::begin(uint8_t address, TwoWire &wirePort, uint8_t resetPin)
{
// Store the received parameters into member variables
_i2cPort = &wirePort;
deviceAddress = address;
pinReset = resetPin;
return init();
}
uint8_t SX1509::init(void)
{
// Begin I2C should be done externally, before beginning SX1509
//Wire.begin();
// If the reset pin is connected
if (pinReset != 255)
reset(1);
else
reset(0);
// Communication test. We'll read from two registers with different
// default values to verify communication.
uint16_t testRegisters = 0;
testRegisters = readWord(REG_INTERRUPT_MASK_A); // This should return 0xFF00
// Then read a byte that should be 0x00
if (testRegisters == 0xFF00)
{
// Set the clock to a default of 2MHz using internal
clock(INTERNAL_CLOCK_2MHZ);
return 1;
}
return 0;
}
void SX1509::reset(bool hardware)
{
// if hardware bool is set
if (hardware)
{
// Check if bit 2 of REG_MISC is set
// if so nReset will not issue a POR, we'll need to clear that bit first
uint8_t regMisc = readByte(REG_MISC);
if (regMisc & (1 << 2))
{
regMisc &= ~(1 << 2);
writeByte(REG_MISC, regMisc);
}
// Reset the SX1509, the pin is active low
::pinMode(pinReset, OUTPUT); // set reset pin as output
::digitalWrite(pinReset, LOW); // pull reset pin low
delay(1); // Wait for the pin to settle
::digitalWrite(pinReset, HIGH); // pull reset pin back high
}
else
{
// Software reset command sequence:
writeByte(REG_RESET, 0x12);
writeByte(REG_RESET, 0x34);
}
}
void SX1509::pinDir(uint8_t pin, uint8_t inOut, uint8_t initialLevel)
{
// The SX1509 RegDir registers: REG_DIR_B, REG_DIR_A
// 0: IO is configured as an output
// 1: IO is configured as an input
uint8_t modeBit;
if ((inOut == OUTPUT) || (inOut == ANALOG_OUTPUT))
{
uint16_t tempRegData = readWord(REG_DATA_B);
if (initialLevel == LOW)
{
tempRegData &= ~(1 << pin);
writeWord(REG_DATA_B, tempRegData);
}
modeBit = 0;
}
else
{
modeBit = 1;
}
uint16_t tempRegDir = readWord(REG_DIR_B);
if (modeBit)
tempRegDir |= (1 << pin);
else
tempRegDir &= ~(1 << pin);
writeWord(REG_DIR_B, tempRegDir);
// If INPUT_PULLUP was called, set up the pullup too:
if (inOut == INPUT_PULLUP)
writePin(pin, HIGH);
if (inOut == ANALOG_OUTPUT)
{
ledDriverInit(pin);
}
}
void SX1509::pinMode(uint8_t pin, uint8_t inOut, uint8_t initialLevel)
{
pinDir(pin, inOut, initialLevel);
}
bool SX1509::writePin(uint8_t pin, uint8_t highLow)
{
uint16_t tempRegDir = readWord(REG_DIR_B);
if ((0xFFFF ^ tempRegDir) & (1 << pin)) // If the pin is an output, write high/low
{
uint16_t tempRegData = readWord(REG_DATA_B);
if (highLow)
tempRegData |= (1 << pin);
else
tempRegData &= ~(1 << pin);
return writeWord(REG_DATA_B, tempRegData);
}
else // Otherwise the pin is an input, pull-up/down
{
uint16_t tempPullUp = readWord(REG_PULL_UP_B);
uint16_t tempPullDown = readWord(REG_PULL_DOWN_B);
if (highLow) // if HIGH, do pull-up, disable pull-down
{
tempPullUp |= (1 << pin);
tempPullDown &= ~(1 << pin);
return writeWord(REG_PULL_UP_B, tempPullUp) && writeWord(REG_PULL_DOWN_B, tempPullDown);
}
else // If LOW do pull-down, disable pull-up
{
tempPullDown |= (1 << pin);
tempPullUp &= ~(1 << pin);
return writeWord(REG_PULL_UP_B, tempPullUp) && writeWord(REG_PULL_DOWN_B, tempPullDown);
}
}
}
bool SX1509::digitalWrite(uint8_t pin, uint8_t highLow)
{
return writePin(pin, highLow);
}
uint8_t SX1509::readPin(uint8_t pin)
{
uint16_t tempRegDir = readWord(REG_DIR_B);
if (tempRegDir & (1 << pin)) // If the pin is an input
{
uint16_t tempRegData = readWord(REG_DATA_B);
if (tempRegData & (1 << pin))
return 1;
}
else
{
// log_d("Pin %d not INPUT, REG_DIR_B: %d", pin, tempRegDir);
}
return 0;
}
bool SX1509::readPin(const uint8_t pin, bool *value)
{
uint16_t tempRegDir;
if (readWord(REG_DIR_B, &tempRegDir))
{
if (tempRegDir & (1 << pin))
{ // If the pin is an input
uint16_t tempRegData;
if (readWord(REG_DATA_B, &tempRegData))
{
*value = (tempRegData & (1 << pin)) != 0;
return true;
};
}
else
{
*value = false;
return true;
}
}
return false;
}
uint8_t SX1509::digitalRead(uint8_t pin)
{
return readPin(pin);
}
bool SX1509::digitalRead(uint8_t pin, bool *value)
{
return readPin(pin, value);
}
void SX1509::ledDriverInit(uint8_t pin, uint8_t freq /*= 1*/, bool log /*= false*/)
{
uint16_t tempWord;
uint8_t tempByte;
// Disable input buffer
// Writing a 1 to the pin bit will disable that pins input buffer
tempWord = readWord(REG_INPUT_DISABLE_B);
tempWord |= (1 << pin);
writeWord(REG_INPUT_DISABLE_B, tempWord);
// Disable pull-up
// Writing a 0 to the pin bit will disable that pull-up resistor
tempWord = readWord(REG_PULL_UP_B);
tempWord &= ~(1 << pin);
writeWord(REG_PULL_UP_B, tempWord);
// Set direction to output (REG_DIR_B)
tempWord = readWord(REG_DIR_B);
tempWord &= ~(1 << pin); // 0=output
writeWord(REG_DIR_B, tempWord);
// Enable oscillator (REG_CLOCK)
tempByte = readByte(REG_CLOCK);
tempByte |= (1 << 6); // Internal 2MHz oscillator part 1 (set bit 6)
tempByte &= ~(1 << 5); // Internal 2MHz oscillator part 2 (clear bit 5)
writeByte(REG_CLOCK, tempByte);
// Configure LED driver clock and mode (REG_MISC)
tempByte = readByte(REG_MISC);
if (log)
{
tempByte |= (1 << 7); // set logarithmic mode bank B
tempByte |= (1 << 3); // set logarithmic mode bank A
}
else
{
tempByte &= ~(1 << 7); // set linear mode bank B
tempByte &= ~(1 << 3); // set linear mode bank A
}
// Use configClock to setup the clock divder
if (_clkX == 0) // Make clckX non-zero
{
// _clkX = 2000000.0 / (1 << (1 - 1)); // Update private clock variable
_clkX = 2000000.0;
// uint8_t freq = (1 & 0x07) << 4; // freq should only be 3 bits from 6:4
// tempByte |= freq;
}
freq = (freq & 0x7) << 4; // mask only 3 bits and shift to bit position 6:4
tempByte |= freq;
writeByte(REG_MISC, tempByte);
// Enable LED driver operation (REG_LED_DRIVER_ENABLE)
tempWord = readWord(REG_LED_DRIVER_ENABLE_B);
tempWord |= (1 << pin);
writeWord(REG_LED_DRIVER_ENABLE_B, tempWord);
// Set REG_DATA bit low ~ LED driver started
tempWord = readWord(REG_DATA_B);
tempWord &= ~(1 << pin);
writeWord(REG_DATA_B, tempWord);
}
void SX1509::pwm(uint8_t pin, uint8_t iOn)
{
// Write the on intensity of pin
// Linear mode: Ion = iOn
// Log mode: Ion = f(iOn)
writeByte(REG_I_ON[pin], iOn);
}
void SX1509::analogWrite(uint8_t pin, uint8_t iOn)
{
pwm(pin, iOn);
}
void SX1509::blink(uint8_t pin, unsigned long tOn, unsigned long tOff, uint8_t onIntensity, uint8_t offIntensity)
{
uint8_t onReg = calculateLEDTRegister(tOn);
uint8_t offReg = calculateLEDTRegister(tOff);
setupBlink(pin, onReg, offReg, onIntensity, offIntensity, 0, 0);
}
void SX1509::breathe(uint8_t pin, unsigned long tOn, unsigned long tOff, unsigned long rise, unsigned long fall, uint8_t onInt, uint8_t offInt, bool log)
{
offInt = constrain(offInt, 0, 7);
uint8_t onReg = calculateLEDTRegister(tOn);
uint8_t offReg = calculateLEDTRegister(tOff);
uint8_t riseTime = calculateSlopeRegister(rise, onInt, offInt);
uint8_t fallTime = calculateSlopeRegister(fall, onInt, offInt);
setupBlink(pin, onReg, offReg, onInt, offInt, riseTime, fallTime, log);
}
void SX1509::setupBlink(uint8_t pin, uint8_t tOn, uint8_t tOff, uint8_t onIntensity, uint8_t offIntensity, uint8_t tRise, uint8_t tFall, bool log)
{
ledDriverInit(pin, log);
// Keep parameters within their limits:
tOn &= 0x1F; // tOn should be a 5-bit value
tOff &= 0x1F; // tOff should be a 5-bit value
offIntensity &= 0x07;
// Write the time on
// 1-15: TON = 64 * tOn * (255/ClkX)
// 16-31: TON = 512 * tOn * (255/ClkX)
writeByte(REG_T_ON[pin], tOn);
// Write the time/intensity off register
// 1-15: TOFF = 64 * tOff * (255/ClkX)
// 16-31: TOFF = 512 * tOff * (255/ClkX)
// linear Mode - IOff = 4 * offIntensity
// log mode - Ioff = f(4 * offIntensity)
writeByte(REG_OFF[pin], (tOff << 3) | offIntensity);
// Write the on intensity:
writeByte(REG_I_ON[pin], onIntensity);
// Prepare tRise and tFall
tRise &= 0x1F; // tRise is a 5-bit value
tFall &= 0x1F; // tFall is a 5-bit value
// Write regTRise
// 0: Off
// 1-15: TRise = (regIOn - (4 * offIntensity)) * tRise * (255/ClkX)
// 16-31: TRise = 16 * (regIOn - (4 * offIntensity)) * tRise * (255/ClkX)
if (REG_T_RISE[pin] != 0xFF)
writeByte(REG_T_RISE[pin], tRise);
// Write regTFall
// 0: off
// 1-15: TFall = (regIOn - (4 * offIntensity)) * tFall * (255/ClkX)
// 16-31: TFall = 16 * (regIOn - (4 * offIntensity)) * tFall * (255/ClkX)
if (REG_T_FALL[pin] != 0xFF)
writeByte(REG_T_FALL[pin], tFall);
}
void SX1509::keypad(uint8_t rows, uint8_t columns, uint16_t sleepTime, uint8_t scanTime, uint8_t debounceTime)
{
uint16_t tempWord;
uint8_t tempByte;
// If clock hasn't been set up, set it to internal 2MHz
if (_clkX == 0)
clock(INTERNAL_CLOCK_2MHZ);
// Set regDir 0:7 outputs, 8:15 inputs:
tempWord = readWord(REG_DIR_B);
for (uint8_t i = 0; i < rows; i++)
tempWord &= ~(1 << i);
for (uint8_t i = 8; i < (columns * 2); i++)
tempWord |= (1 << i);
writeWord(REG_DIR_B, tempWord);
// Set regOpenDrain on 0:7:
tempByte = readByte(REG_OPEN_DRAIN_A);
for (uint8_t i = 0; i < rows; i++)
tempByte |= (1 << i);
writeByte(REG_OPEN_DRAIN_A, tempByte);
// Set regPullUp on 8:15:
tempByte = readByte(REG_PULL_UP_B);
for (uint8_t i = 0; i < columns; i++)
tempByte |= (1 << i);
writeByte(REG_PULL_UP_B, tempByte);
// Debounce Time must be less than scan time
debounceTime = constrain(debounceTime, 1, 64);
scanTime = constrain(scanTime, 1, 128);
if (debounceTime >= scanTime)
{
debounceTime = scanTime >> 1; // Force debounceTime to be less than scanTime
}
debounceKeypad(debounceTime, rows, columns);
// Calculate scanTimeBits, based on scanTime
uint8_t scanTimeBits = 0;
for (uint8_t i = 7; i > 0; i--)
{
if (scanTime & (1 << i))
{
scanTimeBits = i;
break;
}
}
// Calculate sleepTimeBits, based on sleepTime
uint8_t sleepTimeBits = 0;
if (sleepTime != 0)
{
for (uint8_t i = 7; i > 0; i--)
{
if (sleepTime & ((uint16_t)1 << (i + 6)))
{
sleepTimeBits = i;
break;
}
}
// If sleepTime was non-zero, but less than 128,
// assume we wanted to turn sleep on, set it to minimum:
if (sleepTimeBits == 0)
sleepTimeBits = 1;
}
// RegKeyConfig1 sets the auto sleep time and scan time per row
sleepTimeBits = (sleepTimeBits & 0b111) << 4;
scanTimeBits &= 0b111; // Scan time is bits 2:0
tempByte = sleepTime | scanTimeBits;
writeByte(REG_KEY_CONFIG_1, tempByte);
// RegKeyConfig2 tells the SX1509 how many rows and columns we've got going
rows = (rows - 1) & 0b111; // 0 = off, 0b001 = 2 rows, 0b111 = 8 rows, etc.
columns = (columns - 1) & 0b111; // 0b000 = 1 column, ob111 = 8 columns, etc.
writeByte(REG_KEY_CONFIG_2, (rows << 3) | columns);
}
uint16_t SX1509::readKeypad()
{
return readKeyData();
}
uint16_t SX1509::readKeyData()
{
return (0xFFFF ^ readWord(REG_KEY_DATA_1));
}
uint8_t SX1509::getRow(uint16_t keyData)
{
uint8_t rowData = uint8_t(keyData & 0x00FF);
for (uint8_t i = 0; i < 8; i++)
{
if (rowData & (1 << i))
return i;
}
return 0;
}
uint8_t SX1509::getCol(uint16_t keyData)
{
uint8_t colData = uint8_t((keyData & 0xFF00) >> 8);
for (uint8_t i = 0; i < 8; i++)
{
if (colData & (1 << i))
return i;
}
return 0;
}
void SX1509::sync(void)
{
// First check if nReset functionality is set
uint8_t regMisc = readByte(REG_MISC);
if (!(regMisc & 0x04))
{
regMisc |= (1 << 2);
writeByte(REG_MISC, regMisc);
}
// Toggle nReset pin to sync LED timers
::pinMode(pinReset, OUTPUT); // set reset pin as output
::digitalWrite(pinReset, LOW); // pull reset pin low
delay(1); // Wait for the pin to settle
::digitalWrite(pinReset, HIGH); // pull reset pin back high
// Return nReset to POR functionality
writeByte(REG_MISC, (regMisc & ~(1 << 2)));
}
void SX1509::debounceConfig(uint8_t configValue)
{
// First make sure clock is configured
uint8_t tempByte = readByte(REG_MISC);
if ((tempByte & 0x70) == 0)
{
tempByte |= (1 << 4); // Just default to no divider if not set
writeByte(REG_MISC, tempByte);
}
tempByte = readByte(REG_CLOCK);
if ((tempByte & 0x60) == 0)
{
tempByte |= (1 << 6); // default to internal osc.
writeByte(REG_CLOCK, tempByte);
}
configValue &= 0b111; // 3-bit value
writeByte(REG_DEBOUNCE_CONFIG, configValue);
}
void SX1509::debounceTime(uint8_t time)
{
if (_clkX == 0) // If clock hasn't been set up.
clock(INTERNAL_CLOCK_2MHZ, 1); // Set clock to 2MHz.
// Debounce time-to-byte map: (assuming fOsc = 2MHz)
// 0: 0.5ms 1: 1ms
// 2: 2ms 3: 4ms
// 4: 8ms 5: 16ms
// 6: 32ms 7: 64ms
// 2^(n-1)
uint8_t configValue = 0;
// We'll check for the highest set bit position,
// and use that for debounceConfig
for (int8_t i = 7; i >= 0; i--)
{
if (time & (1 << i))
{
configValue = i + 1;
break;
}
}
configValue = constrain(configValue, 0, 7);
debounceConfig(configValue);
}
void SX1509::debounceEnable(uint8_t pin)
{
uint16_t debounceEnable = readWord(REG_DEBOUNCE_ENABLE_B);
debounceEnable |= (1 << pin);
writeWord(REG_DEBOUNCE_ENABLE_B, debounceEnable);
}
void SX1509::debouncePin(uint8_t pin)
{
debounceEnable(pin);
}
void SX1509::debounceKeypad(uint8_t time, uint8_t numRows, uint8_t numCols)
{
// Set up debounce time:
debounceTime(time);
// Set up debounce pins:
for (uint8_t i = 0; i < numRows; i++)
debouncePin(i);
for (uint8_t i = 0; i < (8 + numCols); i++)
debouncePin(i);
}
void SX1509::enableInterrupt(uint8_t pin, uint8_t riseFall)
{
// Set REG_INTERRUPT_MASK
uint16_t tempWord = readWord(REG_INTERRUPT_MASK_B);
tempWord &= ~(1 << pin); // 0 = event on IO will trigger interrupt
writeWord(REG_INTERRUPT_MASK_B, tempWord);
uint8_t sensitivity = 0;
switch (riseFall)
{
case CHANGE:
sensitivity = 0b11;
break;
case FALLING:
sensitivity = 0b10;
break;
case RISING:
sensitivity = 0b01;
break;
}
// Set REG_SENSE_XXX
// Sensitivity is set as follows:
// 00: None
// 01: Rising
// 10: Falling
// 11: Both
uint8_t pinMask = (pin & 0x07) * 2;
uint8_t senseRegister;
// Need to select between two words. One for bank A, one for B.
if (pin >= 8)
senseRegister = REG_SENSE_HIGH_B;
else
senseRegister = REG_SENSE_HIGH_A;
tempWord = readWord(senseRegister);
tempWord &= ~(0b11 << pinMask); // Mask out the bits we want to write
tempWord |= (sensitivity << pinMask); // Add our new bits
writeWord(senseRegister, tempWord);
}
uint16_t SX1509::interruptSource(bool clear /* =true*/)
{
uint16_t intSource = readWord(REG_INTERRUPT_SOURCE_B);
if (clear)
writeWord(REG_INTERRUPT_SOURCE_B, 0xFFFF); // Clear interrupts
return intSource;
}
bool SX1509::checkInterrupt(uint8_t pin)
{
if (interruptSource(false) & (1 << pin))
return true;
return false;
}
void SX1509::clock(uint8_t oscSource, uint8_t oscDivider, uint8_t oscPinFunction, uint8_t oscFreqOut)
{
configClock(oscSource, oscPinFunction, oscFreqOut, oscDivider);
}
void SX1509::configClock(uint8_t oscSource /*= 2*/, uint8_t oscPinFunction /*= 0*/, uint8_t oscFreqOut /*= 0*/, uint8_t oscDivider /*= 1*/)
{
// RegClock constructed as follows:
// 6:5 - Oscillator frequency souce
// 00: off, 01: external input, 10: internal 2MHz, 1: reserved
// 4 - OSCIO pin function
// 0: input, 1 ouptut
// 3:0 - Frequency of oscout pin
// 0: LOW, 0xF: high, else fOSCOUT = FoSC/(2^(RegClock[3:0]-1))
oscSource = (oscSource & 0b11) << 5; // 2-bit value, bits 6:5
oscPinFunction = (oscPinFunction & 1) << 4; // 1-bit value bit 4
oscFreqOut = (oscFreqOut & 0b1111); // 4-bit value, bits 3:0
uint8_t regClock = oscSource | oscPinFunction | oscFreqOut;
writeByte(REG_CLOCK, regClock);
// Config RegMisc[6:4] with oscDivider
// 0: off, else ClkX = fOSC / (2^(RegMisc[6:4] -1))
oscDivider = constrain(oscDivider, 1, 7);
_clkX = 2000000.0 / (1 << (oscDivider - 1)); // Update private clock variable
oscDivider = (oscDivider & 0b111) << 4; // 3-bit value, bits 6:4
uint8_t regMisc = readByte(REG_MISC);
regMisc &= ~(0b111 << 4);
regMisc |= oscDivider;
writeByte(REG_MISC, regMisc);
}
uint8_t SX1509::calculateLEDTRegister(unsigned long ms)
{
uint8_t regOn1, regOn2;
float timeOn1, timeOn2;
if (_clkX == 0)
return 0;
regOn1 = (float)(ms / 1000.0) / (64.0 * 255.0 / (float)_clkX);
regOn2 = regOn1 / 8;
regOn1 = constrain(regOn1, 1, 15);
regOn2 = constrain(regOn2, 16, 31);
timeOn1 = 64.0 * regOn1 * 255.0 / _clkX * 1000.0;
timeOn2 = 512.0 * regOn2 * 255.0 / _clkX * 1000.0;
if (abs(timeOn1 - ms) < abs(timeOn2 - ms))
return regOn1;
else
return regOn2;
}
uint8_t SX1509::calculateSlopeRegister(unsigned long ms, uint8_t onIntensity, uint8_t offIntensity)
{
uint16_t regSlope1, regSlope2;
float regTime1, regTime2;
if (_clkX == 0)
return 0;
float tFactor = ((float)onIntensity - (4.0 * (float)offIntensity)) * 255.0 / (float)_clkX;
float timeS = float(ms) / 1000.0;
regSlope1 = timeS / tFactor;
regSlope2 = regSlope1 / 16;
regSlope1 = constrain(regSlope1, 1, 15);
regSlope2 = constrain(regSlope2, 16, 31);
regTime1 = regSlope1 * tFactor * 1000.0;
regTime2 = 16 * regTime1;
if (abs(regTime1 - ms) < abs(regTime2 - ms))
return regSlope1;
else
return regSlope2;
}
// readByte(uint8_t registerAddress)
// This function reads a single byte located at the registerAddress register.
// - deviceAddress should already be set by the constructor.
// - Return value is the byte read from registerAddress
// - Currently returns 0 if communication has timed out
uint8_t SX1509::readByte(uint8_t registerAddress)
{
uint8_t readValue;
// Commented the line as variable seems unused;
//uint16_t timeout = RECEIVE_TIMEOUT_VALUE;
_i2cPort->beginTransmission(deviceAddress);
_i2cPort->write(registerAddress);
_i2cPort->endTransmission();
_i2cPort->requestFrom(deviceAddress, (uint8_t)1);
readValue = _i2cPort->read();
return readValue;
}
// readWord(uint8_t registerAddress)
// This function will read a two-byte word beginning at registerAddress
// - A 16-bit uint16_t will be returned.
// - The msb of the return value will contain the value read from registerAddress
// - The lsb of the return value will contain the value read from registerAddress + 1
uint16_t SX1509::readWord(uint8_t registerAddress)
{
uint16_t readValue;
uint16_t msb, lsb;
// Commented the line as variable seems unused;
//uint16_t timeout = RECEIVE_TIMEOUT_VALUE * 2;
_i2cPort->beginTransmission(deviceAddress);
_i2cPort->write(registerAddress);
_i2cPort->endTransmission();
_i2cPort->requestFrom(deviceAddress, (uint8_t)2);
msb = (_i2cPort->read() & 0x00FF) << 8;
lsb = (_i2cPort->read() & 0x00FF);
readValue = msb | lsb;
return readValue;
}
bool SX1509::readByte(uint8_t registerAddress, uint8_t *value)
{
return readBytes(registerAddress, value, 1);
}
// readWord(uint8_t registerAddress)
// This function will read a two-byte word beginning at registerAddress
// - A 16-bit uint16_t will be set in value.
// - The msb of the return value will contain the value read from registerAddress
// - The lsb of the return value will contain the value read from registerAddress + 1
// - Return boolean true if succesfull
bool SX1509::readWord(uint8_t registerAddress, uint16_t *value)
{
uint8_t dest[2];
if (readBytes(registerAddress, dest, 2))
{
*value = dest[1] | dest[0] << 8;
return true;
}
return false;
}
// readBytes(uint8_t firstRegisterAddress, uint8_t * destination, uint8_t length)
// This function reads a series of bytes incrementing from a given address
// - firstRegisterAddress is the first address to be read
// - destination is an array of bytes where the read values will be stored into
// - length is the number of bytes to be read
// - Return boolean true if succesfull
bool SX1509::readBytes(uint8_t firstRegisterAddress, uint8_t *destination, uint8_t length)
{
_i2cPort->beginTransmission(deviceAddress);
_i2cPort->write(firstRegisterAddress);
uint8_t endResult = _i2cPort->endTransmission();
bool result = (endResult == I2C_ERROR_OK) && (_i2cPort->requestFrom(deviceAddress, length) == length);
if (result)
{
for (uint8_t i = 0; i < length; i++)
{
destination[i] = _i2cPort->read();
}
}
return result;
}
// writeByte(uint8_t registerAddress, uint8_t writeValue)
// This function writes a single byte to a single register on the SX509.
// - writeValue is written to registerAddress
// - deviceAddres should already be set from the constructor
// - Return value: true if succeeded, false if failed
bool SX1509::writeByte(uint8_t registerAddress, uint8_t writeValue)
{
_i2cPort->beginTransmission(deviceAddress);
bool result = _i2cPort->write(registerAddress) && _i2cPort->write(writeValue);
uint8_t endResult = _i2cPort->endTransmission();
return result && (endResult == I2C_ERROR_OK);
}
// writeWord(uint8_t registerAddress, uint16_t writeValue)
// This function writes a two-byte word to registerAddress and registerAddress + 1
// - the upper byte of writeValue is written to registerAddress
// - the lower byte of writeValue is written to registerAddress + 1
// - Return value: true if succeeded, false if failed
bool SX1509::writeWord(uint8_t registerAddress, uint16_t writeValue)
{
uint8_t msb, lsb;
msb = ((writeValue & 0xFF00) >> 8);
lsb = (writeValue & 0x00FF);
_i2cPort->beginTransmission(deviceAddress);
bool result = _i2cPort->write(registerAddress) && _i2cPort->write(msb) && _i2cPort->write(lsb);
uint8_t endResult = _i2cPort->endTransmission();
return result && (endResult == I2C_ERROR_OK);
}
// writeBytes(uint8_t firstRegisterAddress, uint8_t * writeArray, uint8_t length)
// This function writes an array of bytes, beggining at a specific adddress
// - firstRegisterAddress is the initial register to be written.
// - All writes following will be at incremental register addresses.
// - writeArray should be an array of byte values to be written.
// - length should be the number of bytes to be written.
// - Return value: true if succeeded, false if failed
bool SX1509::writeBytes(uint8_t firstRegisterAddress, uint8_t *writeArray, uint8_t length)
{
_i2cPort->beginTransmission(deviceAddress);
bool result = _i2cPort->write(firstRegisterAddress);
result = _i2cPort->write(writeArray, length);
uint8_t endResult = _i2cPort->endTransmission();
return result && (endResult == I2C_ERROR_OK);
}