Advertisement
mistakirill

Untitled

Oct 5th, 2021
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var TelegramBot = require('node-telegram-bot-api');
  2. var exec = require('child_process').exec;
  3. var BOT_TOKEN = '1950107148:AAH4OdqorqzZjdWTxKopNl0qYjeA5CcnQBo';
  4. var bot = new TelegramBot(BOT_TOKEN, {polling: true});
  5.  
  6.  
  7. bot.onText(/\/photo/, function (msg) {
  8. console.log('photo');
  9. takePhoto(msg);
  10. });
  11.  
  12. function takePhoto(msg) {
  13. exec('raspistill -o /home/pi/pi-camera-bot/photos/myphoto%04d.jpg -t 30000 -tl 2000');
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement