An open API service indexing awesome lists of open source software.

https://github.com/roboticsbrno/robotarnawall

Simple PHP web page for quick sharing information during lecture or event.
https://github.com/roboticsbrno/robotarnawall

Last synced: 8 months ago
JSON representation

Simple PHP web page for quick sharing information during lecture or event.

Awesome Lists containing this project

README

          

# robotarnawall
Simple PHP web page for quick sharing information during lecture or event.

The files with suffix `.dist` (`config.php.dist`, `data.sqlite.dist`) are specific for each instance of wall. You must **delete** the suffix `.dist` for correct working.

## config.php.dist

In this file you can set the wall name and passwords for editing the content on the wall.

## data.sqlite.dist

Empty database.

## Available tags

### Tag [code]
To put on the wall text as source code (C/C++, Python, ...).

```
[code]
// source: http://platformio.org/lib/show/1739/ServoESP32
#include "LearningKit.h"
#include

static const int servoPin = S1;
static const int potentiometerPin = 32;

Servo servo1;

void setup() {
Serial.begin(115200);
servo1.attach(servoPin);
}

void loop() {
int servoPosition = map(analogRead(potentiometerPin), 0, 4096, 0, 180);
servo1.write(servoPosition);
Serial.println(servoPosition);
delay(20);
}[/code]
```

### Tag [raw]
To put on the wall HTML elements and code which you want to process on the user side (in the browser).

```
[raw]


[/raw]
```

## Screenshots
Wall with `raw` tag example
![Wall with raw tag example](./media/wall_raw_tag_example.png)

Wall with `code` tag example
![Wall with code tag example](./media/wall_code_tag_example.png)

Wall with text
![Wall with text](./media/wall_text_example.png)