Test Info
- System image:2016-03-18-raspbian-jessie.img
- Board type: Raspberry PI 3
RPI LCD1602 Add-on V2.0
- Follow the tutorial to operate, run it through
-
Link:
http://www.gooligum.com.au/blog-section/LCD1602-setup
RPI OLED Add-on V2.0
- Enable Raspberry Pi i2c
-
Modify the configuration file:
-
sudo nano /etc/modules
,Add two lines showed below -
i2c-bcm2708
-
i2c-dev
-
-
Edit & Compile
-
cd ~/Segnix/libraries/itead_SSD1306/examples/oled_Animation_Sample
-
sudo nano oled_Animation_Sample.ino
-
#define OLED_RESET 7
-
sudo segnix test oled_Animation_Sample.ino
-
-
Run
-
sudo ./test
-
RPI GSM Add-on V2.0
- Enable Raspberry Pi serial
-
Modify the configuration file as follows
-
sudo nano /boot/cmdline.txt
-
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
-
-
Edit & Compile
-
cd ~/Segnix/libraries/itead_GSM-GPRS-GPS/examples/0-AT
-
sudo nano AT.ino
-
SIMCOM900 gsm(GPIO17,GPIO18,Serial0);
-
sudo segnix test AT.ino
-
-
Run
-
sudo ./test
-
RPI GPS Add-on V2.0
- Enable Raspberry Pi serial
-
Modify the configuration file as follows
-
sudo nano /boot/cmdline.txt
-
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
-
-
Edit & Compile
-
cd ~/Segnix/libraries/itead_TinyGPS/examples/gps_simple_test
-
sudo nano gps_simple_test.ino
-
Serial0.begin(9600);
-
sudo segnix test gps_simple_test.ino
-
-
Run
-
sudo ./test
-
End!