//Code to operate relay through attiny44 microcontroller //Written By Kishore Gaikwad 10-APR-2022 int RelayPin = 7; void setup() { // Set RelayPin as an output pin pinMode(RelayPin, OUTPUT); } void loop() { // Let's turn on the relay... digitalWrite(RelayPin, LOW); delay(500); // Let's turn off the relay... digitalWrite(RelayPin, HIGH); delay(500); }