Hi,
I have been able to compile a working firmware for the T1000-e as a sensor.
There are just un bunch of lines to add in the device platformio.ini file and a command to build it.
Should I propose a pull request for this ?
Anyway, here is the detail of the modifications, in case anybody else need it.
[env:t1000e_sensor]
extends = t1000-e
build_flags = ${t1000-e.build_flags}
-D ADVERT_NAME='"t1000-e sensor"'
-D ADVERT_LAT=0.0
-D ADVERT_LON=0.0
-D ADMIN_PASSWORD='"password"'
; -D MESH_PACKET_LOGGING=1
; -D MESH_DEBUG=1
build_src_filter = ${t1000-e.build_src_filter}
+<../examples/simple_sensor/>
lib_deps = ${t1000-e.lib_deps}
stevemarple/MicroNMEA @ ^2.0.6
And to build the file, run FIRMWARE_VERSION="1.17.1" ./build.sh build-firmware t1000e_sensor .
The firmware will be located in .pio/build/t1000e_sensor/firmware.zip.
You can flash it using the webflasher, first select the T1000-e device and any firmware, put it in DFU, erase the flash and then go back to the beginning, select custom firmware and finally your freshly compiled firmware.
The default password is "password", you can change it before compiling or after through your companion device ;)
Enjoy !
Hi,
I have been able to compile a working firmware for the T1000-e as a sensor.
There are just un bunch of lines to add in the device platformio.ini file and a command to build it.
Should I propose a pull request for this ?
Anyway, here is the detail of the modifications, in case anybody else need it.
And to build the file, run
FIRMWARE_VERSION="1.17.1" ./build.sh build-firmware t1000e_sensor.The firmware will be located in
.pio/build/t1000e_sensor/firmware.zip.You can flash it using the webflasher, first select the T1000-e device and any firmware, put it in DFU, erase the flash and then go back to the beginning, select custom firmware and finally your freshly compiled firmware.
The default password is "password", you can change it before compiling or after through your companion device ;)
Enjoy !