arduino stuffs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[gd_scene load_steps=4 format=2]

[ext_resource path="res://ConsoleWindow.gd" type="Script" id=1]
[ext_resource path="res://Console.gd" type="Script" id=2]
[ext_resource path="res://theme.theme" type="Theme" id=3]

[node name="ConsoleWindow" type="WindowDialog"]
visible = true
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = 40.0
margin_right = -440.0
margin_bottom = -220.0
rect_min_size = Vector2( 300, 200 )
theme = ExtResource( 3 )
window_title = "Serial Monitor"
resizable = true
script = ExtResource( 1 )

[node name="V" type="VBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_right = -4.0

[node name="Send" type="LineEdit" parent="V"]
margin_right = 288.0
margin_bottom = 40.0
placeholder_text = "input text"
caret_blink = true

[node name="Console" type="RichTextLabel" parent="V"]
margin_top = 44.0
margin_right = 288.0
margin_bottom = 200.0
focus_mode = 2
size_flags_vertical = 3
scroll_following = true
selection_enabled = true
script = ExtResource( 2 )

[connection signal="text_entered" from="V/Send" to="." method="_on_Send_text_entered"]