Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
w84death committed Jul 26, 2023
1 parent 89b6072 commit a4b46a7
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ System should run on any MicroPython supproted board but it's tested and develop
- [smolOS homepage (https)](https://smol.p1x.in/os/)

## Screens
![smolOS version 0.8a-XIAO](media/smolos-08a.png)
![smolOS commands version 0.8a-XIAO](media/commands-08a.png)
![smolOS editor version 0.8a-XIAO](media/editor-08a.png)
![smolOS XIAO](media/smolos.png)
![smolOS list](media/list.png)
![smolOS help](media/help.png)
![smolOS editor](media/edit.png)

## Real Life Usecases

Expand Down Expand Up @@ -63,7 +64,7 @@ First start. Or after flashing new main.py file. Restart the microcontroller:
### Autoboot
This should restart the device and "boot" you into the smolOS. Like so:

![smolOS version 0.8a-XIAO](media/smolos-08a.png)
![smolOS XIAO](media/smolos.png)

### Manual
If you put ```smolos.py``` then you need to boot the system by hand.
Expand Down
Binary file removed media/commands-08a.png
Binary file not shown.
File renamed without changes
Binary file added media/help.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed media/smolos-08a.png
Binary file not shown.
Binary file added media/smolos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion smolos.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def edit(self, filename=""):
if filename=="":
display_name = "NEW UNNAMED FILE"

print("\033[7m File:",display_name,"Lines:",line_count," // `h` help, `b` back,`n` next page\t\033[0m")
print("\033[7m File:",display_name,"Lines:",line_count," // `help`, `<` back,`>` next page, `quit`\t\033[0m")

for line_num,line in enumerate(print_lines,start=start_index + 1):
print(line_num,":",line.strip())
Expand Down

0 comments on commit a4b46a7

Please sign in to comment.