Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
5e5aef53
Commit
5e5aef53
authored
6 years ago
by
Eric Poulsen
Committed by
Damien George
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
esp32/modesp32: Add hall_sensor() function.
parent
6ddcfe68
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ports/esp32/modesp32.c
+8
-0
8 additions, 0 deletions
ports/esp32/modesp32.c
with
8 additions
and
0 deletions
ports/esp32/modesp32.c
+
8
−
0
View file @
5e5aef53
...
...
@@ -32,6 +32,7 @@
#include
"soc/rtc_cntl_reg.h"
#include
"soc/sens_reg.h"
#include
"driver/gpio.h"
#include
"driver/adc.h"
#include
"py/nlr.h"
#include
"py/obj.h"
...
...
@@ -138,6 +139,12 @@ STATIC mp_obj_t esp32_raw_temperature(void) {
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_0
(
esp32_raw_temperature_obj
,
esp32_raw_temperature
);
STATIC
mp_obj_t
esp32_hall_sensor
(
void
)
{
adc1_config_width
(
ADC_WIDTH_12Bit
);
return
MP_OBJ_NEW_SMALL_INT
(
hall_sensor_read
());
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_0
(
esp32_hall_sensor_obj
,
esp32_hall_sensor
);
STATIC
const
mp_rom_map_elem_t
esp32_module_globals_table
[]
=
{
{
MP_ROM_QSTR
(
MP_QSTR___name__
),
MP_ROM_QSTR
(
MP_QSTR_esp32
)
},
...
...
@@ -145,6 +152,7 @@ STATIC const mp_rom_map_elem_t esp32_module_globals_table[] = {
{
MP_ROM_QSTR
(
MP_QSTR_wake_on_ext0
),
MP_ROM_PTR
(
&
esp32_wake_on_ext0_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_wake_on_ext1
),
MP_ROM_PTR
(
&
esp32_wake_on_ext1_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_raw_temperature
),
MP_ROM_PTR
(
&
esp32_raw_temperature_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_hall_sensor
),
MP_ROM_PTR
(
&
esp32_hall_sensor_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_ULP
),
MP_ROM_PTR
(
&
esp32_ulp_type
)
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment