Skip to content

GuaiLong618/pando-embedded-framework

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

##pando-embedded-framework #introduction When connecting a hardware device to the internet, we need a cloud, a device, and a gateway. We have to code in the device to get the data of the real word by hardware driver, code in the gateway to connect our device to the cloud and send data to the cloud by network, code in the cloud to deal with the business. We have to do so much, on the other hand, because of the variety of gateway and device, we have to implement the save business on different platform, such as, esp8266, 5350, stm32, ardunio, and so on.
The structure of conneting things to the internet is like below:
normal-IOT-structure
pando-embedded-framwork is different in that, it abstracts the common gateway business, such as register, login, access, and so on, leave the driver interface to be implemented on different platform; on the other hand, it abstracts the device common operations.
pando-IOT_structure
#directory structure
-doc -framework |-gateway |-lib |-platform |-include |-src |-stm32 |-protocol |-subdevice -example |-stm32

doc:the document.
gateway:the common gateway business.
lib:the library used.
include:the function declarations used in the framework, which should be implemented in different platforms.
src:contains the implementation of the interface in include for different platforms.
subdevice:the abstractation of device common operation.
example:because of that this framework is a library, so example contains base initialization and main function to run.
#how to If you want to use this framework in your own project, what you need to do is to implement the interface in include directory, and to add your own devices which are defined in subdevice. We will offer examples for you to refer to.
If you want to know more about the whole framework, you can follow the project pando-cloud to learn about the cloud. And the project tisan-kit contains more examples about the framework by our development board tisan.
We also appreciate you to share your implementation on your platform or improve this framework. If you want to do so, there is a coding style for you to read first in order to cooperate better. #Example stm32+3G esp8266

About

a middleware between server and hardware driver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 90.9%
  • Makefile 4.9%
  • C++ 2.2%
  • Objective-C 2.0%