Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

📚 LoRaMESH library for STM8L.

License

NotificationsYou must be signed in to change notification settings

MarcoAOC/LoRaMESH_STM8L

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LoRaMESH STM8L Library

Library to configureEndDevice LoRaMESH GPIO pins, requesting and sending data from/to the nodes. It was based on the followingRadioenge's Library

How to use

Download all the files fromthis root and include them into your project. This step is mandatory to use them with STM8L Discovery board and your"standard peripheral library".

Configuring USART Interface

As STM8L152C6T6 has only one USART interface and the LoRaMESH module has two, the choice of which interface will be used will be made through the hardware connection. It is possible to choose two ways to configure USART: using Arduino default or using manual configurations. Arduino's default mode works well with the LoRa MESH module. For manual configurations you may use the types defined in "stm8l15x_usart" provided by ST.

//Easy wayuint32_tbaudrate=9600;ArduinoSerialCommandsInit(baudrate);//Manual/* USART configured as follow:     - BaudRate = 9600 baud     - Word Length = 8 Bits     - One Stop Bit     - No parity*/SerialCommandsInit(9600,USART_WordLength_8b,USART_StopBits_1,USART_Parity_No);

Main Features

The library main features are based on the functions to request and send data using the pins connected to other network modules.

/* GpioConfig */GpioConfig(NODEID,PIN,GPIOMODE,PULL_R_TYPE);/* GpioWrite */GpioWrite(NODEID,PIN,ValueForWrite);/* GpioRead */GpioRead(NODEID,PIN,&ReturnedValue);

GPIO's modes

Configure the GPIO pins with the following modes:

/* DIGITAL_IN */GpioConfig(NODEID,PIN,DIGITAL_IN,PULL_R_TYPE);/* DIGITAL_OUT */GpioConfig(NODEID,PIN,DIGITAL_OUT,PULL_R_TYPE);/* ANALOG_IN */GpioConfig(NODEID,PIN,ANALOG_IN,PULL_R_TYPE);

Pull Resistor Types

Configure the pull resistors with the following types

/* PULL_OFF */GpioConfig(NODEID,PIN,DIGITAL_IN,PULL_OFF);/* PULLUP */GpioConfig(NODEID,PIN,DIGITAL_OUT,PULLUP);/* PULLDOWN */GpioConfig(NODEID,PIN,ANALOG_IN,PULLDOWN);

Request Status

The data request return is given by the following status to indicate error or not:

/* MESH_OK */while(LocalRead(&localId,&localNet,&localUniqueId)!=MESH_OK);/* MESH_ERROR */if(GpioRead(NODEID,PIN,&ReturnedValue)==MESH_ERROR){//Invalid value}

Running a example

Example code can be downloaded fromthis root following the instructions.

Documentation

Full documentation descriptionhere.

How to contribute

Readthis guide.

Contributors


@vjpamorim

@Radioenge

Author


@MarcoAOC

Do you like this library? Pleasestar this project on GitHub!

About

📚 LoRaMESH library for STM8L.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp