mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
77 lines
1.5 KiB
C++
77 lines
1.5 KiB
C++
#include "display.h"
|
|
#include "imu.h"
|
|
#include "ambient.h"
|
|
#include "network.h"
|
|
#include "sd_card.h"
|
|
#include "rgb_led.h"
|
|
#include "lv_port_indev.h"
|
|
#include "lv_port_fatfs.h"
|
|
#include "lv_cubic_gui.h"
|
|
#include "gui_guider.h"
|
|
|
|
/*** Component objects ***/
|
|
Display screen;
|
|
IMU mpu;
|
|
Pixel rgb;
|
|
SdCard tf;
|
|
Network wifi;
|
|
|
|
lv_ui guider_ui;
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
|
|
/*** Init screen ***/
|
|
screen.init();
|
|
screen.setBackLight(0.2);
|
|
|
|
/*** Init IMU as input device ***/
|
|
lv_port_indev_init();
|
|
mpu.init();
|
|
|
|
/*** Init on-board RGB ***/
|
|
rgb.init();
|
|
rgb.setBrightness(0.1).setRGB(0, 0, 122, 204).setRGB(1, 0, 122, 204);
|
|
|
|
/*** Init micro SD-Card ***/
|
|
tf.init();
|
|
lv_fs_if_init();
|
|
|
|
String ssid = tf.readFileLine("/wifi.txt", 1); // line-1 for WiFi ssid
|
|
String password = tf.readFileLine("/wifi.txt", 2); // line-2 for WiFi password
|
|
|
|
/*** Inflate GUI objects ***/
|
|
//lv_holo_cubic_gui();
|
|
setup_ui(&guider_ui);
|
|
|
|
/*** Read WiFi info from SD-Card, then scan & connect WiFi ***/
|
|
#if 0
|
|
wifi.init(ssid, password);
|
|
|
|
// Change to your BiliBili UID ¡ý
|
|
Serial.println(wifi.getBilibiliFans("20259914"));
|
|
#endif
|
|
}
|
|
|
|
int frame_id = 0;
|
|
char buf[100];
|
|
|
|
void loop()
|
|
{
|
|
// run this as often as possible ¡ý
|
|
screen.routine();
|
|
|
|
// 200 means update IMU data every 200ms
|
|
mpu.update(200);
|
|
|
|
int len = sprintf(buf, "S:/Scenes/Holo3D/frame%03d.bin", frame_id++);
|
|
buf[len] = 0;
|
|
lv_img_set_src(guider_ui.scenes_canvas, buf);
|
|
Serial.println(buf);
|
|
|
|
if (frame_id == 138) frame_id = 0;
|
|
|
|
//delay(10);
|
|
}
|