2019-08-02 21:48:36 +00:00
|
|
|
#include "controller.h"
|
2019-08-06 18:50:11 +00:00
|
|
|
#include "spi_master.h"
|
2019-08-02 21:48:36 +00:00
|
|
|
|
2019-08-06 18:50:11 +00:00
|
|
|
Controller::Controller(Player* p) {
|
|
|
|
_player = p;
|
|
|
|
_rfid = new MFRC522(PIN_RC522_CS, MFRC522::UNUSED_PIN);
|
|
|
|
|
|
|
|
SPIMaster::enable(PIN_RC522_CS);
|
2019-08-09 04:27:33 +00:00
|
|
|
DEBUG("Initializing RC522...");
|
2019-08-06 18:50:11 +00:00
|
|
|
_rfid->PCD_Init();
|
2019-08-09 04:27:33 +00:00
|
|
|
#ifdef SHOW_DEBUG
|
|
|
|
_rfid->PCD_DumpVersionToSerial();
|
|
|
|
#endif
|
2019-08-06 18:50:11 +00:00
|
|
|
SPIMaster::disable();
|
2019-08-09 04:27:33 +00:00
|
|
|
INFO("RC522 initialized.\n");
|
2019-08-02 21:48:36 +00:00
|
|
|
}
|
|
|
|
|
2019-08-06 18:50:11 +00:00
|
|
|
void Controller::loop() {
|
2019-08-08 03:31:27 +00:00
|
|
|
unsigned long now = millis();
|
|
|
|
if ((_last_rfid_scan_at < now - RFID_SCAN_INTERVAL) || (now < _last_rfid_scan_at)) {
|
|
|
|
_check_rfid();
|
|
|
|
_last_rfid_scan_at = now;
|
|
|
|
}
|
2019-08-06 18:50:11 +00:00
|
|
|
_check_serial();
|
2019-08-02 21:48:36 +00:00
|
|
|
}
|
|
|
|
|
2019-08-08 04:49:35 +00:00
|
|
|
uint32_t Controller::_get_rfid_card_uid() {
|
2019-08-06 18:50:11 +00:00
|
|
|
SPIMaster::enable(PIN_RC522_CS);
|
|
|
|
if (!_rfid->PICC_ReadCardSerial()) {
|
2019-08-08 04:49:35 +00:00
|
|
|
if (!_rfid->PICC_IsNewCardPresent()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!_rfid->PICC_ReadCardSerial()) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-08-06 18:50:11 +00:00
|
|
|
}
|
2019-08-08 04:49:35 +00:00
|
|
|
uint32_t uid = _rfid->uid.uidByte[0]<<24 | _rfid->uid.uidByte[1]<<16 | _rfid->uid.uidByte[2]<<8 | _rfid->uid.uidByte[3];
|
2019-08-06 18:50:11 +00:00
|
|
|
SPIMaster::disable();
|
2019-08-08 04:49:35 +00:00
|
|
|
return uid;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Controller::_check_rfid() {
|
|
|
|
uint32_t uid = _get_rfid_card_uid();
|
|
|
|
if (uid != _last_rfid_card_uid) {
|
2019-08-09 04:27:33 +00:00
|
|
|
if (uid > 0) {
|
|
|
|
INFO("New RFID card uid: %08x\n", uid);
|
|
|
|
String s_uid = String(uid, HEX);
|
|
|
|
_player->play_album(s_uid);
|
|
|
|
} else {
|
|
|
|
INFO("No more RFID card.");
|
|
|
|
_player->stop();
|
|
|
|
}
|
|
|
|
_last_rfid_card_uid = uid;
|
2019-08-08 04:49:35 +00:00
|
|
|
}
|
2019-08-02 21:48:36 +00:00
|
|
|
}
|
|
|
|
|
2019-08-06 18:50:11 +00:00
|
|
|
void Controller::_check_serial() {
|
|
|
|
if (Serial.available() > 0) {
|
|
|
|
char c = Serial.read();
|
2019-08-09 04:27:33 +00:00
|
|
|
Serial.printf("%c", c);
|
|
|
|
if (c==10 || c==13) {
|
|
|
|
if (_serial_buffer.length()>0) {
|
|
|
|
_execute_serial_command(_serial_buffer);
|
|
|
|
_serial_buffer = String();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_serial_buffer.concat(c);
|
2019-08-06 18:50:11 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-02 21:48:36 +00:00
|
|
|
}
|
2019-08-09 04:27:33 +00:00
|
|
|
|
|
|
|
void Controller::_execute_serial_command(String cmd) {
|
|
|
|
DEBUG("Executing command: %s", cmd.c_str());
|
|
|
|
|
|
|
|
if (cmd.equals("ls")) {
|
|
|
|
_execute_command_ls("/");
|
|
|
|
} else if (cmd.startsWith("ls ")) {
|
|
|
|
_execute_command_ls(cmd.substring(3));
|
|
|
|
} else if (cmd.startsWith("play ")) {
|
|
|
|
_player->play_album(cmd.substring(5));
|
|
|
|
} else if (cmd.startsWith("sys ")) {
|
|
|
|
_player->play_system_sound(cmd.substring(4));
|
|
|
|
} else if (cmd.equals("stop")) {
|
|
|
|
_player->stop();
|
|
|
|
} else if (cmd.equals("help")) {
|
|
|
|
_execute_command_help();
|
|
|
|
} else if (cmd.equals("-")) {
|
|
|
|
_player->vol_down();
|
|
|
|
} else if (cmd.equals("+")) {
|
|
|
|
_player->vol_up();
|
|
|
|
} else if (cmd.equals("p")) {
|
|
|
|
_player->track_prev();
|
|
|
|
} else if (cmd.equals("n")) {
|
|
|
|
_player->track_next();
|
|
|
|
} else {
|
|
|
|
ERROR("Unknown command: %s\n", cmd.c_str());
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Controller::_execute_command_ls(String path) {
|
|
|
|
INFO("Listing contents of %s:\n", path.c_str());
|
|
|
|
std::list<String> files = _player->ls(path);
|
|
|
|
for(std::list<String>::iterator it=files.begin(); it!=files.end(); it++) {
|
|
|
|
INFO(" %s\n", (*it).c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Controller::_execute_command_help() {
|
|
|
|
INFO("Valid commands are:");
|
|
|
|
INFO(" help - Displays this help\n");
|
|
|
|
INFO(" ls [dir] - Lists the contents of [dir] or, if not given, of /\n");
|
|
|
|
INFO(" play [id] - Plays the album with the given id\n");
|
|
|
|
INFO(" sys [file]- Plays the file as system sound\n");
|
|
|
|
INFO(" stop - Stops playback\n");
|
|
|
|
INFO(" - / + - Decrease or increase the volume\n");
|
|
|
|
INFO(" p / n - Previous or next track\n");
|
|
|
|
}
|