I'm not sure why, but I'm getting the following error:
Arduino: 1.6.0 (Mac OS X), Board: "Arduino Pro or Pro Mini, ATmega328 (5V, 16 MHz)"
rtc_ds3234.ino: In function 'void parse_cmd(char*, int)':
rtc_ds3234.ino:113:68: error: cannot convert 'boolean* {aka bool*}' to 'const uint8_t* {aka const unsigned char*}' for argument '6' to 'void DS3234_set_a1(uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, const uint8_t*)'
rtc_ds3234.ino:123:59: error: cannot convert 'boolean* {aka bool*}' to 'const uint8_t* {aka const unsigned char*}' for argument '5' to 'void DS3234_set_a2(uint8_t, uint8_t, uint8_t, uint8_t, const uint8_t*)'
Error compiling.
I'm trying to use the RTC DS3234, and using the library from GitHub - rodan/ds3234: arduino library for DS3234 RTC
I've redownloaded the Arduino IDE, and also this library, but when I try to run any of the examples found in it, (or any code I have from my projects that use the DS3234) it gives me this error.
PS. I've added an example code from the DS3234 library
// during an alarm the INT pin of the RTC is pulled low
//
// this is handy for minimizing power consumption for sensor-like devices,
// since they can be started up by this pin on given time intervals.
#include <SPI.h>
#include "ds3234.h"
#define BUFF_MAX 256
const int cs = 10; // chip select pin
// time when to wake up
uint8_t wake_HOUR = 15;
uint8_t wake_MINUTE = 46;
uint8_t wake_SECOND = 9;
// how often to refresh the info on stdout (ms)
unsigned long prev = 5000, interval = 5000;
void set_alarm(void)
{
// flags define what calendar component to be checked against the current time in order
// to trigger the alarm - see datasheet
// A1M1 (seconds) (0 to enable, 1 to disable)
// A1M2 (minutes) (0 to enable, 1 to disable)
// A1M3 (hour) (0 to enable, 1 to disable)
// A1M4 (day) (0 to enable, 1 to disable)
// DY/DT (dayofweek == 1/dayofmonth == 0)
boolean flags[5] = { 0, 0, 0, 1, 1 };
// set Alarm1
DS3234_set_a1(cs, wake_SECOND, wake_MINUTE, wake_HOUR, 0, flags);
// activate Alarm1
DS3234_set_creg(cs, DS3234_INTCN | DS3234_A1IE);
}
void setup()
{
Serial.begin(9600);
DS3234_init(cs, DS3234_INTCN);
DS3234_clear_a1f(cs);
set_alarm();
}
void loop()
{
char buff[BUFF_MAX];
unsigned long now = millis();
struct ts t;
// once a while show what is going on
if ((now - prev > interval) && (Serial.available() <= 0)) {
DS3234_get(cs, &t);
// display current time
snprintf(buff, BUFF_MAX, "%d.%02d.%02d %02d:%02d:%02d", t.year,
t.mon, t.mday, t.hour, t.min, t.sec);
Serial.println(buff);
// display a1 debug info
DS3234_get_a1(cs, &buff[0], 59);
Serial.println(buff);
if (DS3234_triggered_a1(cs)) {
// INT has been pulled low
Serial.println(" -> alarm1 has been triggered");
// clear a1 alarm flag and let INT go into hi-z
DS3234_clear_a1f(cs);
}
prev = now;
}
}