There is no serial response from this unit. No answer to AT @ 115200. Any idea?
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? -
RE: CoreInk deepsleep
@felmue It seems to me that I measure not the battery voltage. The voltage is always around 4.8 V and this could be the voltage after the SY7088. So I can use that voltage as an indicator for enough battery voltage only. If I have schematics then I have the chance to a little bit deeper. Until now I did not find the schematics, yet.
Ciao Claus -
RE: CoreInk deepsleep
After looking into Github I must see that the installed library differed from the library at Github now.
After updating the compilation worked and I can test the internal battery voltage over time. -
RE: CoreInk deepsleep
@felmue I tried the same w/o success. I will go into Github to look for.
-
CoreInk deepsleep
How to deepsleep a CoreInk. The shutdown() gives a compiler error. Any idea?
-
PowerC
I want to use the PowerC as a backup battery for the small internal.
I use your program example and it works.
After switching on the PowerC I can see the external Vbat and seconds later PowerC switches off and I can see the internal Vbat. This is not the expected behavior. Additionally, the switch loses its membrane already (after 20 presses). -
RE: M5StickC &18650C Hat
@hugo I do not have this problem.
Two quick&dirty proposals: 1. double sided tape between M5StickC and the hat or 2. drill two holes into the back of the hat and you can fix the M5StickC by two screws. -
M5StickC &18650C Hat
I build a handheld thermometer based on M5StickC, 18650 hat and ENV hat.
Now I am looking for the possibility to check the status of the 18650 LiPo and show it on TFT (see my blog). -
M5Stack Basic Core w/ SIM800L Module
If I connect the SIM800L module to the M5Stack Basic Core I get always Resets as in the screenshot shown
Is there enough power over the USB connector to source that combination? SIM800L can have spikes till 2 A.
I have connected a GoBottom w/ 600mAh LiPo but that's not enough. What can I do in this case?
-
RE: Lesson 22. Modules. SIM800L
Is there Arduino code available? I have some problems with the examples added to the library.