Replies: 9 comments 3 replies
-
Hi @Rodemfr, I am indeed quite interested in participating in a port to the ESP32 platform. These boards are easier to find than the Teensy ones. The Lilygo T-Beam boards do pack modules and features directly useful for the project, in a very small form-factor. And to add to your list, they can run on a 18650 Li-Ion battery, they usually come with a small (1-inch) OLED display and there are some nice 3d-printed cases available. But which board variant to use as they come in a variety of different GNSS and different radios?
On the GNSS side, the M8N apparently shows slightly better accuracy and could potentially connect to Galileo* satelites On the radio side, the newer SX1262 radio is advertised as more powerful while using less current when receiving ... but it has a totally different set of commands, so it would require a specific driver. Also I was surprised by how small the GNSS antenna is. I would replace it with a regular size one (25mm square) for boat use. The price difference from 6M-SX1276 to M8N-SX1262 is around 13 EUR/USD (with the mini oled screen). Let us know your thoughts on the choice of GNSS & radio. |
Beta Was this translation helpful? Give feedback.
-
I ordered a LILYGO T-beam 1.1 for 868MHz. It is a NEO-6M GNSS but I don't know which RF IC I have 1262 or 127x ? I will check tonight.
|
Beta Was this translation helpful? Give feedback.
-
here are some ideas I 'd be interested in exploring: (already mentioned)
(then in no particular order)
|
Beta Was this translation helpful? Give feedback.
-
I received my T-Beam. You are right its a SX1276, but if your board has the same connections and only the SX1262 as a difference, it should not be too hard to make a dedicated RF driver. I ported MicronetToNMEA on it but, of course, CC1101 and LSM303 drivers are disabled. It's now time to look at the existing drivers for SX127x... The Lilygo T5 is really eye-catching, I would love to have it on top of my chart table ! Thanks for the feature list. I like your proposal for configuring GNSS and to have a web interface for configuration. |
Beta Was this translation helpful? Give feedback.
-
Porting is on going but it will take time before a first alpha version, probably one or two months. Both esp32/FreeRTOS environment and SX1276 require deep changes in MicronetToNMEA architecture. |
Beta Was this translation helpful? Give feedback.
-
Porting work on TBEAM 1.1 is progressing :
Now I'm working on Micronet TX... |
Beta Was this translation helpful? Give feedback.
-
I got just the t-beam v1.1 and made first experiments to come familiar with this amazing part. #define RADIO_CS_PIN 18 void setup() { // initialize SX1276 with default settings if (state == RADIOLIB_ERR_NONE) { } void loop() { byte byteArr[8]; if (state == RADIOLIB_ERR_NONE) {
} else if (state == RADIOLIB_ERR_RX_TIMEOUT) { } else if (state == RADIOLIB_ERR_CRC_MISMATCH) { } else { } |
Beta Was this translation helpful? Give feedback.
-
I got the rx working, with Radiolib and FIFO operation. |
Beta Was this translation helpful? Give feedback.
-
I added you to my private repository with the port of MicronetToNMEA to T-Beam v1.1. |
Beta Was this translation helpful? Give feedback.
-
Today, there is only one remaining issue for MicronetToNMEA : LSM303DLHC axes issue. I ordered a board to fix this but I can expect it to be solve next week. Once solved, I will build the first officiel release of MicronetToNMEA.
Now comes the question : what next ?
I plan to continue maintenance of the project for as long as it will be needed, however, I forsee that porting MTN to ESP32 is something waited by potential users. ESP32, appart from beeing unexpensive, allows to easily enable a WiFi hotspot for data broadcasting. Also, after discussing with @frgaude, I discovered interesting boards like this one : ESP32
This is not a CC1101, but I read the datasheet of the SX127x and I understand that we can disable the Lora demodulator to use a standard FSK one. This would be quite some work but if successful, we would have a simple 40-60€ board with all of what is needed to MTN : Micronet RF, GNSS, Bluetooth & Wifi. Only LSM303 would need to be added. This looks appealing.
Beta Was this translation helpful? Give feedback.
All reactions