ATtinySerialOut icon indicating copy to clipboard operation
ATtinySerialOut copied to clipboard

ATTiny88 + TX on PIN_PC1 not working for me :(

Open eNovware opened this issue 1 year ago • 0 comments

Cannot getting it working on ATtiny88@8MHz(internal) + ATTinyCore 1.5.2 I must do something wrong, here is my code :

#include <Arduino.h> // required for main()
#define TX_PIN PIN_PC1
#include "ATtinySerialOut.hpp"

void setup()
{
      initTXPin();
}

void loop()
{
      writeString("TEST\n");
      delay(1000);
}

Thanks.

eNovware avatar May 02 '24 13:05 eNovware