Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/irvyncornejo/hardware-lib

Librería para el control de HW para arduino y raspberry pi pico
https://github.com/irvyncornejo/hardware-lib

arduino c-plus-plus hardware iot python raspberry-pi-pico

Last synced: 7 days ago
JSON representation

Librería para el control de HW para arduino y raspberry pi pico

Awesome Lists containing this project

README

        

# Librería para control de Hardware
![kaanbal-chimalli](https://drive.google.com/uc?export=view&id=1O7LklcChPpF3NKHRJjVY-0sa80OAXu5J)
## Arduino
* Shield para Arduino nano Kaanbal
* C++

### Comprimir archivo en power shell, para después añadir desde el IDE de arduino
```
Compress-Archive .\kaanbal-lib\*.* -DestinationPath .\kaanbal.zip -F
```
### Copiar a la carpeta de libraries
```
$user="irvyn"
Copy-Item -Path "C:\Users\$user\Documents\ic\hwlib\Kaanbal" -Destination "C:\Users\$user\Documents\Arduino\libraries" -Recurse -Force
```
### Uso
```C++
#include

SingleActuator led(13);

void setup() {
}

void loop() {
led.changeState(HIGH);
delay(1000);
led.changeState(LOW);
delay(1000);
}
```

## Raspberry pico o pico w
* Python
GPIO control para raspberry pi pico

### Input Devices
- Touch Sensor
- Potenciometer
- Joystick
- PIR
- LM35
- Nextion Display
### Ouput Devices
- LED
- Relay
- Solid state relay
- Motor DC
- RGB
- Servo motor
- NeoPixel
### Descargar paquete
```
pip install gpiopico
```
### Uso
```python
from gpiopico import Led

led1 = Led(2, True)
led1.on()
led1.change_pwm(125) #value 0-255
```