Skip to content

Commit

Permalink
add pikastddevice and tested ok
Browse files Browse the repository at this point in the history
  • Loading branch information
lyon committed Sep 8, 2021
1 parent bb10916 commit f1d90fd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion src/package/pikascript/main.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import PikaStdLib
import PikaStdDevice
from PikaObj import *

print('hello world')
mem = PikaStdLib.MemChecker()
print('mem.max :')
mem.max()
print('mem.now :')
mem.now()
mem.now()
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "BaseObj.h"
#include "PikaStdDeivce_GPIO.h"
#include "PikaStdDevice_GPIO.h"

void PikaStdDeivce_GPIO_init(PikaObj *self)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "BaseObj.h"
#include "PikaStdDeivce_Time.h"
#include "PikaStdDevice_Time.h"

void PikaStdDeivce_Time_sleep_ms(PikaObj *self, int ms)
{
Expand Down

0 comments on commit f1d90fd

Please sign in to comment.