BUSY WWW
Get it on Google Play
www.busywww.com


  M5STACK ATOM LITE (ESP32 PICO)

Smaller(est) Remote Controller, less than a size of coin. See demo video bellow.
Codes are available for downloading bellow.

Control remote bluetooth camera (M5Stack versions) from Camera Remote Bluetooth android app.
No extra parts are required to run and control remote camera, just need M5Stack Atom Lite and Android app. Program the Atom Lite and run the android app.
(Codes are released at Feb. 2022).
Color Display (ST7789 TFT) with Extra Buttons version available.

1
2
3
4



1
2



1
2
3
4
5
6
7
8

  SCHEMATIC

camera remote bluetooth iot camera remote bluetooth iot
  CODES DOWNLOAD

M5Stack Atom Lite Ver. 2 (ESP32 Pico, ST7789 TFT Color Display, Modualized Sample)
M5AtomLiteBasicColorDisplayV2.zip

M5Stack Atom Lite (ESP32 Pico, ST7789 TFT Color Display)
M5AtomLiteBasicColorDisplay.zip

M5Stack Atom Lite (ESP32 Pico, One Button Version)
M5AtomLiteBasic.zip

LIBRARIES
  • See codes.


**** For programming M5Stack Atom Lite, 
please follow the instruction of product documents.


https://docs.m5stack.com/en/core/atom_lite

**** If code compiling is having error, 
modify these lines from source codes which are located in the Arduino Libraries folder.


In M5Atom.cpp, replace this line:
   Wire.begin(25, 21, 100000);
with (note the U at the end):
   Wire.begin(25, 21, 100000U);

In MPU6886.cpp, replace this line:
   Wire.begin(25, 21, 100000);
with (note the U at the end):
   Wire.begin(25, 21, 100000U);
home