Skip to content

Commit

Permalink
Move experiments into directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Workshop2 committed Apr 19, 2020
1 parent d72cebd commit 28b5f39
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Psybot } from "./psybot-lib/psybot";
import { Psybot } from "../psybot-lib/psybot";
var config = require('./config/config');
import delay from "./psybot-lib/delay";
import delay from "../psybot-lib/delay";

const run = async () => {
var psybot = await Psybot.Create(config.settings.usbConnection);
Expand Down
4 changes: 2 additions & 2 deletions motor-test.ts → experiments/motor-test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Psybot } from "./psybot-lib/psybot";
import { Psybot } from "../psybot-lib/psybot";
var config = require('./config/config');
import delay from "./psybot-lib/delay";
import delay from "../psybot-lib/delay";

const run = async () => {
var psybot = await Psybot.Create(config.settings.usbConnection);
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions servo-alignment.ts → experiments/servo-alignment.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Psybot } from "./psybot-lib/psybot";
import { Psybot } from "../psybot-lib/psybot";
var config = require('./config/config');
import { Servo } from "johnny-five";
import delay from "./psybot-lib/delay";
import delay from "../psybot-lib/delay";

const run = async () => {
var psybot = await Psybot.Create(config.settings.usbConnection);
Expand Down
2 changes: 1 addition & 1 deletion servos.ts → experiments/servos.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Psybot } from "./psybot-lib/psybot";
import { Psybot } from "../psybot-lib/psybot";
var config = require('./config/config');

const run = async () => {
Expand Down
4 changes: 2 additions & 2 deletions slowing-down.ts → experiments/slowing-down.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Psybot } from "./psybot-lib/psybot";
import { Psybot } from "../psybot-lib/psybot";
var config = require('./config/config');
import delay from "./psybot-lib/delay";
import delay from "../psybot-lib/delay";

const run = async () => {
var psybot = await Psybot.Create(config.settings.usbConnection);
Expand Down
2 changes: 1 addition & 1 deletion test-board.ts → experiments/test-board.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Psybot } from "./psybot-lib/psybot";
import { Psybot } from "../psybot-lib/psybot";
var config = require('./config/config');

const run = async () => {
Expand Down

0 comments on commit 28b5f39

Please sign in to comment.