Releases: eliasgroll/pbi
Release list
Hardware Emulation
- Optimized for small screens
- Full Hardware emulation
- Monitored EEPROM shows the last acessed byte
Test new features (press PIN7 after a while):
' {$STAMP BS1}
SYMBOL seed = B0
SYMBOL lights = B1
SYMBOL beat = 200
DIRS=%01111111 'ports 76543210
PINS=%00000000 'ports 76543210
pin:
IF PIN7 = 1 THEN mem
RANDOM seed
lights = seed // 126
PINS = lights
PAUSE beat
GOTO pin
mem:
FOR B0 = 0 TO 255
B1 = 255-B0
WRITE B0, B1
WRITE B1,B0
NEXT
GOSUB overflow bugfix
Fixed the bug which escalated the GOSUB overflow when a program that contains subroutines was executed multiple times.
Fixed Help-View
Hardware Emulation (Preview)
It is now possible to interact with the virtual Microcontroller. The system works - but has to be optimized
Coming soon: IN/OUT logic, look and feel
Test it:
' {$STAMP BS1}
SYMBOL refresh_rate = 100
loop:
DEBUG CLS
DEBUG PIN0,CR,PIN1,CR,PIN2,CR,PIN3,CR,PIN4,CR,PIN5,CR,PIN6,CR,PIN7,CR,CR
PAUSE refresh_rate
GOTO loop
Look and feel
Improved design & you can now change the color of the console!
How to install
- Download the pbi-win32.zip and unzip it to a directory of your choice
- Run it on windows (linux/mac is coming soon) by double-clicking pbi.exe
Special thanks to each beta tester!
A german documentation:
Dokumentation(deutsch).pdf
IDE-update
This is the second prototype of the IDE.
The updated IDE adds ' {$STAMP BS1} to every new file and the new content-assistance requires no more upper-case keywords.
How to install
1.Download the pbi-win32.zip and unzip it to a directory of your choice
2.Run it on windows (linux/mac is coming soon) by double-clicking pbi.exe
Special thanks to each beta-tester!
IDE-beta
This is the first prototype of the IDE. From now on a .zip containing the IDE is added with every release.
How to install
- Download the pbi-win32.zip and unzip it to a directory of your choice
- Run it on windows (linux/mac is coming soon) by double-clicking pbi.exe
Special thanks to each beta tester!
A german documentation:
Dokumentation(deutsch).pdf
Additional build logic
v2.15.1 Deployment in Travis
First version
Version as used for the "Jugend forscht" competition.