forked from bbcmicrobit/micropython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a simple love module to display a beating heart when imported.
Includes a function within the module to redisplay the animation at will.
- Loading branch information
Showing
4 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
|
||
/* | ||
* This file is part of the Micro Python project, http://micropython.org/ | ||
* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2015 Damien P. George | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include "MicroBit.h" | ||
|
||
void love(uint8_t interval = 500 /* ms */) { | ||
// Display a beating heart then clear the screen. | ||
const uint8_t heart[] = { | ||
0, 0, 0, 0, 0, 0, 1, 0, 1, 0, | ||
0, 1, 0, 1, 0, 1, 1, 1, 1, 1, | ||
0, 1, 1, 1, 0, 1, 1, 1, 1, 1, | ||
0, 0, 1, 0, 0, 0, 1, 1, 1, 0, | ||
0, 0, 0, 0, 0, 0, 0, 1, 0, 0, | ||
}; | ||
MicroBitImage i(10, 5, heart); | ||
for(uint8_t iteration = 0; iteration < 5; iteration++) { | ||
uBit.display.animate(i, interval, 5); | ||
uBit.sleep(interval); | ||
} | ||
uBit.display.clear(); | ||
} | ||
|
||
extern "C" { | ||
|
||
#include "py/obj.h" | ||
|
||
STATIC mp_obj_t love_badaboom(void) { | ||
// make | ||
love(); | ||
// ! war | ||
return mp_const_none; | ||
} | ||
MP_DEFINE_CONST_FUN_OBJ_0(love___init___obj, love_badaboom); | ||
STATIC MP_DEFINE_CONST_FUN_OBJ_0(love_badaboom_obj, love_badaboom); | ||
|
||
STATIC const mp_map_elem_t love_module_globals_table[] = { | ||
{ MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_love) }, | ||
{ MP_OBJ_NEW_QSTR(MP_QSTR___init__), (mp_obj_t)&love___init___obj }, | ||
{ MP_OBJ_NEW_QSTR(MP_QSTR_badaboom), (mp_obj_t)&love_badaboom_obj }, | ||
}; | ||
|
||
STATIC MP_DEFINE_CONST_DICT(love_module_globals, love_module_globals_table); | ||
|
||
const mp_obj_module_t love_module = { | ||
.base = { &mp_type_module }, | ||
.name = MP_QSTR_love, | ||
.globals = (mp_obj_dict_t*)&love_module_globals, | ||
}; | ||
|
||
} |