TR-mbed 1.0
Loading...
Searching...
No Matches
ref_ui.h
Go to the documentation of this file.
1#ifndef _REF_UI_HPP
2#define _REF_UI_HPP
3
4#include "mbed.h"
5#include "ref_serial.h"
6#include <string>
7
8// Screen resolution of your Robomaster Client
9#define SCREEN_LENGTH 1920
10#define SCREEN_WIDTH 1080
11
12// Draw text on the UI
13void ui_graph_characters(BufferedSerial* serial, int operation_type, string str, int x, int y, char name);
14
15// Delete a layer of UI drawing
16void ui_delete_layer(BufferedSerial* serial, int layer);
17
18#endif
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Definition gnuplot_common_settings.hh:12
Scalar * y
Definition level1_cplx_impl.h:124
void ui_graph_characters(BufferedSerial *serial, int operation_type, string str, int x, int y, char name)
Definition ref_ui.cpp:3
void ui_delete_layer(BufferedSerial *serial, int layer)
Definition ref_ui.cpp:32