Hello, I have a basic problem with my ATTiny Serial prints.
I am learning and want to basically print something from the Attiny to my arduino Serial Monitor, but i get strange characters displayed whatever baud rate or internal clock i set
Here is my program:
#include <Arduino.h>
#include <SoftwareSerial.h>
const int Rx = PB0;
const int Tx = PB1;
SoftwareSerial mySerial(Rx, Tx);
void setup() {
mySerial.begin(2400);
}
void loop() {
mySerial.println("test");
delay(100);
}
Thank you for your help !


