|
Complete Sample Demo for BluetoothMesh like Nordic Semiconductor "Light_Switch"
I have added bt_mesh_model_publish( ) in thread which starts to execute after getting interrupt from button. But when I click button multiple times in very short period of time then only thread execut
I have added bt_mesh_model_publish( ) in thread which starts to execute after getting interrupt from button. But when I click button multiple times in very short period of time then only thread execut
|
By
...
· #342
·
|
|
Complete Sample Demo for BluetoothMesh like Nordic Semiconductor "Light_Switch"
Hello Sir, I have attached my main.c with this email. (from Zephyr Mesh Demo) This main.c is mostly inspired from information provided by Steve Brown. Please check it. Here, root_models[2] is BT_MESH_
Hello Sir, I have attached my main.c with this email. (from Zephyr Mesh Demo) This main.c is mostly inspired from information provided by Steve Brown. Please check it. Here, root_models[2] is BT_MESH_
|
By
...
· #343
·
|
|
Complete Sample Demo for BluetoothMesh like Nordic Semiconductor "Light_Switch"
Thank you for the clarification. Could you please tell me, what should I do next ? I need agenda to deeply understand concept of #BluetoothMesh.
Thank you for the clarification. Could you please tell me, what should I do next ? I need agenda to deeply understand concept of #BluetoothMesh.
|
By
...
· #346
·
|
|
Subscribing to heartbeat messages in a mesh network
how to subscribe dynamically to heartbeat of any node (using meshctl) ? I've enable CONFIG_BT_MESH_CFG_CLI=y this in prj.conf Added "Configuration Client Model" into list of models supported by root_m
how to subscribe dynamically to heartbeat of any node (using meshctl) ? I've enable CONFIG_BT_MESH_CFG_CLI=y this in prj.conf Added "Configuration Client Model" into list of models supported by root_m
|
By
...
· #422
·
|
|
[Zephyr-devel] Working with mesh shell
Hi to all, Need proper sequence of all commands to start working with #mesh_shell [ to activate Model 1000 (which subscribe to 0xC000) as well as 1001 (which publish to 0xC000) ] #meshctl take care of
Hi to all, Need proper sequence of all commands to start working with #mesh_shell [ to activate Model 1000 (which subscribe to 0xC000) as well as 1001 (which publish to 0xC000) ] #meshctl take care of
|
By
...
· #433
·
|
|
[Zephyr-devel] Introduction of Youtube video, "Bluetooth Mesh Demo at ELCE Prague 2017"
1) Download this --> https://git.kernel.org/pub/scm/bluetooth/bluez.git/snapshot/bluez-5.48.tar.gz 2) tar -xvf bluez-5.48.tar.gz 3) mv bluez-5.48 bluez 4)cd bluez 5)./bootstrap-configure 6)make 7)make
1) Download this --> https://git.kernel.org/pub/scm/bluetooth/bluez.git/snapshot/bluez-5.48.tar.gz 2) tar -xvf bluez-5.48.tar.gz 3) mv bluez-5.48 bluez 4)cd bluez 5)./bootstrap-configure 6)make 7)make
|
By
...
· #444
·
|
|
[Zephyr-devel] Introduction of Youtube video, "Bluetooth Mesh Demo at ELCE Prague 2017"
Glad to hear it!
By
...
· #448
·
|
|
distance provisioning & configuration of #BluetoothMesh DEVICEs using single GATT-Proxy NODE
#bluetoothmesh
Hello, Currently I have been doing provisioning of #BluetoothMesh DEVICEs using #meshctl utility. But I've to individually makes connection with each device over PB-GATT for provisining & configuratio
Hello, Currently I have been doing provisioning of #BluetoothMesh DEVICEs using #meshctl utility. But I've to individually makes connection with each device over PB-GATT for provisining & configuratio
|
By
...
· #450
·
|
|
#BluetoothMesh self provisioning & configuration for Generic Models for testing
#bluetoothmesh
Hello World !! ----------------------------------------------------------------------------------------------------------------------------- { "$schema":"file:\/\/\/BlueZ\/Mesh\/schema\/mesh.jsonschem
Hello World !! ----------------------------------------------------------------------------------------------------------------------------- { "$schema":"file:\/\/\/BlueZ\/Mesh\/schema\/mesh.jsonschem
|
By
...
· #451
·
|
|
understanding of #BluetoothMesh OOB authentication procedure
#bluetoothmesh
Hello World !! https://blog.bluetooth.com/provisioning-a-bluetooth-mesh-network-part-1 By reading this link, I understood that netKey, appKey, dveKey are AES-128 symmetric keys which are exchanged ove
Hello World !! https://blog.bluetooth.com/provisioning-a-bluetooth-mesh-network-part-1 By reading this link, I understood that netKey, appKey, dveKey are AES-128 symmetric keys which are exchanged ove
|
By
...
· #460
·
|
|
understanding of #BluetoothMesh OOB authentication procedure
#bluetoothmesh
Hi Johan, Thanks for your reply. https://blog.bluetooth.com/provisioning-a-bluetooth-mesh-network-part-1 https://blog.bluetooth.com/provisioning-a-bluetooth-mesh-network-part-2#_ftn2 I've been further
Hi Johan, Thanks for your reply. https://blog.bluetooth.com/provisioning-a-bluetooth-mesh-network-part-1 https://blog.bluetooth.com/provisioning-a-bluetooth-mesh-network-part-2#_ftn2 I've been further
|
By
...
· #462
·
|
|
understanding of #BluetoothMesh OOB authentication procedure
#bluetoothmesh
Hi Johan, Many many thanks Johan, for your in detail explanation. I don't want to use static public-private key pair for DEVICE & happy with current implementation. It is inherently more secure since
Hi Johan, Many many thanks Johan, for your in detail explanation. I don't want to use static public-private key pair for DEVICE & happy with current implementation. It is inherently more secure since
|
By
...
· #472
·
|
|
support for NFFS file system
Hello World !! My question is related to this link's requirement, https://lists.zephyrproject.org/pipermail/zephyr-devel/2017-July/007888.html Is Zephyr going to add support for NFFS file system in up
Hello World !! My question is related to this link's requirement, https://lists.zephyrproject.org/pipermail/zephyr-devel/2017-July/007888.html Is Zephyr going to add support for NFFS file system in up
|
By
...
· #473
·
|
|
[Zephyr-devel] FW: support for NFFS file system
#include <fs.h> void main( ) { fs_file_t *my_zfp; unsigned char ptr[32]; fs_open(my_zfp,"mesh.prv"); fs_write(my_zfp,"Hello World !! ",16); fs_read(my_zfp,ptr,32); fs_close(my_zfp); printk("%s",ptr);
#include <fs.h> void main( ) { fs_file_t *my_zfp; unsigned char ptr[32]; fs_open(my_zfp,"mesh.prv"); fs_write(my_zfp,"Hello World !! ",16); fs_read(my_zfp,ptr,32); fs_close(my_zfp); printk("%s",ptr);
|
By
...
· #477
·
|
|
understanding of #BluetoothMesh OOB authentication procedure
#bluetoothmesh
>> How provisioner will understand from where to received/read DEVICE >> public key out of *Bluetooth-Link* or *OOB* channel ? >I believe this is out of scope for the specification, since any OOB >cha
>> How provisioner will understand from where to received/read DEVICE >> public key out of *Bluetooth-Link* or *OOB* channel ? >I believe this is out of scope for the specification, since any OOB >cha
|
By
...
· #479
·
|
|
[Zephyr-devel] FW: support for NFFS file system
I copied & pasted $zephyr/ext/fs/nffs directory into $zephyr_base/include ---------------------------------------------------------------------------------------------------------------------- & edit
I copied & pasted $zephyr/ext/fs/nffs directory into $zephyr_base/include ---------------------------------------------------------------------------------------------------------------------- & edit
|
By
...
· #484
·
|
|
[Zephyr-devel] FW: support for NFFS file system
Hi Vinayak, it works !! I make following changes ..... fs_file_t my_zfp; unsigned char ptr[32]; for(cntr=0;cntr<=31;cntr++) { ptr[cntr]='@'; } fs_open(&my_zfp,"mesh.prv"); fs_write(&my_zfp,"0123456789
Hi Vinayak, it works !! I make following changes ..... fs_file_t my_zfp; unsigned char ptr[32]; for(cntr=0;cntr<=31;cntr++) { ptr[cntr]='@'; } fs_open(&my_zfp,"mesh.prv"); fs_write(&my_zfp,"0123456789
|
By
...
· #486
·
|
|
[Zephyr-devel] FW: support for NFFS file system
fs_open( ) returns -19 instead of 0.
fs_open( ) returns -19 instead of 0.
|
By
...
· #488
·
|
|
hiding GATT peripheral services till Passkey pairing
Hello World !! https://devzone.nordicsemi.com/blogs/1235/nrf-blinky-compatible-firmware-using-zephyr-blueto/ I modified $zephyr_base/sample/bluetooth/peripheral/src/main.c as mentioned above. Using nR
Hello World !! https://devzone.nordicsemi.com/blogs/1235/nrf-blinky-compatible-firmware-using-zephyr-blueto/ I modified $zephyr_base/sample/bluetooth/peripheral/src/main.c as mentioned above. Using nR
|
By
...
· #489
·
|
|
[Zephyr-devel] FW: support for NFFS file system
Thanks Michael !! Now I can access flash of nRF52840 using NFFS file system APIs. I request Zephyr OS maintainer to create & add following attached main.c under $zephyr_base/samples/boards/nrf52/nffs/
Thanks Michael !! Now I can access flash of nRF52840 using NFFS file system APIs. I request Zephyr OS maintainer to create & add following attached main.c under $zephyr_base/samples/boards/nrf52/nffs/
|
By
...
· #492
·
|