Skip to main content

WiFi basics

On Inkplate 6MOTION, WiFi is handled by the onboard ESP32 co-processor, these pages contain tutorials on how to use this co-processor to simply connect to WiFi and get and send data.

ℹ️
The hardware details of the ESP32 co-processor can be found in the Hardware section:

ESP32 co-processor hardware details

Hardware details and schematics related to the ESP32 co-processor


Connecting to WiFi

These are the basic steps of connecting to WiFi, followed by the key function explanations:

// Include Inkplate Motion library
#include <InkplateMotion.h>
Inkplate inkplate; // Create Inkplate object
// Change WiFi SSID and password here
#define WIFI_SSID "MyNetwork"
#define WIFI_PASS "pass1234"
void setup()
{
// Initialize Inkplate in black and white mode
inkplate.begin(INKPLATE_BLACKWHITE);

// Set text options
inkplate.setCursor(0, 0);
inkplate.setTextSize(2);
inkplate.setTextColor(BLACK, WHITE);
inkplate.setTextWrap(true);

// Let's initialize the Wi-Fi library:
WiFi.init();

// Set mode to Station
WiFi.setMode(INKPLATE_WIFI_MODE_STA);
// Connect to WiFi:
WiFi.begin(WIFI_SSID, WIFI_PASS);

// Wait until Inkplate is connected connected
inkplate.print("Connecting to Wi-Fi...");
while (!WiFi.connected())
{
inkplate.print('.');
inkplate.partialUpdate(true);
delay(1000);
}
inkplate.println("\nSuccessfully connected to Wi-Fi!");
inkplate.display();
// Inkplate is now connected to WiFi
}
void loop()
{
// Do nothing here
}

WiFi.init()

Initializes the ESP32-C3 module by powering it up, resetting it to factory settings if required, initializing the ESP32, and disabling the storage of settings in NVM. This function must be called before doing anything else with WiFi.

Returns: Bool, true if initialization is successful, otherwise returns false.

Function parameters:

TypeNameDescription
bool_resetSettingsOptional parameter (default: true). If set to true, all stored settings in NVM will be reset to factory defaults. Can be overridden if needed.

WiFi.setMode()

Sets the WiFi mode on the ESP32 module. Available modes include null (modem disabled) or station mode. This function ensures the module is set to the desired mode by sending an AT command.

Returns: Returns true if the mode was successfully set, otherwise returns false.

Function parameters:

TypeNameDescription
uint8_t_wifiModeWiFi mode to set. Use predefined macros from esp32SpiAtTypedefs.h: INKPLATE_WIFI_MODE_NULL: Null mode (modem disabled), INKPLATE_WIFI_MODE_STA: Station mode.

WiFi.begin()

Connects to a WiFi access point using the specified SSID and password. Sends an AT command to establish the connection. Avoid using the following characters in SSID and password: , {, }, \\

Returns: Returns true if the command execution was successful, otherwise returns false.

Function parameters:

TypeNameDescription
char*_ssidPointer to the SSID (AP name). Must be a valid UTF-8 string.
char*_passPointer to the AP password. Maximum length is 63 characters.

WiFi.connected()

Checks the connection status of the ESP32 WiFi module. Returns whether the module is connected to an access point.

Returns: Returns true if the ESP32 is connected to the AP, otherwise returns false.

WiFi.disconnect()

Sends a command to the ESP32 module to disconnect from the currently connected access point.

Returns: Returns true if the command was executed successfully, otherwise returns false.


Full example

To see more details, have a look at the full example:

Inkplate_6_Motion_WiFi_Simple.ino

Connect to the internet and print the contents of a .txt file