![]() |
how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=1) +--- Forum: Getting Started with ESPHome and Home Assistant (https://www.kincony.com/forum/forumdisplay.php?fid=54) +--- Thread: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome (/showthread.php?tid=6502) |
how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - admin - 08-28-2024 the ESPHome yaml demo made for KinCony KC868-A8S relay board. Actually you can use for any KinCony SIM7600 relay board, just replace 4G module's TXD,RXD define. here is ESPHome yaml demo: Code: esphome: ![]() RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - attilhacks - 09-22-2024 I just bought the A2 + SIM7600 Could you please make an example how to receive a call and trigger one or more outputs depending on the caller ID? thank you so much RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - admin - 09-22-2024 when have free time, i will have a test. when received a call let relay ON? RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - admin - 09-23-2024 post new code at here: https://www.kincony.com/forum/showthread.php?tid=6763 voice call turn on relay1 ESPHome yaml for KC868-A2 board. RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - attilhacks - 09-25-2024 thank you so much! RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - christmas - 12-10-2024 Provide power to the SIM7600E module (ensure the power supply matches the module's requirements). RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - Gesinentec - 12-30-2024 Hello! I've got an A2 as well as a SIM7600E module. I saw one of your example codes and they have the UART pins for GSM set as GPIO5 for TX and GPIO13 for RX but on the ESPHome website device post for the A2 it has the GPIO34 for RX and GPIO13 for TX. Which is the correct one? Also I have followed the examples you have posted using a button press on the A8 for a call and a SMS but using the button component as the A2 doesn't have any buttons. Another question I have is if the SIM module allows it to connect to the internet using a SIM card if no WiFi or Ethernet is available and how to do so. Thank you. RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - admin - 12-30-2024 1. what's your KC868-A2 pcb version? take a photo. 2. sure, you can use SIM7600E connect to cloud server by MQTT. RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - Gesinentec - 12-30-2024 (12-30-2024, 09:55 AM)admin Wrote: 1. what's your KC868-A2 pcb version? take a photo. 1) It is A2 V2.4. I tested the module using the latest firmware 2.2.10 and using your own interface I can send a message and call my phone so I know the module works and the SIM does as well. I want to do the same but using our ESPHome code we have implemented but I am not sure if the pinout is correct and also I can simulate buttons and I see the AT commands coming in but no output and unable to test AT commands. I am also unsure on how to test if it is working or connecting using only the SIM connection to the internet other than making some mqtt configuration messages. Code: button: So apparently this is the proper pinout for the GSM in the A2, which is different than the one on this website https://devices.esphome.io/devices/KinCony-KC868-A2: Code: - id: uart_sim7600 Also I don't know if this also was needed but it works for me but in this code of one of your examples Code: - platform: template In [phone number] I also added the area code of the country. I could recieve a message and a call using button components to simulate the press of a button. EDIT: MY NEW ISSUE IS THIS: I need to be able to get this device running connecting to the internet using a 4G/LTE connection. I can receive messages and calls and I can send them using your software and ESPHome but as far as I know there is no 4G connection integration with ESPHome so I assume this must come from an external component. Do you have anything at hand you could help me with for this? RE: how to use binary sensor make VOICE CALL by SIM7600E 4G module in ESPHome - admin - 12-30-2024 ESPHome not support SIM7600 4G module directly. i think you can use AT command for internet connection. send AT command one by one manually. ESPHome not good for 4G module. |