rp2: Add support for DHT11 and DHT22 sensors.

This commit is contained in:
iabdalkader
2022-01-02 15:07:33 +02:00
committed by Damien George
parent 01d9b7adde
commit 908e4cf5c3
4 changed files with 7 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
*/
#include "py/runtime.h"
#include "drivers/dht/dht.h"
#include "modrp2.h"
STATIC const mp_rom_map_elem_t rp2_module_globals_table[] = {
@@ -32,6 +33,8 @@ STATIC const mp_rom_map_elem_t rp2_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR_Flash), MP_ROM_PTR(&rp2_flash_type) },
{ MP_ROM_QSTR(MP_QSTR_PIO), MP_ROM_PTR(&rp2_pio_type) },
{ MP_ROM_QSTR(MP_QSTR_StateMachine), MP_ROM_PTR(&rp2_state_machine_type) },
{ MP_ROM_QSTR(MP_QSTR_dht_readinto), MP_ROM_PTR(&dht_readinto_obj) },
};
STATIC MP_DEFINE_CONST_DICT(rp2_module_globals, rp2_module_globals_table);