You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kempt-kinkajou-2023/cybergarden-sensor/lib/TransmitterModule/TransmitterModule.h

32 lines
626 B

//
// Created by o.likhogub on 10/7/2023.
//
#include "Arduino.h"
#include <RH_ASK.h>
#include <SPI.h>
#ifndef KEMPT_KINKAJOU_TRANSMITTERMODULE_H
#define KEMPT_KINKAJOU_TRANSMITTERMODULE_H
#define RH_TRANSMIT_PIN 4
#define RH_RECEIVE_PIN 5
class TransmitterModule {
private:
RH_ASK *rhAsk;
public:
TransmitterModule() {
rhAsk = new RH_ASK(2000, RH_RECEIVE_PIN, RH_TRANSMIT_PIN);
}
bool init() {
return rhAsk->init();
}
void send(uint8_t * data, int length) {
rhAsk->send(data, length);
rhAsk->waitPacketSent();
}
};
#endif //KEMPT_KINKAJOU_TRANSMITTERMODULE_H