There is no serial response from this unit. No answer to AT @ 115200. Any idea?
ckuehnel
@ckuehnel
Posts made by ckuehnel
-
Unit CatM
-
RE: Core 2 and ADC Input
Please have a look to my blog https://ckblog2016.net/2018/03/03/esp32-adc-dac/. Sorry for German language.
-
RE: M5CoreInk wake up by EXT0 (PIR Hat)
Hi @felmue
It was a good idea to replace the PIR by a wire. I have tried that w/o success.
I have prepared a Vbat measuring to see if battery is ok when USB is disconnected.
The CoreInk had now 3588 loops w/o USB connected. The battery goes from 4.1 V to 3.721 V after all these cycles (one second each). The battery is ok.
Thanks again.
Claus -
RE: M5CoreInk wake up by EXT0 (PIR Hat)
@felmue said in M5CoreInk wake up by EXT0 (PIR Hat):
gpio_hold_en(GPIO_NUM_12); // POWER_HOLD_PIN
gpio_deep_sleep_hold_en();Hi Felix
This are the last commands in my setup() now - but w/o success:
esp_sleep_enable_ext0_wakeup(GPIO_NUM_36,1); //1 = High, 0 = Low //Go to sleep now if (DEBUG) { Serial.println("Going to sleep now"); Serial.flush(); } delay(2000); gpio_hold_en(GPIO_NUM_12); // POWER_HOLD_PIN gpio_deep_sleep_hold_en(); esp_deep_sleep_start();
-
M5CoreInk wake up by EXT0 (PIR Hat)
I want to wake up an M5CoreInk by EXT0 (PIR Hat).
If I connect USB counting works. If I disconnect the USB cable the display loses its contrast and the software crashes.
I have no idea what's wrong. A program with wakeup by timer works.
The source is saved at https://github.com/ckuehnel/Arduino2020/tree/master/M5Stack/CoreInk_PIR.
Any hint is welcome.
best regards, Claus -
MQTT Unit
I tried the example for MQTT Unit and it works on Public Broker of Hivemq.com. But, I can see messages with a distance of one minute. In the serial output of the M5Atom I used, I can see the following in the meantime.
...
MQTT disconnected
MQTT disconnected
+MQUNCONNECT
+MQCONNECT
MQTT disconnected
MQTT disconnected
MQTT disconnected
MQTT disconnected
MQTT disconnected
+MQCONNECT
+MQUNCONNECT
MQTT disconnected
MQTT disconnected
MQTT disconnected
...
What is responsible for the disconnection?
How can I sent MQTT messages in a ten seconds cycle, for example? -
M5Stack ID Unit (ATECC608)
I bought this unit but had no success configuring the device.
Scanning with an I2C scanner result in an I2C address 0x35. The microchip standard is 0x60.
Are there examples for M5Stick or Seeeduino XIAO? -
RE: Core2 PortC not working
@felmue said in Core2 PortC not working:
GPSRaw.begin(9600, SERIAL_8N1, 13, 14);// GPS init
Hi @felmue
Thanks a lot. It works. I small hint in the documentation would be nice.
Ciao Claus
-
Core2 PortC not working
I tried GPSRaw.ino on Core2 but get no response from GPS Unit.
Is there a special initialization required?