-
-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Lillygo Ver1 boards #141
Comments
Are these boards v1.6?? |
The boards are version 1 boards exactly like this https://meshtastic.org/docs/hardware/devices/lora/?t-lora=v1 The OLED pin outs are different from the later versions of this board but the LoRa pin outs appear to be the same? |
So I will need your help to add this: Can you provide the pinout list needed for this to work? |
Jugué con 2 placas 868 Mhz de este modelo (ahora no los tengo a mano). Los pines OLED se corresponden al modelo de pines del "HELTEC_V2". Faltaría comprobar el pin de Batería para ver donde está. En su día, lo programé como si fuera un "TGO_T_LORA32_V2_1_915" pero cambié en el código los pines OLED igual que el "HELTEC_V2". Todo funcionó bien, después me di cuenta que las lecturas de voltaje eran incorrectas, pero no le dediqué mas tiempo. |
Pero lo demás funciona con heltec v2 ? Porque no intentas con Lora32_915? |
Buenas tardes, Con "heltec-lora32-v2".
Con "Lora32_915" y TGO_T_LORA32_V2_1_915
Sobre la lectura de la batería no encuentro información clara y he probado con todos los ADC por lo que imagino que esta placa no tiene divisor interno para la lectura. |
there is not much info about the pinouts of V1.0 sadly its not recommended to use with battery in meshtastic at all |
This is the pin configuration from the Meshtatsic Github https://github.com/meshtastic/firmware/blob/master/variants/tlora_v1/variant.h I have never used a battery on these devices as per recommendations and have only been powered by the USB port. |
Hi, Many thanks. |
could you help me out with all the pinout verification? I cant find any info about this board to add it |
Does this help? ESP32 0.96 Freq 886/915 Mhz RADIO_SCLK_PIN 5 // GPIO5 - SX1276 SCK OLED Details Type SSD 1306 OLED_SDA 4 |
It looks similar to the Heltec board. |
Thats in respect to the pin outs. |
I take this issue is still open |
|
Hi All, Many thanks. |
just as a test, there is in /src/display.cpp , line 24 a :
maybe add to it " || defined(YourBoardsDefinitionName)" so that it may need the RST pin to be managed |
I have added that to the display.cpp and re-flashed the board, unfortunately it is still the same, I must be missing something? You are correct in your diagnosis as I have had a look at other coding with this board version and it shows a similar reset sequence for the OLED board. |
show please how you added this |
Still no further forward ..... will try again with a new build. |
These are my modifications:- platformio.ini default_envs = ttgo-lora32-v21_915 Display.cpp ifdef HAS_DISPLAY
boards_pinout.h
#if defined(TTGO_T_LORA32_V2_1) || defined(HELTEC_V2) || defined(ESP32_DIY_LoRa) || defined(TTGO_T_Beam_V1_2) || defined(TTGO_T_Beam_V1_0) || defined(TTGO_T_LORA32_V2_1_915) || defined(ESP32_DIY_LoRa_915) || defined(TTGO_T_Beam_V1_2_915) || defined(TTGO_T_Beam_V1_0_915) // OLED |
I have several LILYGO TTGO Ver1 boards which would could be utilised as I Gates, would it be possible to add support for these please?
The text was updated successfully, but these errors were encountered: