Hi @aishwarya7 Welcome to the MySensors community!
I am not familar with the attiny13, but from the datasheet it looks like it has too little flash and sram to run MySensors.
Instructions on how to upload sketches to an Arduino is available at https://www.mysensors.org/about/arduino#uploading-example-sketches
See the buying guide for information on which components are recommended when getting started.
Hi. It's long time .. but standard function is : gw.processRadioMessage();
and I make changes in source code in MyGateway.cpp to this :
char MyGateway::processRadioMessage() {
char isMessage=0;
if (process()) {
// A new message was received from one of the sensors
isMessage=1;
MyMessage message = getLastMessage();
if (mGetCommand(message) == C_PRESENTATION && inclusionMode) {
rxBlink(3);
} else {
rxBlink(1);
}
// Pass along the message from sensors to serial line
serial(message);
}
checkButtonTriggeredInclusion();
checkInclusionFinished();
return isMessage;
}
But in new library is not file MyGateway.cpp .. then I don't now ..
using is :
if (gw.processRadioMessage()==1) {..}
regards..
there is possible make easy gateway .. controler .. to control only light for example.. then we don't need external controller .. etc..
BTW you can create an arduino gw and plugin via USB. I must do this 'cause I'm using Zwave.me gateway parallel and with stretch i get an error with both over GPIO.