Mise en oeuvre du module ESP32

L’objectif est de mettre en oeuvre rapidement le module ESP32.

L’ESP32

L’ESP32 est le successeur de l’ESP8266 auquel on a ajouté le Bluetooth :

  • Microprocesseur dual core de 80 MHz à 240 MHz
  • 4MB de mémoire flash
  • WiFi 802.11 b/g/n
  • Bluetooth 4.0 LE et BR/EDR
  • 26x E/S digitales (3.3V)
  • 12x entrées analogiques
  • 4x SPI, 2x I²S, 2x I²C, 3x UART, CAN 2.0, IR, Touch Sensor (écran tactile)
  • Capteur de température

Il existe différents modules.

Liens :

Quelques cartes

  • Wemos LOLIN ESP32 OLED

Liens :

Détection sous GNU/Linux :

$ dmesg
...
usb 3-9.2: new full-speed USB device number 59 using xhci_hcd
usb 3-9.2: New USB device found, idVendor=10c4, idProduct=ea60
usb 3-9.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 3-9.2: Product: CP2102 USB to UART Bridge Controller
usb 3-9.2: Manufacturer: Silicon Labs
usb 3-9.2: SerialNumber: 0001
cp210x 3-9.2:1.0: cp210x converter detected
usb 3-9.2: cp210x converter now attached to ttyUSB0

$ lsusb
...
Bus 003 Device 059: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x Composite Device

$ python esptool.py --port /dev/ttyUSB0 flash_id
esptool.py v2.3-dev
Connecting....
Detecting chip type... ESP32
Chip is ESP32D0WDQ6 (revision 1)
Features: WiFi, BT, Dual Core
Uploading stub...
Running stub...
Stub running...
Manufacturer: c8
Device: 4016
Detected flash size: 4MB
  • AZ-Delivery ESP32

Lien : Amazon

Détection sous GNU/Linux :

$ dmesg
...
usb 3-9.4.3: New USB device found, idVendor=10c4, idProduct=ea60
usb 3-9.4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 3-9.4.3: Product: CP2102 USB to UART Bridge Controller
usb 3-9.4.3: Manufacturer: Silicon Labs
usb 3-9.4.3: SerialNumber: 0001
usbcore: registered new interface driver cp210x
usbserial: USB Serial support registered for cp210x
cp210x 3-9.4.3:1.0: cp210x converter detected
usb 3-9.4.3: cp210x converter now attached to ttyUSB0

$ lsusb
...
Bus 003 Device 059: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x Composite Device

$ python esptool.py --port /dev/ttyUSB0 flash_id
esptool.py v2.3-dev
Connecting....
Detecting chip type... ESP32
Chip is ESP32D0WDQ6 (revision 1)
Features: WiFi, BT, Dual Core
Uploading stub...
Running stub...
Stub running...
Manufacturer: c8
Device: 4016
Detected flash size: 4MB
  • ESP32 DevKitC :

Liens :

Arduino

L’ESP32 peut se programmer en C++ avec l’IDE Arduino (Linux).

$ mkdir -p ~/Arduino/hardware/espressif
$ cd ~/Arduino/hardware/espressif
$ git clone https://github.com/espressif/arduino-esp32.git esp32
$ cd esp32
$ git submodule update --init --recursive
$ cd tools
$ python2 get.py

On termine par sélectionner la carte :

  • AZ-Delivery ESP32 NodeMCU :

Carte “ESP32 Dev Module” Fréquence 80MHz Débit “115200”

Remarque : Il n’est plus nécessaire d’utiliser git pour l’installation. Il est donc possible d’intégrer l’ESP32 dans votre IDE Arduino en passant simplement par l’édition des préférences et en ajoutant dans « URL de gestionnaire de cartes supplémentaires » : https://dl.espressif.com/dl/package_esp32_index.json. Il faut posséder un IDE Arduino Windows, MacOS ou Linux (32 et 64 bits) 1.8 ou supérieur. Ensuite, on installera le composant « esp32 by Espressif Systems » dans menu « Outils » → « Type de carte » → « Gestionnaire de carte ».

Exemple :

  • Led clignotante (BLINK)

Dans Exemples -> 01. Basics -> Blink :

/*
  Blink
  Turns an LED on for one second, then off for one second, repeatedly.
  ESP32 Dev Module  
*/

int esp32Led = 1;

void setup() 
{
  Serial.begin(115200);
  pinMode(esp32Led, OUTPUT);
  Serial.println("Setup done");
}

void loop() 
{
  Serial.println("Start");
  digitalWrite(esp32Led, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(esp32Led, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}
  • Wemos LOLIN ESP32 OLED :

Carte “WEMOS LOLIN32” Fréquence 80MHz Débit “115200”

Exemple OLED (programme de démonstration) :

/**
 * The MIT License (MIT)
 *
 * Copyright (c) 2018 by ThingPulse, Daniel Eichhorn
 * Copyright (c) 2018 by Fabrice Weinberg
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 * ThingPulse invests considerable time and money to develop these open source libraries.
 * Please support us by buying our products (and not the clones) from
 * https://thingpulse.com
 *
 */

#include <Wire.h>  // Only needed for Arduino 1.6.5 and earlier
#include "SSD1306Wire.h" // legacy include: `#include "SSD1306.h"`

// Include custom images
#include "images.h"

// Initialize the OLED display using Wire library
SSD1306Wire  display(0x3c, 5, 4);

#define DEMO_DURATION 3000
typedef void (*Demo)(void);

int demoMode = 0;
int counter = 1;

void setup() {
  Serial.begin(115200);
  Serial.println();
  Serial.println();

  // Initialising the UI will init the display too.
  display.init();

  display.flipScreenVertically();
  display.setFont(ArialMT_Plain_10);
}

void drawFontFaceDemo() {
    // Font Demo1
    // create more fonts at http://oleddisplay.squix.ch/
    display.setTextAlignment(TEXT_ALIGN_LEFT);
    display.setFont(ArialMT_Plain_10);
    display.drawString(0, 0, "BTS SN");
    display.setFont(ArialMT_Plain_16);
    display.drawString(0, 10, "BTS SN");
    display.setFont(ArialMT_Plain_24);
    display.drawString(0, 26, "BTS SN");
}

void drawTextFlowDemo() {
    display.setFont(ArialMT_Plain_10);
    display.setTextAlignment(TEXT_ALIGN_LEFT);
    display.drawStringMaxWidth(0, 0, 128,
      "Lorem ipsum\n dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore." );
}

void drawTextAlignmentDemo() {
    // Text alignment demo
  display.setFont(ArialMT_Plain_10);

  // The coordinates define the left starting point of the text
  display.setTextAlignment(TEXT_ALIGN_LEFT);
  display.drawString(0, 10, "Left aligned (0,10)");

  // The coordinates define the center of the text
  display.setTextAlignment(TEXT_ALIGN_CENTER);
  display.drawString(64, 22, "Center aligned (64,22)");

  // The coordinates define the right end of the text
  display.setTextAlignment(TEXT_ALIGN_RIGHT);
  display.drawString(128, 33, "Right aligned (128,33)");
}

void drawRectDemo() {
      // Draw a pixel at given position
    for (int i = 0; i < 10; i++) {
      display.setPixel(i, i);
      display.setPixel(10 - i, i);
    }
    display.drawRect(12, 12, 20, 20);

    // Fill the rectangle
    display.fillRect(14, 14, 17, 17);

    // Draw a line horizontally
    display.drawHorizontalLine(0, 40, 20);

    // Draw a line horizontally
    display.drawVerticalLine(40, 0, 20);
}

void drawCircleDemo() {
  for (int i=1; i < 8; i++) {
    display.setColor(WHITE);
    display.drawCircle(32, 32, i*3);
    if (i % 2 == 0) {
      display.setColor(BLACK);
    }
    display.fillCircle(96, 32, 32 - i* 3);
  }
}

void drawProgressBarDemo() {
  int progress = (counter / 5) % 100;
  // draw the progress bar
  display.drawProgressBar(0, 32, 120, 10, progress);

  // draw the percentage as String
  display.setTextAlignment(TEXT_ALIGN_CENTER);
  display.drawString(64, 15, String(progress) + "%");
}

void drawImageDemo() {
    // see http://blog.squix.org/2015/05/esp8266-nodemcu-how-to-create-xbm.html
    // on how to create xbm files
    display.drawXbm(34, 14, WiFi_Logo_width, WiFi_Logo_height, WiFi_Logo_bits);
}

Demo demos[] = {drawFontFaceDemo, drawTextFlowDemo, drawTextAlignmentDemo, drawRectDemo, drawCircleDemo, drawProgressBarDemo, drawImageDemo};
int demoLength = (sizeof(demos) / sizeof(Demo));
long timeSinceLastModeSwitch = 0;

void loop() {
  // clear the display
  display.clear();
  // draw the current demo method
  demos[demoMode]();

  display.setTextAlignment(TEXT_ALIGN_RIGHT);
  display.drawString(10, 128, String(millis()));
  // write the buffer to the display
  display.display();

  if (millis() - timeSinceLastModeSwitch > DEMO_DURATION) {
    demoMode = (demoMode + 1)  % demoLength;
    timeSinceLastModeSwitch = millis();
  }
  counter++;
  delay(10);
}

Le fichier images.h contient un logo (ici Wifi) :

#define WiFi_Logo_width 60
#define WiFi_Logo_height 36
const uint8_t WiFi_Logo_bits[] PROGMEM = {
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8,
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xFF, 0x07, 0x00, 0x00, 0x00,
  0x00, 0x00, 0xE0, 0xFF, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0xFF,
  0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC, 0xFF, 0xFF, 0x00, 0x00, 0x00,
  0x00, 0x00, 0xFE, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF,
  0xFF, 0x03, 0x00, 0x00, 0x00, 0xFC, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00,
  0x00, 0xFF, 0xFF, 0xFF, 0x07, 0xC0, 0x83, 0x01, 0x80, 0xFF, 0xFF, 0xFF,
  0x01, 0x00, 0x07, 0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x0C, 0x00,
  0xC0, 0xFF, 0xFF, 0x7C, 0x00, 0x60, 0x0C, 0x00, 0xC0, 0x31, 0x46, 0x7C,
  0xFC, 0x77, 0x08, 0x00, 0xE0, 0x23, 0xC6, 0x3C, 0xFC, 0x67, 0x18, 0x00,
  0xE0, 0x23, 0xE4, 0x3F, 0x1C, 0x00, 0x18, 0x00, 0xE0, 0x23, 0x60, 0x3C,
  0x1C, 0x70, 0x18, 0x00, 0xE0, 0x03, 0x60, 0x3C, 0x1C, 0x70, 0x18, 0x00,
  0xE0, 0x07, 0x60, 0x3C, 0xFC, 0x73, 0x18, 0x00, 0xE0, 0x87, 0x70, 0x3C,
  0xFC, 0x73, 0x18, 0x00, 0xE0, 0x87, 0x70, 0x3C, 0x1C, 0x70, 0x18, 0x00,
  0xE0, 0x87, 0x70, 0x3C, 0x1C, 0x70, 0x18, 0x00, 0xE0, 0x8F, 0x71, 0x3C,
  0x1C, 0x70, 0x18, 0x00, 0xC0, 0xFF, 0xFF, 0x3F, 0x00, 0x00, 0x08, 0x00,
  0xC0, 0xFF, 0xFF, 0x1F, 0x00, 0x00, 0x0C, 0x00, 0x80, 0xFF, 0xFF, 0x1F,
  0x00, 0x00, 0x06, 0x00, 0x80, 0xFF, 0xFF, 0x0F, 0x00, 0x00, 0x07, 0x00,
  0x00, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0xF8, 0xFF, 0xFF,
  0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xFF, 0xFF, 0x01, 0x00, 0x00,
  0x00, 0x00, 0xFC, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0xFF,
  0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0xFF, 0x1F, 0x00, 0x00, 0x00,
  0x00, 0x00, 0x80, 0xFF, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC,
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};

On peut utiliser Gimp pour convertir une image au format XBM ou les programmes d’ImageMagick.

Convertir des icônes :

$ mogrify -resize 60x60 +dither -format xbm *.png
$ cat *.xbm | sed s/static/const/ | sed s/=/PROGMEM=/  > icons.h

Retour au sommaire