Difference between revisions of "Grove"

From
Jump to: navigation, search
(ESP32)
(Créer un lien)
 
(16 intermediate revisions by the same user not shown)
Line 37: Line 37:
  
 
=== Créer un lien ===
 
=== Créer un lien ===
 +
 +
[[Elecrow| Elecrow]]<br>
 +
[[Analog Clock OLED| Analog Clock OLED]]<br>
 +
[[Seeed-Studio | Seeed-Studio]]
  
 
==== Liens internes ====
 
==== Liens internes ====
Line 44: Line 48:
 
[[IPS Display 1.22 inch| IPS Display 1.22 inch]]<br>
 
[[IPS Display 1.22 inch| IPS Display 1.22 inch]]<br>
 
[[I2C LCD| I2C LCD]]<br>
 
[[I2C LCD| I2C LCD]]<br>
 +
 +
[[1.54-inch E-paper Display| 1.54-inch E-paper Display]]<br>
 +
[[E-paper Breakout for XIAO| E-paper Breakout for XIAO]]<br>
 +
 +
[[reTerminal E1002 color E-paper | reTerminal E1002 color E-paper]]<br>
 +
 
[[Grove Base for XIAO| Grove Base for XIAO]]<br>
 
[[Grove Base for XIAO| Grove Base for XIAO]]<br>
 
[[Expansion-Board_XIAO-SAMD21_Grove-OLED | Expansion-Board_XIAO-SAMD21_Grove-OLED]]<br>
 
[[Expansion-Board_XIAO-SAMD21_Grove-OLED | Expansion-Board_XIAO-SAMD21_Grove-OLED]]<br>
 
[[XIAO-ESP32S3| XIAO-ESP32S3]]<br>
 
[[XIAO-ESP32S3| XIAO-ESP32S3]]<br>
 +
 +
[[XIAO-ESP32C3| XIAO-ESP32C3]]<br>
 +
 
[[XIAO-RA4M1| XIAO-RA4M1]]<br>
 
[[XIAO-RA4M1| XIAO-RA4M1]]<br>
 
[[4-Digital Display| 4-Digital Display]]<br>
 
[[4-Digital Display| 4-Digital Display]]<br>
Line 82: Line 95:
  
 
==== ESP32 ====
 
==== ESP32 ====
ESP32
 
  
  
<b>WiFiScan</b>
+
[[Bibliothèque Wi-Fi ESP32 | Bibliothèque Wi-Fi ESP32]]<br>
  
<PRE>
+
[[XIAO-ESP32S3 Wi-Fi LED Code | XIAO-ESP32S3 Wi-Fi LED Code]]<br>
/*
 
  Example from WiFi > WiFiScan
 
  Complete details at https://RandomNerdTutorials.com/esp32-useful-wi-fi-functions-arduino/
 
*/
 
 
 
#include "WiFi.h"
 
 
 
void setup() {
 
  Serial.begin(115200);
 
 
 
  // Set WiFi to station mode and disconnect from an AP if it was previously connected
 
  WiFi.mode(WIFI_STA);
 
  WiFi.disconnect();
 
  delay(100);
 
 
 
  Serial.println("Setup done");
 
}
 
 
 
void loop() {
 
  Serial.println("scan start");
 
 
 
  // WiFi.scanNetworks will return the number of networks found
 
  int n = WiFi.scanNetworks();
 
  Serial.println("scan done");
 
  if (n == 0) {
 
      Serial.println("no networks found");
 
  } else {
 
    Serial.print(n);
 
    Serial.println(" networks found");
 
    for (int i = 0; i < n; ++i) {
 
      // Print SSID and RSSI for each network found
 
      Serial.print(i + 1);
 
      Serial.print(": ");
 
      Serial.print(WiFi.SSID(i));
 
      Serial.print(" (");
 
      Serial.print(WiFi.RSSI(i));
 
      Serial.print(")");
 
      Serial.println((WiFi.encryptionType(i) == WIFI_AUTH_OPEN)?" ":"*");
 
      delay(10);
 
    }
 
  }
 
  Serial.println("");
 
 
 
  // Wait a bit before scanning again
 
  delay(5000);
 
}
 
</PRE>
 
  
 
== Matériel pour ESP32 ==
 
== Matériel pour ESP32 ==
Line 145: Line 110:
 
[[NTPClient| NTPClient]]<br>
 
[[NTPClient| NTPClient]]<br>
 
[[Internet Clock 1 | Internet Clock techlogics.net]]<br>
 
[[Internet Clock 1 | Internet Clock techlogics.net]]<br>
 +
 +
 +
== Webographie ==
 +
 +
Digital Clock on <b>e-Paper Display</b><br>
 +
https://www.makerguides.com/digital-clock-e-paper-esp32/ Stefan Maetschke
 +
 +
Analog Clock on e-Paper Display<br>
 +
https://www.makerguides.com/analog-clock-e-paper-esp32/ Stefan Maetschke
 +
 +
 +
Analog Clock using ESP32 & SSD1306 <b>OLED Display</b><br>
 +
https://www.circuits-diy.com/analog-clock-using-esp32-ssd1306-oled-display/

Latest revision as of 23:17, 8 December 2025

Arduino Grove.

Matériel pour Arduino

Arduino UNO REV3

UNO v3 front angle.jpg

section 2

caption

section 3

Tableau
Colonne 2 Colonne 3

Contenu 1

Contenu 2

Contenu 3

Contenu 4

Contenu 5

Contenu 6

Ligne 1

Créer un lien

Elecrow
Analog Clock OLED
Seeed-Studio

Liens internes

OLED Display 0.96 inches (SSD1308)
OLED Display 0.96 inches (SSD1315)
OLED Display 1.12 inches (SH1107)
IPS Display 1.22 inch
I2C LCD

1.54-inch E-paper Display
E-paper Breakout for XIAO

reTerminal E1002 color E-paper

Grove Base for XIAO
Expansion-Board_XIAO-SAMD21_Grove-OLED
XIAO-ESP32S3

XIAO-ESP32C3

XIAO-RA4M1
4-Digital Display
U8g2 for Seeeduino boards
Base Shield V2
Arduino UNO REV3
Grove Button
Grove-Red LED Matrix w Driver
Grove - LED
Grove - LCD RGB Backlight
Grove - 16x2 LCD Series
Temperature Sensor
Grove LED Bar
Grove-RTC
Grove - UART WiFi
Grove - UART WiFi V2
Grove - W600

Grove - I2C FM Receiver v1.1
Grove-12-Channel-Capacitive-Touch-Keypad-ATtiny1616

Seeeduino V4.2
Grove Shield for Arduino Nano
Seeeduino Nano
Seeeduino Cortex-M0+
Wio-Link

I2cScanner


Liens externes

https://fr.wikipedia.org/wiki/Aide:Syntaxe
https://fr.wikibooks.org/wiki/MediaWiki_pour_débutants/Première_utilisation_de_votre_wiki

ESP32

Bibliothèque Wi-Fi ESP32

XIAO-ESP32S3 Wi-Fi LED Code

Matériel pour ESP32

ESP32 30PIN
Ideaspark ESP32 0.96 OLED Board
0.96 OLED
DHT22 Humidity & Temperature

Code

NTPClient
Internet Clock techlogics.net


Webographie

Digital Clock on e-Paper Display
https://www.makerguides.com/digital-clock-e-paper-esp32/ Stefan Maetschke

Analog Clock on e-Paper Display
https://www.makerguides.com/analog-clock-e-paper-esp32/ Stefan Maetschke


Analog Clock using ESP32 & SSD1306 OLED Display
https://www.circuits-diy.com/analog-clock-using-esp32-ssd1306-oled-display/