Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Luos-io/LuosHAL
List of all Luos HAL (Hardware Abstraction Layers).
https://github.com/Luos-io/LuosHAL
edge embedded embedded-systems hal luos
Last synced: 2 months ago
JSON representation
List of all Luos HAL (Hardware Abstraction Layers).
- Host: GitHub
- URL: https://github.com/Luos-io/LuosHAL
- Owner: Luos-io
- License: apache-2.0
- Created: 2020-09-14T13:36:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-02T09:02:20.000Z (over 2 years ago)
- Last Synced: 2023-03-03T20:09:33.754Z (almost 2 years ago)
- Topics: edge, embedded, embedded-systems, hal, luos
- Language: C
- Homepage:
- Size: 257 KB
- Stars: 23
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![](https://github.com/Luos-io/luos_engine/actions/workflows/build.yml/badge.svg)
[![](https://img.shields.io/github/license/Luos-io/LuosHAL)](https://github.com/Luos-io/luos_engine/blob/master/LICENSE)
[![](https://img.shields.io/badge/Luos-Documentation-34A3B4)](https://www.luos.io/docs)
[![](http://certified.luos.io)](https://www.luos.io)
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/luos/library/luos_engine.svg)](https://registry.platformio.org/libraries/luos/luos_engine)[![](https://img.shields.io/discord/902486791658041364?label=Discord&logo=discord&style=social)](http://bit.ly/JoinLuosDiscord)
[![](https://img.shields.io/reddit/subreddit-subscribers/Luos?style=social)](https://www.reddit.com/r/Luos)> If you want to clone this repo, please refer to the [cloning repository](#cloning-repository) section.
This repository regroups all of the HAL (Hardware Abstraction Layers) routines usable with Luos : https://github.com/Luos-io/Luos
You can choose the one you need for your microcontroller or create your own following our templates and guidelines.
Do not hesitate to share your project and ask us about features on [our Discord](http://bit.ly/JoinLuosDiscord).# Introduction to Luos :bulb:
We started designing Luos with the conviction that building electronic systems should be made easier than it is today. The majority of development time should be spent on designing the applications and behaviors instead of on complex and time-and-money-eating technicalities. To give a simple example, adding a new sensor (for example a distance sensor) to an electronic device in conception should not take more than a few minutes. So you can try, test and quickly iterate on a project to quickly design what users truly want.
Luos works like a [microservice architecture](https://en.wikipedia.org/wiki/Microservices) in the software world, and a [distributed operating system](https://en.wikipedia.org/wiki/Distributed_operating_system): it encapsulates any software or hardware function to make it communicate and work with any other encapsulated service, however it was developed, either on bare metal or on top of an embedded OS.
This repository contains the Luos library that you will need to include in your software projects. To correctly configure your hardware, it should be used in conjunction with the [LuosHAL project](https://github.com/Luos-io/LuosHAL).
Watch this video for additional details:
## Unfamiliar with Luos?
→ You can start by reading the [Basics](https://docs.luos.io/docs/luos-technology/basics/) page.
## You want to tune your device's behavior?
→ You can make your own embedded [Luos apps](https://docs.luos.io/docs/api/list).
→ You can control your devices through a [Gate](https://docs.luos.io/docs/tools/gate) service using [Pyluos](https://docs.luos.io/docs/tools/pyluos).
If you have questions about a specific topic, you can refer or ask it on the [Luos' subreddit](https://www.reddit.com/r/Luos). And if you have suggestions about this documentation, don't hesitate to create pull requests.
## Compatible MCU
### STM32F0 family:
- STM32F0x0
- STM32F0x1
- STM32F0x2 -> LuosHAL default configuration on NUCLEO-F072RB
- STM32F0x8### STM32F4 family:
- STM32F401
- STM32F405/415
- STM32F407/417
- STM32F410 -> LuosHAL default configuration on NUCLEO-F410RB
- STM32F411
- STM32F412
- STM32F413/423
- STM32F427/437
- STM32F429/439
- STM32F446
- STM32F469/479### STM32G4 family:
- STM32G4x1-> LuosHAL default configuration on NUCLEO-G431KB
- STM32G4x3
- STM32G4x4### STM32L4 family:
- STM32L4x1
- STM32L4x2-> LuosHAL default configuration on NUCLEO-L432KC
- STM32L4x3
- STM32L4x5
- STM32L4x6### ATSAMD family:
- ATSAMD21Exx
- ATSAMD21Gxx
- ATSAMD21Jxx -> LuosHAL default configuration on SAMDJ18A### ARDUINO family:
- ARDUINO_SAMD_ZERO -> LuosHAL default configuration on ARDUINO ZERO
- ARDUINO_SAMD_MKRZERO
- ARDUINO_SAMD_MKR1000
- ARDUINO_SAMD_MKRWIFI1010
- ARDUINO_SAMD_MKRFox1200
- ARDUINO_SAMD_MKRWAN1300
- ARDUINO_SAMD_MKRWAN1310
- ARDUINO_SAMD_MKRGSM1400
- ARDUINO_SAMD_MKRNB1500
- ARDUINO_SAMD_NANO_33_IOT
- ARDUINO_SAMD_MKRVIDOR4000## Don't hesitate to read [our documentation](https://www.luos.io/docs), or to post your questions/issues on the [Luos' Discord server](https://discord.gg/luos). :books: