Can't seam to find a guide for adding new apps

why is that not in guides

Hey, thank you for supporting our work and welcome to the forum :slight_smile:

What CircuitMess device do you have?

I have a ringo, arduino might be easy, but python

Hey, you can find a list of Ringo-related tutorials here:
https://circuitmess.com/resources/guides/en

In order to add more apps and games to your Ringo, you need to drag and drop the folder with the app data to your SD card.

We will write a step by step tutorial for this in the future

that would be helpfull

eyy if you are making a new apps I want to see them. Thanks for the work. I’m excited

1 Like

sure, I’m making a simple ebook reader in python right now

1 Like

def printfile():
message = f.read()
print(message)
f.close()
x=input("next ")
if x==“close”:
quit()
else:
print(chr(27)+’[2j’)
print(’\033c’)
print(’\x1bc’)
gh=1
while gh==1:
ctlg=input("what book would you like to read from the catalog ")
f = open(ctlg,‘r’)
printfile()
#put apropriat indents

you put text documents in the folder. you then input the file name. the version I’ll put for download will have a lot of old books including but not limited to sherlock holmes and the wizard of oz

perfect. Open source? and thanks

1 Like

i put the source code up above

1 Like

once I add the books for the final version, I’ll put it in git hub for download

how would I convert a python code to binary

did you figure out how to put it on the ringo?