Compare commits

...

16 Commits

Author SHA1 Message Date
a828f10d8b Upgrade to 1.2 2025-09-18 17:32:31 +02:00
cca9c19c9f Upgrade to 1.2 2025-09-18 17:32:04 +02:00
4802ed0da3 Update to 1.2 2025-09-18 17:32:01 +02:00
f7c1039826 Update Readme.md 2025-09-17 11:08:26 +00:00
f353063a8d Update Readme.md 2025-09-17 11:05:24 +00:00
1606798b21 Update Readme.md 2025-09-17 10:51:29 +00:00
cac25b11c2 Update Readme.md 2025-09-17 10:44:31 +00:00
3d0700752a Update Readme.md 2025-09-17 10:21:19 +00:00
5e22083e38 Update Readme.md 2025-09-17 10:18:32 +00:00
53ee2021dc Update Readme.md 2025-09-17 09:56:41 +00:00
3b9d4b9d89 Fix format 2025-09-16 19:43:10 +02:00
21f31f9664 Fix image display 2025-09-16 19:41:54 +02:00
da149fbe02 Add upload instruction to readme 2025-09-16 19:40:15 +02:00
af8391a286 Add new STL file, update 3 button case, add battery meter functions 2025-09-16 17:26:07 +02:00
5c9f072ed4 Update Readme.md 2025-09-16 10:16:19 +00:00
8667f47e51 Upload files to "hardware/schematics" 2025-09-16 07:23:37 +00:00
16 changed files with 202 additions and 80 deletions

222
Readme.md
View File

@@ -17,78 +17,73 @@ show notifications, display the weather, monitor stuff, show a clock, serve a we
---
## Demo Code Explanation
### Table of Contents
This repository contains a basic "Hello, World!" project for the SmartCube.
### Getting Started:
1. Download and install **[VSCode](https://code.visualstudio.com/)** or **[VSCodium](https://vscodium.com/)**.
2. Install the **[PlatformIO IDE extension](https://platformio.org/platformio-ide)**.
3. Clone this repository and open the project folder in VSCode/VSCodium.
4. PlatformIO will automatically handle environment setup and dependencies when you open the project.
### Project Structure:
All source code is located in the `src/` directory.
You should start by opening **`src/main.cpp`**, which contains the entry point and initialization logic.
### What the Code Does:
This demo handles basic system functionality, including:
* System initialization
* Button input handling
* OLED display output configuration
* WiFi management
### Key Features
1. **WiFi Management**:
- The [cubeWifiManager](https://git.kopic.hr/tomislav/SmartCubeV1/src/branch/main/src/SmartCube/cubeWifiManager.h) class manages WiFi connectivity seamlessly.
- If no known WiFi network is available, it starts a configuration portal and creates an access point (AP), allowing users to connect the SmartCube to a network from another WiFi-enabled device.
- The OLED display shows the access point details, such as the AP name and IP address, making the setup process very easy.
2. **Button Handling**:
- Buttons are mapped to specific GPIO pins: `PIN_BTN_L` (Left), `PIN_BTN_M` (Middle), and `PIN_BTN_R` (Right).
- The [cubeButtonHandler](https://git.kopic.hr/tomislav/SmartCubeV1/src/branch/main/src/SmartCube/cubeButtons.h) function, executed in the [loop()](https://git.kopic.hr/tomislav/SmartCubeV1/src/commit/1cb51f502d92a91c6a83ce6364b434db31bfd864/src/main.cpp#L47), monitors and interprets button presses, differentiating between short and long presses.
#### Default Button Actions
- **Right Button**:
- *Short Press*: Turns the OLED display **on** (if previously off).
- *Long Press*: Turns the OLED display **off**, helping conserve power.
- **Left + Middle Buttons (Simultaneous Long Press)**:
- Triggers an ESP8266 reboot, effectively restarting the device.
This is meant to provide a minimal starting point for further development with the SmartCube.
1. [Bill of Materials](#bill-of-materials)
2. [3D-Printing the Case](#3d-printing-the-case)
3. [Assembly Instructions](#assembly-instructions)
* [Body](#body)
* [Buttons](#buttons)
* [OLED Display](#oled-display)
* [Buzzer](#buzzer)
* [Battery Setup](#battery-setup)
4. [Schematics](#schematics)
5. [GPIO Pin Reference Table](#gpio-pin-reference-table)
6. [Demo Code Explanation](#demo-code-explanation)
* [Getting Started](#getting-started)
* [Uploading with PlatformIO](#uploading-with-platformio)
* [Project Structure](#project-structure)
* [What the Code Does](#what-the-code-does)
* [Key Features](#key-features)
* [WiFi Management](#wifi-management)
* [Button Handling](#button-handling)
* [Default Button Actions](#default-button-actions)
7. [Tips and tricks](#tips-and-tricks)
---
## Bill of Materials
| **Component** | **Quantity** | **Description** | **Notes** |
|---------------------------|--------------|-------------------------------------------|---------------------------------------------|
| ESP8266 D1 Mini | 1 | Microcontroller module | |
| SSD1306 OLED Display | 1 | 128x64 resolution, I2C interface | |
| 14250 Rechargeable Battery| 1 | Lithium-ion battery | Make sure you get the rechargeable type, most 14250 are not |
| TP4056 Module | 1 | Charging and protection circuit | Does not need to have a USB connector |
| 6x6 Push Buttons | 3 or 4 | Tactile push buttons | |
| 20mm Piezo Buzzer | 1 | Caseless buzzer for audio | |
| Resistors (10kΩ) | 3 or 4 | Pull-down resistors for buttons | |
| Resistors (220kΩ and 56kΩ)| 1 | Voltage divider | For monitoring the battery charge level |
|---------------------------|--------------|-------------------------------------------|---------------------------------------------|
| Enclosure | 1 | 3D-printed case | 3D printable STL files are in `hardware/case/` |
| ESP8266 D1 Mini | 1 | Microcontroller module | |
| SSD1306 OLED Display | 1 | 128x64 resolution, I2C interface | |
| 6x6 Push Buttons | 3 or 4 | Tactile push buttons | |
| Resistors (10kΩ) | 3 or 4 | Pull-down resistors for buttons | Generally any resistor between 1kΩ and 100kΩ will work |
| 20mm Piezo Buzzer | 1 | Caseless buzzer for audio | |
| Wires | Several | Thin wires for connections | I used wires from inside an old ethernet cable |
| Enclosure | 1 | 3D-printed case | 3D printable STL files are in `hardware/case/` |
| 2x6mm screw | 8 | Small screws for assembling the case | Does not have to be exactly 6mm long |
| 2x2mm screw | 4 | Small screws for the front | Mostly for cosmetic purposes |
| 2x2mm screw | 4 (Optional) | Small screws for the front | Mostly for cosmetic purposes |
| 14250 Rechargeable Battery| 1 (Optional) | Lithium-ion battery | Make sure it's rechargeable; most 14250 aren't |
| TP4056 Module | 1 (Optional) | Charging and protection circuit | USB connector not required |
| Resistors (220kΩ and 56kΩ)| 1 (Optional) | Voltage divider for measuring battery level | You can also use 100kΩ and 47kΩ |
| Micro Slider Switch (SS-12D00) | 1 (Optional) | On/Off switch | Only needed if installing the battery |
![layout](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/layout.jpg)
---
### 3D-Printing the Case
The SmartCube case is fully 3D-printable. STL files are included this repository in the `/hardware/case/` directory:
| **File** | **Description** |
| ----------------------------------------- | ------------------------------------------- |
| `SmartCube_Body_3_button.stl` | Main cube body with slots for 3 buttons |
| `SmartCube_Body_4_button.stl` | Body variant for 4 buttons |
| `SmartCube_Front.stl` | Front panel for OLED display |
| `SmartCube_Front_No_Holes.stl` | Front panel variant without decorative screw holes |
| `SmartCube_Back_Speaker_Side_Hole.stl` | Back panel |
| `SmartCube_Back_Speaker_Power_Switch.stl` | Back panel variant with power switch slot |
* Use PLA or PETG
* 0.2 mm layer hight is more than enough, you can print finer if you want to.
* Supports may be required depending on your printer
## Assembly Instructions
---
1. **Body**
### Body
Push the ESP8266 microcontroller in the ledge on the bottom [the cube body](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/case/SmartCube_Body_3_button.stl), it should 'click in' with the USB-C port facing the hole.
@@ -102,7 +97,7 @@ Body with 3 or 4 button slots is available in the `hardware/case/`
---
2. **Buttons**
### Buttons
At this step, glue the buttons into the top slots and solder resistors to their outputs. You can connect the resistor outputs together, and don't forget to attach an extra wire to the button inputs, this will later be used to connect them to the 3.3V line.
@@ -122,7 +117,7 @@ Finally, solder the GND wire to the resistor outputs and connect 3.3V to the but
![Step5](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/build5.jpg)
---
3. **OLED Display**
### OLED Display
Screw in the 2x2mm screws and hot glue the SSD1306 to the [front part of the cube](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/case/SmartCube_Front.stl) solder the 4 wires to the OLED display, make sure you have some extra length, 4-5cm should be more than enough
@@ -139,7 +134,7 @@ The OLED display must be connected via I2C on pins:
![Step8](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/build8.jpg)
---
4. **Buzzer**
### Buzzer
Glue in the buzzer to the [back part of the cube](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/case/SmartCube_Back_Speaker_Side_Hole.stl) with superglue
@@ -150,11 +145,14 @@ As defined in the [example config](https://git.kopic.hr/tomislav/SmartCubeV1/src
![Step9](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/build9.jpg)
---
**Battery Setup**
### Battery Setup
The battery is optional. Your SmartCube will work fine when powered via USB; however, adding one makes it portable (and much cuter).
A single 700 mAh 14250 battery lasts about 24 hours. Keep in mind there's currently no way to manually power the Cube off, it will continue running until the battery is depleted. The TP4056 prevents the cell from being completely drained and should protect it from damage.
A single 700 mAh 14250 battery lasts about 24 hours.
The TP4056 prevents the cell from being completely drained and should protect it from damage.
Although it's not shown in any of the pictures or schematics, both the case and the back cover are updated to include a slot for 8.5mm SPDT slider switch(SS-12D00), in case you actually want to have a power switch instead of letting it run until the battery drains.
* Solder the 14250 battery to the **TP4056 input pins**.
* Wire the **TP4056 output** to the **3.3V pin** on the D1 Mini to power the device.
@@ -165,6 +163,8 @@ A single 700 mAh 14250 battery lasts about 24 hours. Keep in mind there's curren
This scales the battery voltage safely down for measurement (~0-0.85V).
As mentioned in the [Bill of Materials](#bill-of-materials) you can also use 100kΩ and 47kΩ resistors, just be sure to edit [example config](https://git.kopic.hr/tomislav/SmartCubeV1/src/branch/main/src/example_config.h)
![batt1](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/batt1.jpg)
![batt2](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/batt2.jpg)
@@ -172,17 +172,103 @@ A single 700 mAh 14250 battery lasts about 24 hours. Keep in mind there's curren
![batt3](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/batt3.jpg)
---
## Schematics
## Notes
This is the basic drawing of the circuit without the battery
- This is still a work in progress
- Everything is pretty tightly packed in there and it's a mess. But it's not as hard to make as it looks.
![Basic](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/schematics/schematic1.png)
This is the complete circuit including the battery and a voltage divider
![WithBattery](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/schematics/schematic3.png)
---
### GPIO Pin Reference Table
| **Component** | **GPIO Pin** | **PlatformIO / Code Macro** |
| ----------------------- | ------------ | --------------------------------- |
| Left Button | D6 (GPIO12) | `PIN_BTN_L` |
| Middle Button | D7 (GPIO13) | `PIN_BTN_M` |
| Right Button | D8 (GPIO15) | `PIN_BTN_R` |
| Buzzer | D3 (GPIO0) | `PIN_BUZZER` |
| OLED SDA | D2 (GPIO4) | `SDA` |
| OLED SCL | D1 (GPIO5) | `SCL` |
| Battery Voltage Divider | A0 | `A0` |
---
## Demo Code Explanation
This repository contains a basic "Hello, World!" project for the SmartCube.
### Getting Started:
1. Download and install **[VSCode](https://code.visualstudio.com/)** or **[VSCodium](https://vscodium.com/)**.
2. Install the **[PlatformIO IDE extension](https://platformio.org/platformio-ide)**.
3. Clone this repository and open the project folder in VSCode/VSCodium.
4. PlatformIO will automatically handle environment setup and dependencies when you open the project.
### Uploading with PlatformIO
Once you open this git repository in VSCode and install the PlatformIO extension.
You can click on the PlatformIO icon on the left sidebar
![platformio1](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/platformio1.png)
In the PlatformIO panel, expand d1_mini_lite → General to reveal the available tasks.
Click Build to compile the firmware, and then click Upload to flash it to your SmartCube.
![platformio2](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/platformio2.png)
### Project Structure:
All source code is located in the `src/` directory.
You should start by opening **`src/main.cpp`**, which contains the entry point and initialization logic.
### What the Code Does:
This demo handles basic system functionality, including:
* System initialization
* Button input handling
* OLED display output configuration
* WiFi management
### Key Features
#### WiFi Management
- The [cubeWifiManager](https://git.kopic.hr/tomislav/SmartCubeV1/src/branch/main/src/SmartCube/cubeWifiManager.h) class manages WiFi connectivity seamlessly.
- If no known WiFi network is available, it starts a configuration portal and creates an access point (AP), allowing users to connect the SmartCube to a network from another WiFi-enabled device.
- The OLED display shows the access point details, such as the AP name and IP address, making the setup process very easy.
#### Button Handling
- Buttons are mapped to specific GPIO pins: `PIN_BTN_L` (Left), `PIN_BTN_M` (Middle), and `PIN_BTN_R` (Right).
- The [cubeButtonHandler](https://git.kopic.hr/tomislav/SmartCubeV1/src/branch/main/src/SmartCube/cubeButtons.h) function, executed in the [loop()](https://git.kopic.hr/tomislav/SmartCubeV1/src/commit/1cb51f502d92a91c6a83ce6364b434db31bfd864/src/main.cpp#L47), monitors and interprets button presses, differentiating between short and long presses.
##### Default Button Actions
- **Right Button**:
- *Long Press*: Turns the OLED display **on** (if previously off).
- **Left + Middle Buttons (Simultaneous Long Press)**:
- Triggers an ESP8266 reboot, effectively restarting the device.
This is meant to provide a minimal starting point for further development with the SmartCube.
---
## Tips and tricks
- It's not as hard to make as it looks.
- Battery is the trickiest part to fit in, it's best to put in the case last.
- Test if everything works before completely closing the case shut.
- Make sure all connections are secure and not short-circuited.
- Hot glue is your friend, it will add extra protection from short-circuits and keep wires in place.
- Everything is pretty tightly packed in there and it can be quite a mess.
![Packed](https://git.kopic.hr/tomislav/SmartCubeV1/raw/branch/main/hardware/pictures/IMG_20241213_171725.jpg)
- Ensure all connections are secure and isolated. Hot glue is your friend.
- Test the circuit thoroughly before placing and gluing it in the enclosure.
- Battery is the trickiest part to fit in, it's best to glue the charging module directly to it and put it in the case last
For questions or additional details, feel free to reach out! I would love to hear some feedback.
Good luck and have fun :)

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 KiB

View File

@@ -0,0 +1,16 @@
#define ADC_PIN A0 // ESP8266 ADC pin
const float ADC_MAX = 1023.0; // 10-bit ADC resolution
const float V_REF = 3.3; // ESP8266 ADC reference voltage
float readBatteryVoltage() {
int rawADC = analogRead(ADC_PIN);
float voltage = (rawADC / ADC_MAX) * V_REF;
return voltage * (R1 + R2) / R2; // Scale to actual battery voltage
}
int batteryPercentage(float voltage) {
if (voltage >= VOLTAGE_MAX) return 100;
if (voltage <= VOLTAGE_MIN) return 0;
return (voltage - VOLTAGE_MIN) * 100 / (VOLTAGE_MAX - VOLTAGE_MIN); // Linear mapping
}

View File

@@ -1,7 +1,7 @@
void interactiveCubeDemo() {
const int cx = SCREEN_WIDTH / 2;
const int cy = SCREEN_HEIGHT / 2;
const int size = 15; // small cube
const int cy = SCREEN_HEIGHT / 2 - 10;
const int size = 14; // small cube
float angle = 0;
float speed = 0.05;
bool rotating = true;
@@ -44,7 +44,7 @@ void interactiveCubeDemo() {
display.setCursor(40, 18);
display.println("version");
display.setCursor(52, 28);
display.println("1.1");
display.println("1.2");
display.drawLine(0, 40, SCREEN_WIDTH, 40, WHITE);
display.setCursor(0, 44);
display.println("by besna_shnita");
@@ -53,6 +53,19 @@ void interactiveCubeDemo() {
} else {
if (rotating) angle += speed;
float voltage = readBatteryVoltage();
int percent = batteryPercentage(voltage);
display.setCursor(0, 55);
display.print("Battery:");
display.setCursor(66, 55);
display.print(voltage, 2);
display.print("V");
display.setCursor(98, 55);
display.print("(");
display.print(percent);
display.print("%");
display.print(")");
float cosA = cos(angle);
float sinA = sin(angle);

View File

@@ -7,5 +7,11 @@
// Buttons and buzzer
#define PIN_BTN_L 12 // D6
#define PIN_BTN_M 13 // D7
#define PIN_BTN_R 15 // D8
#define PIN_BUZZER 0 // D3
#define PIN_BTN_R 14 // D8
#define PIN_BUZZER 0 // D3
// Battery measurement
#define R1 220000.0 // 220k ohms
#define R2 56000.0 // 56k ohms
#define VOLTAGE_MAX 4.2 // Full battery voltage
#define VOLTAGE_MIN 3.0 // Empty battery voltage

View File

@@ -1,10 +1,11 @@
#include "example_config.h" // Include the configuration header file
#include <Arduino.h> // Include the core Arduino library
#include <Adafruit_SSD1306.h> // Include the Adafruit library for the SSD1306 OLED display
#include "SmartCube/cubeSound.h" // Include custom header for sound functions
#include "SmartCube/cubeButtons.h" // Include custom header for button handling functions
#include "SmartCube/cubeWifiManager.h" // Include custom header for managing WiFi connections
#include "SmartCube/cubeDemo.h" // Remove this if not using demo functions
#include "example_config.h" // Include the configuration header file
#include <Arduino.h> // Include the core Arduino library
#include <Adafruit_SSD1306.h> // Include the Adafruit library for the SSD1306 OLED display
#include "SmartCube/cubeSound.h" // Include custom header for sound functions
#include "SmartCube/cubeButtons.h" // Include custom header for button handling functions
#include "SmartCube/cubeWifiManager.h" // Include custom header for managing WiFi connections
#include "SmartCube/cubeBattery.h" // Remove this if not using demo functions
#include "SmartCube/cubeDemo.h" // Remove this if not using demo functions
// Initialize the OLED display with specified width, height, and reset pin
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);