Add vibra module
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
added 6 commits
-
179dbb7e...63cec98c - 5 commits from branch
card10:master
- 44cc8db1 - Add vibra module
-
179dbb7e...63cec98c - 5 commits from branch
- pycardium/modules/vibra.c 0 → 100644
8 if (state_obj == mp_const_true) { 9 epic_vibra_set(1); 10 } else if (state_obj == mp_const_false){ 11 epic_vibra_set(0); 12 } else { 13 mp_raise_TypeError("expected bool"); 14 } 15 return mp_const_none; 16 } 17 STATIC MP_DEFINE_CONST_FUN_OBJ_1(vibra_set_obj, mp_vibra_set); 18 19 // Define all properties of the example module. 20 // Table entries are key/value pairs of the attribute name (a string) 21 // and the MicroPython object reference. 22 // All identifiers and strings are written as MP_QSTR_xxx and will be 23 // optimized to word-sized integers by the build system (interned strings). Please remove this comment. This belongs into the Pycardium Module Development guide and not into this file.
changed this line in version 4 of the diff
added 26 commits
-
44cc8db1...acb9e8d4 - 25 commits from branch
card10:master
- b9b30290 - Add vibra module
-
44cc8db1...acb9e8d4 - 25 commits from branch
assigned to @rahix
added 3-Epicardium 3-Module 3-Pycardium labels
removed 3-Epicardium 3-Pycardium labels
mentioned in commit d6a66403
Please register or sign in to reply