All Projects → espressif → Esp At

espressif / Esp At

Licence: other
AT application for ESP32 ESP-IDF & ESP32S2 ESP-IDF & ESP8266 ESP8266_RTOS_SDK

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Esp At

Blinker Library
An IoT Solution,Blinker library for embedded hardware. Works with Arduino, ESP8266, ESP32.
Stars: ✭ 1,095 (+243.26%)
Mutual labels:  esp32, ble, esp8266, wifi
Blinker Doc
blinker中文文档
Stars: ✭ 139 (-56.43%)
Mutual labels:  esp32, ble, esp8266, wifi
Espmqttclient
Wifi and MQTT handling for ESP8266 and ESP32
Stars: ✭ 169 (-47.02%)
Mutual labels:  esp32, esp8266, wifi
Openmqttgateway
MQTT gateway for ESP8266, ESP32, Sonoff RF Bridge or Arduino with bidirectional 433mhz/315mhz/868mhz, Infrared communications, BLE, Bluetooth, beacons detection, mi flora, mi jia, LYWSD02, LYWSD03MMC, Mi Scale, TPMS, BBQ thermometer compatibility, SMS & LORA.
Stars: ✭ 2,413 (+656.43%)
Mutual labels:  esp32, ble, esp8266
SinricPro Generic
Simple way to control your IOT development boards like ESP8226, ESP32, Arduino SAMD21, Adafruit SAMD21, SAMD51, nRF52, STM32, Teensy, SAM DUE with Amazon Alexa or Google Home
Stars: ✭ 18 (-94.36%)
Mutual labels:  esp8266, esp32, ethernet
Blynk Library
Blynk library for embedded hardware. Works with Arduino, ESP8266, Raspberry Pi, Intel Edison/Galileo, LinkIt ONE, Particle Core/Photon, Energia, ARM mbed, etc.
Stars: ✭ 3,305 (+936.05%)
Mutual labels:  esp32, esp8266, wifi
Feature Requests
ESPHome Feature Request Tracker
Stars: ✭ 160 (-49.84%)
Mutual labels:  esp32, esp8266, wifi
wireless-esp8266-dap
ESP8266 Wireless Debugger. Based on CMSIS-DAP v2.0.0. Optional 40MHz SPI acceleration, etc. ESP8266 无线调试器
Stars: ✭ 154 (-51.72%)
Mutual labels:  esp8266, esp32, wifi
Esp8266 Oled Ssd1306
Driver for the SSD1306 and SH1106 based 128x64, 128x32, 64x48 pixel OLED display running on ESP8266/ESP32
Stars: ✭ 1,590 (+398.43%)
Mutual labels:  esp32, spi, esp8266
Ssd1306
Driver for SSD1306, SSD1331, SSD1351, IL9163, ILI9341, ST7735, PCD8544, Nokia 5110 displays running on Arduino/ESP32/Linux (Rasperry) platforms
Stars: ✭ 303 (-5.02%)
Mutual labels:  esp32, spi, esp8266
low-power-wifi
Experiments in low-power-wifi on esp8266, esp32, and ...
Stars: ✭ 35 (-89.03%)
Mutual labels:  esp8266, esp32, wifi
esphome-components
ESPHome components
Stars: ✭ 62 (-80.56%)
Mutual labels:  esp8266, esp32, ble
ESP-Mail-Client
⚡️Arduino Mail Client Library to send, read and get incoming mail notification for ESP32, ESP8266 and SAMD21 devices. The library also supported other Arduino devices using Clients interfaces e.g. WiFiClient, EthernetClient, and GSMClient.
Stars: ✭ 78 (-75.55%)
Mutual labels:  esp8266, esp32, ethernet
Esp wifimanager
This is an ESP32 / ESP8266 WiFi Connection Manager with fallback web configuration portal. Use this library for configuring ESP32, ESP8266 modules' WiFi, etc. Credentials at runtime. You can also specify static DNS servers, personalized HostName, fixed or random AP WiFi channel. With examples supporting ArduinoJson 6.0.0+ as well as 5.13.5- .
Stars: ✭ 125 (-60.82%)
Mutual labels:  esp32, esp8266, wifi
Perswifimanager
Persistent WiFiManager Arduino library for ESP8266
Stars: ✭ 106 (-66.77%)
Mutual labels:  esp32, esp8266, wifi
Esp32marauder
A suite of WiFi/Bluetooth offensive and defensive tools for the ESP32
Stars: ✭ 233 (-26.96%)
Mutual labels:  esp32, esp8266, wifi
Esphelper
A library to make using WiFi & MQTT on the ESP8266 easy.
Stars: ✭ 310 (-2.82%)
Mutual labels:  esp32, esp8266, wifi
Wled Wemos Shield
Wemos D1 Mini (ESP8266) or Wemos ESP32 D1 Mini (ESP32) based shield for WLED firmware
Stars: ✭ 105 (-67.08%)
Mutual labels:  esp32, esp8266, wifi
MySQL MariaDB Generic
This MySQL_MariaDB_Generic library helps you connect your boards directly to a MySQL / MariaDB server, either local or cloud-based, so that you can store / retrieve data to / from the server. Supported boards are ESP8266/ESP32, WT32_ETH01 (ESP32 + LAN8720A), nRF52, SAMD21/SAMD51, STM32F/L/H/G/WB/MP1, Teensy, SAM DUE, Mega, RP2040-based boards, P…
Stars: ✭ 35 (-89.03%)
Mutual labels:  esp8266, esp32, ethernet
LibTeleinfo
Librairie Universelle Teleinformation (TIC)
Stars: ✭ 77 (-75.86%)
Mutual labels:  esp8266, esp32, wifi

Overview

libat_core.a is AT Command Core, and it is the core of AT command, including the default AT instruction set, the AT command parsing, execution and responding. The lib contains 4 kinds of command, such as AT+TEST=?, AT+TEST?, AT+TEST=“abc” and AT+TEST. It supports custom AT commands based on the lib and related APIs, and ones can also define input and output medium, like uart, spi, socket, bt, etc.

The demo is the AT command set based on uart. You can replace the uart driver with other drivers whichever you want to use. But maybe you have to make some changes to run the new driver. In addition, you can add some custom AT commands in at_custom_cmd like AT+CIUPDATE if necessary.

概述

libat_core.a 是 AT 命令集的核心部分, 包含默认的 AT 指令集, 具有 AT 命令解析、 执行和回复功能. 在此库中,可以处理 AT+TEST=?AT+TEST?AT+TEST=“abc”AT+TEST 4 种格式的指令集. 可以根据相关 API 自定义命令, 并且还可以定义输入输出介质, 比如 uart, spi, socket, bt 等等.

此工程是基于 uart 实现的命令集,如果需要,你可以使用其它驱动程序替换掉 uart 驱动,为了使用新的驱动程序,可能必须做一些必要的代码改动. 另外,如果需要,你可以仿照 AT+CIUPDATEat_custom_cmd 中添加自定义命令.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].