Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello, In AtomS3 lite, I want to use the exposed G1 G2 pins as a UART in Arduino environment. How can I setup the serial port?
Thanks.
@xgonc
SoftwareSerial mySerial(1, 2); void setup() { mySerial.begin(115200); } void loop() { mySerial.write("Hello world!"); }